Interface JournalTableConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<JournalTableConfiguration.Builder,
,JournalTableConfiguration> SdkBuilder<JournalTableConfiguration.Builder,
,JournalTableConfiguration> SdkPojo
- Enclosing class:
JournalTableConfiguration
@Mutable
@NotThreadSafe
public static interface JournalTableConfiguration.Builder
extends SdkPojo, CopyableBuilder<JournalTableConfiguration.Builder,JournalTableConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptionencryptionConfiguration
(Consumer<MetadataTableEncryptionConfiguration.Builder> encryptionConfiguration) The encryption configuration for the journal table.encryptionConfiguration
(MetadataTableEncryptionConfiguration encryptionConfiguration) The encryption configuration for the journal table.recordExpiration
(Consumer<RecordExpiration.Builder> recordExpiration) The journal table record expiration settings for the journal table.recordExpiration
(RecordExpiration recordExpiration) The journal table record expiration settings for the journal table.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
recordExpiration
The journal table record expiration settings for the journal table.
- Parameters:
recordExpiration
- The journal table record expiration settings for the journal table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recordExpiration
default JournalTableConfiguration.Builder recordExpiration(Consumer<RecordExpiration.Builder> recordExpiration) The journal table record expiration settings for the journal table.
This is a convenience method that creates an instance of theRecordExpiration.Builder
avoiding the need to create one manually viaRecordExpiration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed torecordExpiration(RecordExpiration)
.- Parameters:
recordExpiration
- a consumer that will call methods onRecordExpiration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
encryptionConfiguration
JournalTableConfiguration.Builder encryptionConfiguration(MetadataTableEncryptionConfiguration encryptionConfiguration) The encryption configuration for the journal table.
- Parameters:
encryptionConfiguration
- The encryption configuration for the journal table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encryptionConfiguration
default JournalTableConfiguration.Builder encryptionConfiguration(Consumer<MetadataTableEncryptionConfiguration.Builder> encryptionConfiguration) The encryption configuration for the journal table.
This is a convenience method that creates an instance of theMetadataTableEncryptionConfiguration.Builder
avoiding the need to create one manually viaMetadataTableEncryptionConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toencryptionConfiguration(MetadataTableEncryptionConfiguration)
.- Parameters:
encryptionConfiguration
- a consumer that will call methods onMetadataTableEncryptionConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-