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.Builderbucket(String bucket)The name of the Amazon S3 bucket used as the destination of an export file.S3Destination.Builderkey(String key)The Amazon S3 bucket key of an export file.S3Destination.BuildermetadataKey(String metadataKey)The Amazon S3 bucket key of a metadata file.-
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
S3Destination.Builder bucket(String bucket)
The name of the Amazon S3 bucket used as the destination of an export file.
- Parameters:
bucket- The name of the Amazon S3 bucket used as the destination of an export file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
key
S3Destination.Builder key(String key)
The Amazon S3 bucket key of an export file.
The key uniquely identifies the object, or export file, in the S3 bucket.
- Parameters:
key- The Amazon S3 bucket key of an export file.The key uniquely identifies the object, or export file, in the S3 bucket.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
metadataKey
S3Destination.Builder metadataKey(String metadataKey)
The Amazon S3 bucket key of a metadata file.
The key uniquely identifies the object, or metadata file, in the S3 bucket.
- Parameters:
metadataKey- The Amazon S3 bucket key of a metadata file.The key uniquely identifies the object, or metadata file, in the S3 bucket.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-