Interface ErrorReportLocation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ErrorReportLocation.Builder,ErrorReportLocation>,SdkBuilder<ErrorReportLocation.Builder,ErrorReportLocation>,SdkPojo
- Enclosing class:
- ErrorReportLocation
public static interface ErrorReportLocation.Builder extends SdkPojo, CopyableBuilder<ErrorReportLocation.Builder,ErrorReportLocation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ErrorReportLocation.Builderbucket(String bucket)The name of the Amazon S3 bucket to which errors associated with the bulk import job are sent.ErrorReportLocation.Builderprefix(String prefix)Amazon S3 uses the prefix as a folder name to organize data in the bucket.-
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
-
bucket
ErrorReportLocation.Builder bucket(String bucket)
The name of the Amazon S3 bucket to which errors associated with the bulk import job are sent.
- Parameters:
bucket- The name of the Amazon S3 bucket to which errors associated with the bulk import job are sent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
prefix
ErrorReportLocation.Builder prefix(String prefix)
Amazon S3 uses the prefix as a folder name to organize data in the bucket. Each Amazon S3 object has a key that is its unique identifier in the bucket. Each object in a bucket has exactly one key. The prefix must end with a forward slash (/). For more information, see Organizing objects using prefixes in the Amazon Simple Storage Service User Guide.
- Parameters:
prefix- Amazon S3 uses the prefix as a folder name to organize data in the bucket. Each Amazon S3 object has a key that is its unique identifier in the bucket. Each object in a bucket has exactly one key. The prefix must end with a forward slash (/). For more information, see Organizing objects using prefixes in the Amazon Simple Storage Service User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-