Interface ImportFailureListItem.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ImportFailureListItem.Builder,ImportFailureListItem>,SdkBuilder<ImportFailureListItem.Builder,ImportFailureListItem>,SdkPojo
- Enclosing class:
- ImportFailureListItem
public static interface ImportFailureListItem.Builder extends SdkPojo, CopyableBuilder<ImportFailureListItem.Builder,ImportFailureListItem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImportFailureListItem.BuildererrorMessage(String errorMessage)Provides the reason the import failed.ImportFailureListItem.BuildererrorType(String errorType)The type of import error.ImportFailureListItem.BuilderlastUpdatedTime(Instant lastUpdatedTime)When the import was last updated.ImportFailureListItem.Builderlocation(String location)The location of the failure in the S3 bucket.ImportFailureListItem.Builderstatus(String status)The status of the import.ImportFailureListItem.Builderstatus(ImportFailureStatus status)The status of the import.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
location
ImportFailureListItem.Builder location(String location)
The location of the failure in the S3 bucket.
- Parameters:
location- The location of the failure in the S3 bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
ImportFailureListItem.Builder status(String status)
The status of the import.
- Parameters:
status- The status of the import.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ImportFailureStatus,ImportFailureStatus
-
status
ImportFailureListItem.Builder status(ImportFailureStatus status)
The status of the import.
- Parameters:
status- The status of the import.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ImportFailureStatus,ImportFailureStatus
-
errorType
ImportFailureListItem.Builder errorType(String errorType)
The type of import error.
- Parameters:
errorType- The type of import error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorMessage
ImportFailureListItem.Builder errorMessage(String errorMessage)
Provides the reason the import failed.
- Parameters:
errorMessage- Provides the reason the import failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdatedTime
ImportFailureListItem.Builder lastUpdatedTime(Instant lastUpdatedTime)
When the import was last updated.
- Parameters:
lastUpdatedTime- When the import was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-