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
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description InventoryTableConfigurationUpdates.BuilderconfigurationState(String configurationState)The configuration state of the inventory table, indicating whether the inventory table is enabled or disabled.InventoryTableConfigurationUpdates.BuilderconfigurationState(InventoryConfigurationState configurationState)The configuration state of the inventory table, indicating whether the inventory table is enabled or disabled.default InventoryTableConfigurationUpdates.BuilderencryptionConfiguration(Consumer<MetadataTableEncryptionConfiguration.Builder> encryptionConfiguration)The encryption configuration for the inventory table.InventoryTableConfigurationUpdates.BuilderencryptionConfiguration(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 Detail
-
configurationState
InventoryTableConfigurationUpdates.Builder configurationState(String 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:
InventoryConfigurationState,InventoryConfigurationState
-
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:
InventoryConfigurationState,InventoryConfigurationState
-
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.Builderavoiding the need to create one manually viaMetadataTableEncryptionConfiguration.builder().When the
Consumercompletes,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:
encryptionConfiguration(MetadataTableEncryptionConfiguration)
-
-