Interface AwsDynamoDbTableReplicaGlobalSecondaryIndex.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AwsDynamoDbTableReplicaGlobalSecondaryIndex.Builder,AwsDynamoDbTableReplicaGlobalSecondaryIndex>,SdkBuilder<AwsDynamoDbTableReplicaGlobalSecondaryIndex.Builder,AwsDynamoDbTableReplicaGlobalSecondaryIndex>,SdkPojo
- Enclosing class:
- AwsDynamoDbTableReplicaGlobalSecondaryIndex
public static interface AwsDynamoDbTableReplicaGlobalSecondaryIndex.Builder extends SdkPojo, CopyableBuilder<AwsDynamoDbTableReplicaGlobalSecondaryIndex.Builder,AwsDynamoDbTableReplicaGlobalSecondaryIndex>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description AwsDynamoDbTableReplicaGlobalSecondaryIndex.BuilderindexName(String indexName)The name of the index.default AwsDynamoDbTableReplicaGlobalSecondaryIndex.BuilderprovisionedThroughputOverride(Consumer<AwsDynamoDbTableProvisionedThroughputOverride.Builder> provisionedThroughputOverride)Replica-specific configuration for the provisioned throughput for the index.AwsDynamoDbTableReplicaGlobalSecondaryIndex.BuilderprovisionedThroughputOverride(AwsDynamoDbTableProvisionedThroughputOverride provisionedThroughputOverride)Replica-specific configuration for the provisioned throughput for the 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
-
indexName
AwsDynamoDbTableReplicaGlobalSecondaryIndex.Builder indexName(String indexName)
The name of the index.
- Parameters:
indexName- The name of the index.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
provisionedThroughputOverride
AwsDynamoDbTableReplicaGlobalSecondaryIndex.Builder provisionedThroughputOverride(AwsDynamoDbTableProvisionedThroughputOverride provisionedThroughputOverride)
Replica-specific configuration for the provisioned throughput for the index.
- Parameters:
provisionedThroughputOverride- Replica-specific configuration for the provisioned throughput for the index.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
provisionedThroughputOverride
default AwsDynamoDbTableReplicaGlobalSecondaryIndex.Builder provisionedThroughputOverride(Consumer<AwsDynamoDbTableProvisionedThroughputOverride.Builder> provisionedThroughputOverride)
Replica-specific configuration for the provisioned throughput for the index.
This is a convenience method that creates an instance of theAwsDynamoDbTableProvisionedThroughputOverride.Builderavoiding the need to create one manually viaAwsDynamoDbTableProvisionedThroughputOverride.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toprovisionedThroughputOverride(AwsDynamoDbTableProvisionedThroughputOverride).- Parameters:
provisionedThroughputOverride- a consumer that will call methods onAwsDynamoDbTableProvisionedThroughputOverride.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
provisionedThroughputOverride(AwsDynamoDbTableProvisionedThroughputOverride)
-
-