interface JournalTableConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3.Mixins.CfnBucketPropsMixin.JournalTableConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3/mixins#CfnBucketPropsMixin_JournalTableConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.s3.mixins.CfnBucketPropsMixin.JournalTableConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_s3.mixins.CfnBucketPropsMixin.JournalTableConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_s3 » mixins » CfnBucketPropsMixin » JournalTableConfigurationProperty |
The journal table configuration for an S3 Metadata configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as s3_mixins } from '@aws-cdk/mixins-preview/aws-s3';
const journalTableConfigurationProperty: s3_mixins.CfnBucketPropsMixin.JournalTableConfigurationProperty = {
encryptionConfiguration: {
kmsKeyArn: 'kmsKeyArn',
sseAlgorithm: 'sseAlgorithm',
},
recordExpiration: {
days: 123,
expiration: 'expiration',
},
tableArn: 'tableArn',
tableName: 'tableName',
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | IResolvable | Metadata | The encryption configuration for the journal table. |
| record | IResolvable | Record | The journal table record expiration settings for the journal table. |
| table | string | The Amazon Resource Name (ARN) for the journal table. |
| table | string | The name of the journal table. |
encryptionConfiguration?
Type:
IResolvable | Metadata
(optional)
The encryption configuration for the journal table.
recordExpiration?
Type:
IResolvable | Record
(optional)
The journal table record expiration settings for the journal table.
tableArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) for the journal table.
tableName?
Type:
string
(optional)
The name of the journal table.

.NET
Go
Java
Python
TypeScript