Interface CfnBucketPropsMixin.AnnotationTableConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBucketPropsMixin.AnnotationTableConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnBucketPropsMixin
@Stability(Stable)
public static interface CfnBucketPropsMixin.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.cfnpropertymixins.services.s3.*;
AnnotationTableConfigurationProperty annotationTableConfigurationProperty = AnnotationTableConfigurationProperty.builder()
.configurationState("configurationState")
.encryptionConfiguration(MetadataTableEncryptionConfigurationProperty.builder()
.kmsKeyArn("kmsKeyArn")
.sseAlgorithm("sseAlgorithm")
.build())
.role("role")
.tableArn("tableArn")
.tableName("tableName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBucketPropsMixin.AnnotationTableConfigurationPropertystatic final classAn implementation forCfnBucketPropsMixin.AnnotationTableConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringSpecifies whether annotation table configuration is enabled or disabled.default ObjectThe encryption settings for an S3 Metadata journal table or inventory table configuration.default StringgetRole()The ARN of the IAM role that grants Amazon S3 Metadata permission to read annotations from your bucket.default StringThe ARN of the annotation table.default StringThe name of the annotation table.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfigurationState
Specifies whether annotation table configuration is enabled or disabled.- See Also:
-
getEncryptionConfiguration
The encryption settings for an S3 Metadata journal table or inventory table configuration.Returns union: either
IResolvableorCfnBucketPropsMixin.MetadataTableEncryptionConfigurationProperty- See Also:
-
getRole
The ARN of the IAM role that grants Amazon S3 Metadata permission to read annotations from your bucket.- See Also:
-
getTableArn
The ARN of the annotation table.- See Also:
-
getTableName
The name of the annotation table.- See Also:
-
builder
@Stability(Stable) static CfnBucketPropsMixin.AnnotationTableConfigurationProperty.Builder builder()
-