Interface S3Destination.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<S3Destination.Builder,S3Destination>,SdkBuilder<S3Destination.Builder,S3Destination>,SdkPojo
- Enclosing class:
- S3Destination
public static interface S3Destination.Builder extends SdkPojo, CopyableBuilder<S3Destination.Builder,S3Destination>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description S3Destination.BuilderbucketName(String bucketName)The name of an Amazon S3 bucket.S3Destination.BuilderobjectKeyPrefix(String objectKeyPrefix)A string prefix for an Amazon S3 object key.-
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
-
bucketName
S3Destination.Builder bucketName(String bucketName)
The name of an Amazon S3 bucket. For more information about buckets, see Creating, configuring, and working with Amazon S3 buckets in the Amazon Simple Storage Service User Guide.
- Parameters:
bucketName- The name of an Amazon S3 bucket. For more information about buckets, see Creating, configuring, and working with Amazon S3 buckets in the Amazon Simple Storage Service User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
objectKeyPrefix
S3Destination.Builder objectKeyPrefix(String objectKeyPrefix)
A string prefix for an Amazon S3 object key. It's usually a folder name. For more information about folders in Amazon S3, see Organizing objects in the Amazon S3 console using folders in the Amazon Simple Storage Service User Guide.
- Parameters:
objectKeyPrefix- A string prefix for an Amazon S3 object key. It's usually a folder name. For more information about folders in Amazon S3, see Organizing objects in the Amazon S3 console using folders in the Amazon Simple Storage Service User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-