public static interface TableAutoScalingDescription.Builder extends SdkPojo, CopyableBuilder<TableAutoScalingDescription.Builder,TableAutoScalingDescription>
Modifier and Type | Method and Description |
---|---|
TableAutoScalingDescription.Builder |
replicas(Collection<ReplicaAutoScalingDescription> replicas)
Represents replicas of the global table.
|
TableAutoScalingDescription.Builder |
replicas(Consumer<ReplicaAutoScalingDescription.Builder>... replicas)
Represents replicas of the global table.
|
TableAutoScalingDescription.Builder |
replicas(ReplicaAutoScalingDescription... replicas)
Represents replicas of the global table.
|
TableAutoScalingDescription.Builder |
tableName(String tableName)
The name of the table.
|
TableAutoScalingDescription.Builder |
tableStatus(String tableStatus)
The current state of the table:
|
TableAutoScalingDescription.Builder |
tableStatus(TableStatus tableStatus)
The current state of the table:
|
equalsBySdkFields, sdkFields
copy
applyMutation, build
TableAutoScalingDescription.Builder tableName(String tableName)
The name of the table.
tableName
- The name of the table.TableAutoScalingDescription.Builder tableStatus(String tableStatus)
The current state of the table:
CREATING
- The table is being created.
UPDATING
- The table is being updated.
DELETING
- The table is being deleted.
ACTIVE
- The table is ready for use.
tableStatus
- The current state of the table:
CREATING
- The table is being created.
UPDATING
- The table is being updated.
DELETING
- The table is being deleted.
ACTIVE
- The table is ready for use.
TableStatus
,
TableStatus
TableAutoScalingDescription.Builder tableStatus(TableStatus tableStatus)
The current state of the table:
CREATING
- The table is being created.
UPDATING
- The table is being updated.
DELETING
- The table is being deleted.
ACTIVE
- The table is ready for use.
tableStatus
- The current state of the table:
CREATING
- The table is being created.
UPDATING
- The table is being updated.
DELETING
- The table is being deleted.
ACTIVE
- The table is ready for use.
TableStatus
,
TableStatus
TableAutoScalingDescription.Builder replicas(Collection<ReplicaAutoScalingDescription> replicas)
Represents replicas of the global table.
replicas
- Represents replicas of the global table.TableAutoScalingDescription.Builder replicas(ReplicaAutoScalingDescription... replicas)
Represents replicas of the global table.
replicas
- Represents replicas of the global table.TableAutoScalingDescription.Builder replicas(Consumer<ReplicaAutoScalingDescription.Builder>... replicas)
Represents replicas of the global table.
This is a convenience that creates an instance of theList.Builder
avoiding the need to create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called
immediately and its result is passed to #replicas(List)
.replicas
- a consumer that will call methods on List.Builder
#replicas(List)
Copyright © 2020. All rights reserved.