Interface CfnBucket.JournalTableConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBucket.JournalTableConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnBucket
@Stability(Stable)
public static interface CfnBucket.JournalTableConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.s3.*; JournalTableConfigurationProperty journalTableConfigurationProperty = JournalTableConfigurationProperty.builder() .recordExpiration(RecordExpirationProperty.builder() .expiration("expiration") // the properties below are optional .days(123) .build()) // the properties below are optional .encryptionConfiguration(MetadataTableEncryptionConfigurationProperty.builder() .sseAlgorithm("sseAlgorithm") // the properties below are optional .kmsKeyArn("kmsKeyArn") .build()) .tableArn("tableArn") .tableName("tableName") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBucket.JournalTableConfigurationProperty
static final class
An implementation forCfnBucket.JournalTableConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRecordExpiration
The journal table record expiration settings for the journal table.- See Also:
-
getEncryptionConfiguration
The encryption configuration for the journal table.- See Also:
-
getTableArn
The Amazon Resource Name (ARN) for the journal table.- See Also:
-
getTableName
The name of the journal table.- See Also:
-
builder
-