Interface Table.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Table.Builder,Table>,SdkBuilder<Table.Builder,Table>,SdkPojo
- Enclosing class:
- Table
public static interface Table.Builder extends SdkPojo, CopyableBuilder<Table.Builder,Table>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Table.Builderdescription(String description)The description for the table.Table.BuildertableName(String tableName)The name of the table.Table.BuildertableProperties(Collection<TablePropertyDescription> tableProperties)The properties for the table.Table.BuildertableProperties(Consumer<TablePropertyDescription.Builder>... tableProperties)The properties for the table.Table.BuildertableProperties(TablePropertyDescription... tableProperties)The properties for the 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
-
description
Table.Builder description(String description)
The description for the table.
- Parameters:
description- The description for the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableName
Table.Builder tableName(String tableName)
The name of the table.
- Parameters:
tableName- The name of the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableProperties
Table.Builder tableProperties(Collection<TablePropertyDescription> tableProperties)
The properties for the table.
- Parameters:
tableProperties- The properties for the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableProperties
Table.Builder tableProperties(TablePropertyDescription... tableProperties)
The properties for the table.
- Parameters:
tableProperties- The properties for the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableProperties
Table.Builder tableProperties(Consumer<TablePropertyDescription.Builder>... tableProperties)
The properties for the table.
This is a convenience method that creates an instance of theTablePropertyDescription.Builderavoiding the need to create one manually viaTablePropertyDescription.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tableProperties(List.) - Parameters:
tableProperties- a consumer that will call methods onTablePropertyDescription.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tableProperties(java.util.Collection)
-
-