Uses of Class
com.amazonaws.services.dynamodbv2.model.CreateTableRequest

Packages that use CreateTableRequest
com.amazonaws.services.dynamodbv2 Synchronous and asynchronous client classes for accessing AmazonDynamoDBv2. 
com.amazonaws.services.dynamodbv2.datamodeling   
com.amazonaws.services.dynamodbv2.model Classes modeling the various types represented by AmazonDynamoDBv2. 
 

Uses of CreateTableRequest in com.amazonaws.services.dynamodbv2
 

Methods in com.amazonaws.services.dynamodbv2 with parameters of type CreateTableRequest
 CreateTableResult AmazonDynamoDBClient.createTable(CreateTableRequest createTableRequest)
           The CreateTable operation adds a new table to your account.
 CreateTableResult AmazonDynamoDB.createTable(CreateTableRequest createTableRequest)
           The CreateTable operation adds a new table to your account.
 Future<CreateTableResult> AmazonDynamoDBAsyncClient.createTableAsync(CreateTableRequest createTableRequest)
           The CreateTable operation adds a new table to your account.
 Future<CreateTableResult> AmazonDynamoDBAsync.createTableAsync(CreateTableRequest createTableRequest)
           The CreateTable operation adds a new table to your account.
 Future<CreateTableResult> AmazonDynamoDBAsyncClient.createTableAsync(CreateTableRequest createTableRequest, AsyncHandler<CreateTableRequest,CreateTableResult> asyncHandler)
           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.
 

Method parameters in com.amazonaws.services.dynamodbv2 with type arguments of type CreateTableRequest
 Future<CreateTableResult> AmazonDynamoDBAsyncClient.createTableAsync(CreateTableRequest createTableRequest, AsyncHandler<CreateTableRequest,CreateTableResult> asyncHandler)
           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.
 

Uses of CreateTableRequest in com.amazonaws.services.dynamodbv2.datamodeling
 

Methods in com.amazonaws.services.dynamodbv2.datamodeling that return CreateTableRequest
 CreateTableRequest DynamoDBMapper.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.model
 

Methods in com.amazonaws.services.dynamodbv2.model that return CreateTableRequest
 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(Collection<GlobalSecondaryIndex> globalSecondaryIndexes)
          One or more global secondary indexes (the maximum is five) to be created on the table.
 CreateTableRequest CreateTableRequest.withGlobalSecondaryIndexes(GlobalSecondaryIndex... globalSecondaryIndexes)
          One or more global secondary indexes (the maximum is five) to be created on the table.
 CreateTableRequest CreateTableRequest.withKeySchema(Collection<KeySchemaElement> keySchema)
          Specifies the attributes that make up the primary key for a table or an index.
 CreateTableRequest CreateTableRequest.withKeySchema(KeySchemaElement... keySchema)
          Specifies the attributes that make up the primary key for a table or an index.
 CreateTableRequest CreateTableRequest.withLocalSecondaryIndexes(Collection<LocalSecondaryIndex> localSecondaryIndexes)
          One or more local secondary indexes (the maximum is five) to be created on the table.
 CreateTableRequest CreateTableRequest.withLocalSecondaryIndexes(LocalSecondaryIndex... localSecondaryIndexes)
          One or more local secondary indexes (the maximum is five) to be created on the table.
 CreateTableRequest CreateTableRequest.withProvisionedThroughput(ProvisionedThroughput provisionedThroughput)
          Represents the provisioned throughput settings for a specified table or index.
 CreateTableRequest CreateTableRequest.withTableName(String tableName)
          The name of the table to create.
 



Copyright © 2016. All rights reserved.