Interface CfnBucket.AnnotationTableConfigurationProperty

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

@Stability(Stable) public static interface CfnBucket.AnnotationTableConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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.s3.*;
 AnnotationTableConfigurationProperty annotationTableConfigurationProperty = AnnotationTableConfigurationProperty.builder()
         .configurationState("configurationState")
         // the properties below are optional
         .encryptionConfiguration(MetadataTableEncryptionConfigurationProperty.builder()
                 .sseAlgorithm("sseAlgorithm")
                 // the properties below are optional
                 .kmsKeyArn("kmsKeyArn")
                 .build())
         .role("role")
         .tableArn("tableArn")
         .tableName("tableName")
         .build();
 

See Also: