interface JournalTableConfigurationProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.S3.CfnBucket.JournalTableConfigurationProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awss3#CfnBucket_JournalTableConfigurationProperty |
![]() | software.amazon.awscdk.services.s3.CfnBucket.JournalTableConfigurationProperty |
![]() | aws_cdk.aws_s3.CfnBucket.JournalTableConfigurationProperty |
![]() | aws-cdk-lib » aws_s3 » CfnBucket » 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 { aws_s3 as s3 } from 'aws-cdk-lib';
const journalTableConfigurationProperty: s3.CfnBucket.JournalTableConfigurationProperty = {
recordExpiration: {
expiration: 'expiration',
// the properties below are optional
days: 123,
},
// the properties below are optional
encryptionConfiguration: {
sseAlgorithm: 'sseAlgorithm',
// the properties below are optional
kmsKeyArn: 'kmsKeyArn',
},
tableArn: 'tableArn',
tableName: 'tableName',
};
Properties
Name | Type | Description |
---|---|---|
record | IResolvable | Record | The journal table record expiration settings for the journal table. |
encryption | IResolvable | Metadata | The encryption configuration for the journal table. |
table | string | The Amazon Resource Name (ARN) for the journal table. |
table | string | The name of the journal table. |
recordExpiration
Type:
IResolvable
|
Record
The journal table record expiration settings for the journal table.
encryptionConfiguration?
Type:
IResolvable
|
Metadata
(optional)
The encryption configuration 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.