interface AnnotationTableConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3.CfnBucket.AnnotationTableConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3#CfnBucket_AnnotationTableConfigurationProperty |
Java | software.amazon.awscdk.services.s3.CfnBucket.AnnotationTableConfigurationProperty |
Python | aws_cdk.aws_s3.CfnBucket.AnnotationTableConfigurationProperty |
TypeScript | aws-cdk-lib » aws_s3 » CfnBucket » 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-lib';
const annotationTableConfigurationProperty: s3.CfnBucket.AnnotationTableConfigurationProperty = {
configurationState: 'configurationState',
// the properties below are optional
encryptionConfiguration: {
sseAlgorithm: 'sseAlgorithm',
// the properties below are optional
kmsKeyArn: 'kmsKeyArn',
},
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
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