interface AnnotationTableConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3.CfnBucketPropsMixin.AnnotationTableConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3#CfnBucketPropsMixin_AnnotationTableConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3.CfnBucketPropsMixin.AnnotationTableConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_s3.CfnBucketPropsMixin.AnnotationTableConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3 » CfnBucketPropsMixin » AnnotationTableConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3 as s3 } from '@aws-cdk/cfn-property-mixins';
const annotationTableConfigurationProperty: s3.CfnBucketPropsMixin.AnnotationTableConfigurationProperty = {
configurationState: 'configurationState',
encryptionConfiguration: {
kmsKeyArn: 'kmsKeyArn',
sseAlgorithm: 'sseAlgorithm',
},
role: 'role',
tableArn: 'tableArn',
tableName: 'tableName',
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration | string | Specifies whether annotation table configuration is enabled or disabled. |
| encryption | IResolvable | Metadata | The encryption settings for an S3 Metadata journal table or inventory table configuration. |
| role? | string | The ARN of the IAM role that grants Amazon S3 Metadata permission to read annotations from your bucket. |
| table | string | The ARN of the annotation table. |
| table | string | The name of the annotation table. |
configurationState?
Type:
string
(optional)
Specifies whether annotation table configuration is enabled or disabled.
encryptionConfiguration?
Type:
IResolvable | Metadata
(optional)
The encryption settings for an S3 Metadata journal table or inventory table configuration.
role?
Type:
string
(optional)
The ARN of the IAM role that grants Amazon S3 Metadata permission to read annotations from your bucket.
tableArn?
Type:
string
(optional)
The ARN of the annotation table.
tableName?
Type:
string
(optional)
The name of the annotation table.

.NET
Go
Java
Python
TypeScript