Interface FailureInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FailureInfo.Builder,FailureInfo>,SdkBuilder<FailureInfo.Builder,FailureInfo>,SdkPojo
- Enclosing class:
- FailureInfo
public static interface FailureInfo.Builder extends SdkPojo, CopyableBuilder<FailureInfo.Builder,FailureInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FailureInfo.BuildererrorMessage(String errorMessage)A message about why the job failed.FailureInfo.BuilderfailedRecordsS3Url(String failedRecordsS3Url)An Amazon S3 pre-signed URL that contains all the failed records and related information.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
failedRecordsS3Url
FailureInfo.Builder failedRecordsS3Url(String failedRecordsS3Url)
An Amazon S3 pre-signed URL that contains all the failed records and related information.
- Parameters:
failedRecordsS3Url- An Amazon S3 pre-signed URL that contains all the failed records and related information.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorMessage
FailureInfo.Builder errorMessage(String errorMessage)
A message about why the job failed.
- Parameters:
errorMessage- A message about why the job failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-