Interface TableVersion.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TableVersion.Builder,TableVersion>,SdkBuilder<TableVersion.Builder,TableVersion>,SdkPojo
- Enclosing class:
- TableVersion
public static interface TableVersion.Builder extends SdkPojo, CopyableBuilder<TableVersion.Builder,TableVersion>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default TableVersion.Buildertable(Consumer<Table.Builder> table)The table in question.TableVersion.Buildertable(Table table)The table in question.TableVersion.BuilderversionId(String versionId)The ID value that identifies this table version.-
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, sdkFields
-
-
-
-
Method Detail
-
table
TableVersion.Builder table(Table table)
The table in question.
- Parameters:
table- The table in question.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
table
default TableVersion.Builder table(Consumer<Table.Builder> table)
The table in question.
This is a convenience method that creates an instance of theTable.Builderavoiding the need to create one manually viaTable.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totable(Table).- Parameters:
table- a consumer that will call methods onTable.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
table(Table)
-
versionId
TableVersion.Builder versionId(String versionId)
The ID value that identifies this table version. A
VersionIdis a string representation of an integer. Each version is incremented by 1.- Parameters:
versionId- The ID value that identifies this table version. AVersionIdis a string representation of an integer. Each version is incremented by 1.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-