Interface InventoryTableConfigurationUpdates.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<InventoryTableConfigurationUpdates.Builder,
,InventoryTableConfigurationUpdates> SdkBuilder<InventoryTableConfigurationUpdates.Builder,
,InventoryTableConfigurationUpdates> SdkPojo
- Enclosing class:
InventoryTableConfigurationUpdates
@Mutable
@NotThreadSafe
public static interface InventoryTableConfigurationUpdates.Builder
extends SdkPojo, CopyableBuilder<InventoryTableConfigurationUpdates.Builder,InventoryTableConfigurationUpdates>
-
Method Summary
Modifier and TypeMethodDescriptionconfigurationState
(String configurationState) The configuration state of the inventory table, indicating whether the inventory table is enabled or disabled.configurationState
(InventoryConfigurationState configurationState) The configuration state of the inventory table, indicating whether the inventory table is enabled or disabled.encryptionConfiguration
(Consumer<MetadataTableEncryptionConfiguration.Builder> encryptionConfiguration) The encryption configuration for the inventory table.encryptionConfiguration
(MetadataTableEncryptionConfiguration encryptionConfiguration) The encryption configuration for the inventory 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
-
configurationState
The configuration state of the inventory table, indicating whether the inventory table is enabled or disabled.
- Parameters:
configurationState
- The configuration state of the inventory table, indicating whether the inventory table is enabled or disabled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
configurationState
InventoryTableConfigurationUpdates.Builder configurationState(InventoryConfigurationState configurationState) The configuration state of the inventory table, indicating whether the inventory table is enabled or disabled.
- Parameters:
configurationState
- The configuration state of the inventory table, indicating whether the inventory table is enabled or disabled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
encryptionConfiguration
InventoryTableConfigurationUpdates.Builder encryptionConfiguration(MetadataTableEncryptionConfiguration encryptionConfiguration) The encryption configuration for the inventory table.
- Parameters:
encryptionConfiguration
- The encryption configuration for the inventory table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encryptionConfiguration
default InventoryTableConfigurationUpdates.Builder encryptionConfiguration(Consumer<MetadataTableEncryptionConfiguration.Builder> encryptionConfiguration) The encryption configuration for the inventory 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:
-