Interface InventoryTableConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<InventoryTableConfiguration.Builder,InventoryTableConfiguration>,SdkBuilder<InventoryTableConfiguration.Builder,InventoryTableConfiguration>,SdkPojo
- Enclosing class:
- InventoryTableConfiguration
@Mutable @NotThreadSafe public static interface InventoryTableConfiguration.Builder extends SdkPojo, CopyableBuilder<InventoryTableConfiguration.Builder,InventoryTableConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description InventoryTableConfiguration.BuilderconfigurationState(String configurationState)The configuration state of the inventory table, indicating whether the inventory table is enabled or disabled.InventoryTableConfiguration.BuilderconfigurationState(InventoryConfigurationState configurationState)The configuration state of the inventory table, indicating whether the inventory table is enabled or disabled.default InventoryTableConfiguration.BuilderencryptionConfiguration(Consumer<MetadataTableEncryptionConfiguration.Builder> encryptionConfiguration)The encryption configuration for the inventory table.InventoryTableConfiguration.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
InventoryTableConfiguration.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
InventoryTableConfiguration.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
InventoryTableConfiguration.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 InventoryTableConfiguration.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)
-
-