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 the bucket.S3Destination.BuilderkeyPrefix(String keyPrefix)The path prefix to use in the path to the location in the bucket.S3Destination.BuilderkmsKeyArn(String kmsKeyArn)The Amazon Resource Name (ARN) of the customer managed KMS key to use for encryption of the results.-
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 the bucket. This must be the name of an existing general purpose bucket.
- Parameters:
bucketName- The name of the bucket. This must be the name of an existing general purpose bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
keyPrefix
S3Destination.Builder keyPrefix(String keyPrefix)
The path prefix to use in the path to the location in the bucket. This prefix specifies where to store classification results in the bucket.
- Parameters:
keyPrefix- The path prefix to use in the path to the location in the bucket. This prefix specifies where to store classification results in the bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
kmsKeyArn
S3Destination.Builder kmsKeyArn(String kmsKeyArn)
The Amazon Resource Name (ARN) of the customer managed KMS key to use for encryption of the results. This must be the ARN of an existing, symmetric encryption KMS key that's enabled in the same Amazon Web Services Region as the bucket.
- Parameters:
kmsKeyArn- The Amazon Resource Name (ARN) of the customer managed KMS key to use for encryption of the results. This must be the ARN of an existing, symmetric encryption KMS key that's enabled in the same Amazon Web Services Region as the bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-