Interface ListGlobalTablesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListGlobalTablesResponse.Builder,ListGlobalTablesResponse>,DynamoDbResponse.Builder,SdkBuilder<ListGlobalTablesResponse.Builder,ListGlobalTablesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListGlobalTablesResponse
@Mutable @NotThreadSafe public static interface ListGlobalTablesResponse.Builder extends DynamoDbResponse.Builder, SdkPojo, CopyableBuilder<ListGlobalTablesResponse.Builder,ListGlobalTablesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListGlobalTablesResponse.BuilderglobalTables(Collection<GlobalTable> globalTables)List of global table names.ListGlobalTablesResponse.BuilderglobalTables(Consumer<GlobalTable.Builder>... globalTables)List of global table names.ListGlobalTablesResponse.BuilderglobalTables(GlobalTable... globalTables)List of global table names.ListGlobalTablesResponse.BuilderlastEvaluatedGlobalTableName(String lastEvaluatedGlobalTableName)Last evaluated global table name.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.dynamodb.model.DynamoDbResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
globalTables
ListGlobalTablesResponse.Builder globalTables(Collection<GlobalTable> globalTables)
List of global table names.
- Parameters:
globalTables- List of global table names.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
globalTables
ListGlobalTablesResponse.Builder globalTables(GlobalTable... globalTables)
List of global table names.
- Parameters:
globalTables- List of global table names.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
globalTables
ListGlobalTablesResponse.Builder globalTables(Consumer<GlobalTable.Builder>... globalTables)
List of global table names.
This is a convenience method that creates an instance of theGlobalTable.Builderavoiding the need to create one manually viaGlobalTable.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#globalTables(List.) - Parameters:
globalTables- a consumer that will call methods onGlobalTable.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#globalTables(java.util.Collection)
-
lastEvaluatedGlobalTableName
ListGlobalTablesResponse.Builder lastEvaluatedGlobalTableName(String lastEvaluatedGlobalTableName)
Last evaluated global table name.
- Parameters:
lastEvaluatedGlobalTableName- Last evaluated global table name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-