Uses of Class
software.amazon.awssdk.enhanced.dynamodb.model.CreateTableEnhancedRequest.Builder
-
-
Uses of CreateTableEnhancedRequest.Builder in software.amazon.awssdk.enhanced.dynamodb
Method parameters in software.amazon.awssdk.enhanced.dynamodb with type arguments of type CreateTableEnhancedRequest.Builder Modifier and Type Method Description default CompletableFuture<Void>
DynamoDbAsyncTable. createTable(Consumer<CreateTableEnhancedRequest.Builder> requestConsumer)
Creates a new table in DynamoDb with the name and schema already defined for this DynamoDbTable together with additional parameters specified in the supplied request object,CreateTableEnhancedRequest
.default void
DynamoDbTable. createTable(Consumer<CreateTableEnhancedRequest.Builder> requestConsumer)
Creates a new table in DynamoDb with the name and schema already defined for this DynamoDbTable together with additional parameters specified in the supplied request object,CreateTableEnhancedRequest
. -
Uses of CreateTableEnhancedRequest.Builder in software.amazon.awssdk.enhanced.dynamodb.internal.client
Method parameters in software.amazon.awssdk.enhanced.dynamodb.internal.client with type arguments of type CreateTableEnhancedRequest.Builder Modifier and Type Method Description CompletableFuture<Void>
DefaultDynamoDbAsyncTable. createTable(Consumer<CreateTableEnhancedRequest.Builder> requestConsumer)
void
DefaultDynamoDbTable. createTable(Consumer<CreateTableEnhancedRequest.Builder> requestConsumer)
-
Uses of CreateTableEnhancedRequest.Builder in software.amazon.awssdk.enhanced.dynamodb.model
Methods in software.amazon.awssdk.enhanced.dynamodb.model that return CreateTableEnhancedRequest.Builder Modifier and Type Method Description static CreateTableEnhancedRequest.Builder
CreateTableEnhancedRequest. builder()
Creates a newly initialized builder for a request object.CreateTableEnhancedRequest.Builder
CreateTableEnhancedRequest.Builder. globalSecondaryIndices(Collection<EnhancedGlobalSecondaryIndex> globalSecondaryIndices)
Defines a global secondary index for this table.CreateTableEnhancedRequest.Builder
CreateTableEnhancedRequest.Builder. globalSecondaryIndices(Consumer<EnhancedGlobalSecondaryIndex.Builder>... globalSecondaryIndices)
This is a convenience method forglobalSecondaryIndices(Collection)
that creates instances of theEnhancedGlobalSecondaryIndex.Builder
for you, avoiding the need to create them manually viaEnhancedGlobalSecondaryIndex.builder()
.CreateTableEnhancedRequest.Builder
CreateTableEnhancedRequest.Builder. globalSecondaryIndices(EnhancedGlobalSecondaryIndex... globalSecondaryIndices)
Defines a global secondary index for this table.CreateTableEnhancedRequest.Builder
CreateTableEnhancedRequest.Builder. localSecondaryIndices(Collection<EnhancedLocalSecondaryIndex> localSecondaryIndices)
Defines a local secondary index for this table.CreateTableEnhancedRequest.Builder
CreateTableEnhancedRequest.Builder. localSecondaryIndices(Consumer<EnhancedLocalSecondaryIndex.Builder>... localSecondaryIndices)
This is a convenience method forlocalSecondaryIndices(Collection)
that creates instances of theEnhancedLocalSecondaryIndex.Builder
for you, avoiding the need to create them manually viaEnhancedLocalSecondaryIndex.builder()
.CreateTableEnhancedRequest.Builder
CreateTableEnhancedRequest.Builder. localSecondaryIndices(EnhancedLocalSecondaryIndex... localSecondaryIndices)
Defines a local secondary index for this table.CreateTableEnhancedRequest.Builder
CreateTableEnhancedRequest.Builder. provisionedThroughput(Consumer<ProvisionedThroughput.Builder> provisionedThroughput)
This is a convenience method forprovisionedThroughput(ProvisionedThroughput)
that creates an instance of theProvisionedThroughput.Builder
for you, avoiding the need to create one manually viaProvisionedThroughput.builder()
.CreateTableEnhancedRequest.Builder
CreateTableEnhancedRequest.Builder. provisionedThroughput(ProvisionedThroughput provisionedThroughput)
Sets the provisioned throughput for this table.CreateTableEnhancedRequest.Builder
CreateTableEnhancedRequest.Builder. streamSpecification(Consumer<StreamSpecification.Builder> streamSpecification)
This is a convenience method forstreamSpecification(StreamSpecification)
that creates an instance of theStreamSpecification.Builder
for you, avoiding the need to create one manually viaStreamSpecification.builder()
.CreateTableEnhancedRequest.Builder
CreateTableEnhancedRequest.Builder. streamSpecification(StreamSpecification streamSpecification)
Sets theStreamSpecification
for this table.CreateTableEnhancedRequest.Builder
CreateTableEnhancedRequest. toBuilder()
Returns a builder initialized with all existing values on the request object.
-