Interface PartitionIndex.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PartitionIndex.Builder,PartitionIndex>,SdkBuilder<PartitionIndex.Builder,PartitionIndex>,SdkPojo
- Enclosing class:
- PartitionIndex
public static interface PartitionIndex.Builder extends SdkPojo, CopyableBuilder<PartitionIndex.Builder,PartitionIndex>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PartitionIndex.BuilderindexName(String indexName)The name of the partition index.PartitionIndex.Builderkeys(String... keys)The keys for the partition index.PartitionIndex.Builderkeys(Collection<String> keys)The keys for the partition index.-
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
-
keys
PartitionIndex.Builder keys(Collection<String> keys)
The keys for the partition index.
- Parameters:
keys- The keys for the partition index.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
keys
PartitionIndex.Builder keys(String... keys)
The keys for the partition index.
- Parameters:
keys- The keys for the partition index.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
indexName
PartitionIndex.Builder indexName(String indexName)
The name of the partition index.
- Parameters:
indexName- The name of the partition index.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-