Uses of Class
com.amazonaws.services.dynamodbv2.model.CreateTableRequest
Packages that use CreateTableRequest
Package
Description
-
Uses of CreateTableRequest in com.amazonaws.services.dynamodbv2
Methods in com.amazonaws.services.dynamodbv2 with parameters of type CreateTableRequestModifier and TypeMethodDescriptionAbstractAmazonDynamoDB.createTable
(CreateTableRequest request) AmazonDynamoDB.createTable
(CreateTableRequest createTableRequest) The CreateTable operation adds a new table to your account.AmazonDynamoDBClient.createTable
(CreateTableRequest createTableRequest) The CreateTable operation adds a new table to your account.AbstractAmazonDynamoDBAsync.createTableAsync
(CreateTableRequest request) AbstractAmazonDynamoDBAsync.createTableAsync
(CreateTableRequest request, AsyncHandler<CreateTableRequest, CreateTableResult> asyncHandler) AmazonDynamoDBAsync.createTableAsync
(CreateTableRequest createTableRequest) The CreateTable operation adds a new table to your account.AmazonDynamoDBAsync.createTableAsync
(CreateTableRequest createTableRequest, AsyncHandler<CreateTableRequest, CreateTableResult> asyncHandler) The CreateTable operation adds a new table to your account.AmazonDynamoDBAsyncClient.createTableAsync
(CreateTableRequest request) AmazonDynamoDBAsyncClient.createTableAsync
(CreateTableRequest request, AsyncHandler<CreateTableRequest, CreateTableResult> asyncHandler) Method parameters in com.amazonaws.services.dynamodbv2 with type arguments of type CreateTableRequestModifier and TypeMethodDescriptionAbstractAmazonDynamoDBAsync.createTableAsync
(CreateTableRequest request, AsyncHandler<CreateTableRequest, CreateTableResult> asyncHandler) 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.AmazonDynamoDBAsync.createTableAsync
(CreateTableRequest createTableRequest, AsyncHandler<CreateTableRequest, CreateTableResult> asyncHandler) The CreateTable operation adds a new table to your account.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.AmazonDynamoDBAsyncClient.createTableAsync
(CreateTableRequest request, AsyncHandler<CreateTableRequest, CreateTableResult> asyncHandler) 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 CreateTableRequestModifier and TypeMethodDescriptionAbstractDynamoDBMapper.generateCreateTableRequest
(Class<?> clazz) DynamoDBMapper.generateCreateTableRequest
(Class<?> clazz) 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 CreateTableRequestModifier and TypeMethodDescriptionDynamoDB.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 CreateTableRequestModifier and TypeMethodDescriptionCreateTableRequest.clone()
CreateTableRequest.withAttributeDefinitions
(AttributeDefinition... attributeDefinitions) An array of attributes that describe the key schema for the table and indexes.CreateTableRequest.withAttributeDefinitions
(Collection<AttributeDefinition> attributeDefinitions) An array of attributes that describe the key schema for the table and indexes.CreateTableRequest.withGlobalSecondaryIndexes
(GlobalSecondaryIndex... globalSecondaryIndexes) One or more global secondary indexes (the maximum is five) to be created on the table.CreateTableRequest.withGlobalSecondaryIndexes
(Collection<GlobalSecondaryIndex> globalSecondaryIndexes) One or more global secondary indexes (the maximum is five) to be created on the table.CreateTableRequest.withKeySchema
(KeySchemaElement... keySchema) Specifies the attributes that make up the primary key for a table or an index.CreateTableRequest.withKeySchema
(Collection<KeySchemaElement> keySchema) Specifies the attributes that make up the primary key for a table or an index.CreateTableRequest.withLocalSecondaryIndexes
(LocalSecondaryIndex... localSecondaryIndexes) One or more local secondary indexes (the maximum is five) to be created on the table.CreateTableRequest.withLocalSecondaryIndexes
(Collection<LocalSecondaryIndex> localSecondaryIndexes) One or more local secondary indexes (the maximum is five) to be created on the table.CreateTableRequest.withProvisionedThroughput
(ProvisionedThroughput provisionedThroughput) CreateTableRequest.withStreamSpecification
(StreamSpecification streamSpecification) The settings for DynamoDB Streams on the table.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 CreateTableRequestModifier and TypeMethodDescriptionstatic final boolean
TableUtils.createTableIfNotExists
(AmazonDynamoDB dynamo, CreateTableRequest createTableRequest) Creates the table and ignores any errors if it already exists.