Interface CfnTable.S3ConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTable.S3ConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnTable

@Stability(Stable) public static interface CfnTable.S3ConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration that specifies an S3 location.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.timestream.*;
 S3ConfigurationProperty s3ConfigurationProperty = S3ConfigurationProperty.builder()
         .bucketName("bucketName")
         .encryptionOption("encryptionOption")
         // the properties below are optional
         .kmsKeyId("kmsKeyId")
         .objectKeyPrefix("objectKeyPrefix")
         .build();
 
  • Method Details

    • getBucketName

      @Stability(Stable) @NotNull String getBucketName()
      The bucket name of the customer S3 bucket.
    • getEncryptionOption

      @Stability(Stable) @NotNull String getEncryptionOption()
      The encryption option for the customer S3 location.

      Options are S3 server-side encryption with an S3 managed key or AWS managed key.

    • getKmsKeyId

      @Stability(Stable) @Nullable default String getKmsKeyId()
      The AWS KMS key ID for the customer S3 location when encrypting with an AWS managed key.
    • getObjectKeyPrefix

      @Stability(Stable) @Nullable default String getObjectKeyPrefix()
      The object key preview for the customer S3 location.
    • builder

      @Stability(Stable) static CfnTable.S3ConfigurationProperty.Builder builder()
      Returns:
      a CfnTable.S3ConfigurationProperty.Builder of CfnTable.S3ConfigurationProperty