Uses of Class
com.amazonaws.services.dynamodbv2.model.CreateTableRequest
-
-
Uses of CreateTableRequest in com.amazonaws.services.dynamodbv2
Methods in com.amazonaws.services.dynamodbv2 with parameters of type CreateTableRequest Modifier and Type Method Description CreateTableResult
AbstractAmazonDynamoDB. createTable(CreateTableRequest request)
CreateTableResult
AmazonDynamoDB. createTable(CreateTableRequest createTableRequest)
The CreateTable operation adds a new table to your account.CreateTableResult
AmazonDynamoDBClient. createTable(CreateTableRequest createTableRequest)
The CreateTable operation adds a new table to your account.Future<CreateTableResult>
AbstractAmazonDynamoDBAsync. createTableAsync(CreateTableRequest request)
Future<CreateTableResult>
AbstractAmazonDynamoDBAsync. createTableAsync(CreateTableRequest request, AsyncHandler<CreateTableRequest,CreateTableResult> asyncHandler)
Future<CreateTableResult>
AmazonDynamoDBAsync. createTableAsync(CreateTableRequest createTableRequest)
The CreateTable operation adds a new table to your account.Future<CreateTableResult>
AmazonDynamoDBAsync. createTableAsync(CreateTableRequest createTableRequest, AsyncHandler<CreateTableRequest,CreateTableResult> asyncHandler)
The CreateTable operation adds a new table to your account.Future<CreateTableResult>
AmazonDynamoDBAsyncClient. createTableAsync(CreateTableRequest request)
Future<CreateTableResult>
AmazonDynamoDBAsyncClient. createTableAsync(CreateTableRequest request, AsyncHandler<CreateTableRequest,CreateTableResult> asyncHandler)
Method parameters in com.amazonaws.services.dynamodbv2 with type arguments of type CreateTableRequest Modifier and Type Method Description Future<CreateTableResult>
AbstractAmazonDynamoDBAsync. createTableAsync(CreateTableRequest request, AsyncHandler<CreateTableRequest,CreateTableResult> asyncHandler)
Future<CreateTableResult>
AbstractAmazonDynamoDBAsync. createTableAsync(List<AttributeDefinition> attributeDefinitions, String tableName, List<KeySchemaElement> keySchema, ProvisionedThroughput provisionedThroughput, AsyncHandler<CreateTableRequest,CreateTableResult> asyncHandler)
Simplified method form for invoking the CreateTable operation with an AsyncHandler.Future<CreateTableResult>
AmazonDynamoDBAsync. createTableAsync(CreateTableRequest createTableRequest, AsyncHandler<CreateTableRequest,CreateTableResult> asyncHandler)
The CreateTable operation adds a new table to your account.Future<CreateTableResult>
AmazonDynamoDBAsync. createTableAsync(List<AttributeDefinition> attributeDefinitions, String tableName, List<KeySchemaElement> keySchema, ProvisionedThroughput provisionedThroughput, AsyncHandler<CreateTableRequest,CreateTableResult> asyncHandler)
Simplified method form for invoking the CreateTable operation with an AsyncHandler.Future<CreateTableResult>
AmazonDynamoDBAsyncClient. createTableAsync(CreateTableRequest request, AsyncHandler<CreateTableRequest,CreateTableResult> asyncHandler)
Future<CreateTableResult>
AmazonDynamoDBAsyncClient. createTableAsync(List<AttributeDefinition> attributeDefinitions, String tableName, List<KeySchemaElement> keySchema, ProvisionedThroughput provisionedThroughput, AsyncHandler<CreateTableRequest,CreateTableResult> asyncHandler)
Simplified method form for invoking the CreateTable operation with an AsyncHandler. -
Uses of CreateTableRequest in com.amazonaws.services.dynamodbv2.datamodeling
Methods in com.amazonaws.services.dynamodbv2.datamodeling that return CreateTableRequest Modifier and Type Method Description CreateTableRequest
AbstractDynamoDBMapper. generateCreateTableRequest(Class<?> clazz)
CreateTableRequest
DynamoDBMapper. generateCreateTableRequest(Class<?> clazz)
CreateTableRequest
IDynamoDBMapper. generateCreateTableRequest(Class<?> clazz)
Parse the given POJO class and return the CreateTableRequest for the DynamoDB table it represents. -
Uses of CreateTableRequest in com.amazonaws.services.dynamodbv2.document
Methods in com.amazonaws.services.dynamodbv2.document with parameters of type CreateTableRequest Modifier and Type Method Description Table
DynamoDB. createTable(CreateTableRequest req)
Creates the specified table in DynamoDB. -
Uses of CreateTableRequest in com.amazonaws.services.dynamodbv2.model
Methods in com.amazonaws.services.dynamodbv2.model that return CreateTableRequest Modifier and Type Method Description CreateTableRequest
CreateTableRequest. clone()
CreateTableRequest
CreateTableRequest. withAttributeDefinitions(AttributeDefinition... attributeDefinitions)
An array of attributes that describe the key schema for the table and indexes.CreateTableRequest
CreateTableRequest. withAttributeDefinitions(Collection<AttributeDefinition> attributeDefinitions)
An array of attributes that describe the key schema for the table and indexes.CreateTableRequest
CreateTableRequest. withGlobalSecondaryIndexes(GlobalSecondaryIndex... globalSecondaryIndexes)
One or more global secondary indexes (the maximum is five) to be created on the table.CreateTableRequest
CreateTableRequest. withGlobalSecondaryIndexes(Collection<GlobalSecondaryIndex> globalSecondaryIndexes)
One or more global secondary indexes (the maximum is five) to be created on the table.CreateTableRequest
CreateTableRequest. withKeySchema(KeySchemaElement... keySchema)
Specifies the attributes that make up the primary key for a table or an index.CreateTableRequest
CreateTableRequest. withKeySchema(Collection<KeySchemaElement> keySchema)
Specifies the attributes that make up the primary key for a table or an index.CreateTableRequest
CreateTableRequest. withLocalSecondaryIndexes(LocalSecondaryIndex... localSecondaryIndexes)
One or more local secondary indexes (the maximum is five) to be created on the table.CreateTableRequest
CreateTableRequest. withLocalSecondaryIndexes(Collection<LocalSecondaryIndex> localSecondaryIndexes)
One or more local secondary indexes (the maximum is five) to be created on the table.CreateTableRequest
CreateTableRequest. withProvisionedThroughput(ProvisionedThroughput provisionedThroughput)
CreateTableRequest
CreateTableRequest. withStreamSpecification(StreamSpecification streamSpecification)
The settings for DynamoDB Streams on the table.CreateTableRequest
CreateTableRequest. withTableName(String tableName)
The name of the table to create. -
Uses of CreateTableRequest in com.amazonaws.services.dynamodbv2.util
Methods in com.amazonaws.services.dynamodbv2.util with parameters of type CreateTableRequest Modifier and Type Method Description static boolean
TableUtils. createTableIfNotExists(AmazonDynamoDB dynamo, CreateTableRequest createTableRequest)
Creates the table and ignores any errors if it already exists.
-