Modifier and Type | Method and Description |
---|---|
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.
|
CreateTableResult |
AbstractAmazonDynamoDB.createTable(CreateTableRequest request) |
java.util.concurrent.Future<CreateTableResult> |
AmazonDynamoDBAsyncClient.createTableAsync(CreateTableRequest request) |
java.util.concurrent.Future<CreateTableResult> |
AmazonDynamoDBAsync.createTableAsync(CreateTableRequest createTableRequest)
The CreateTable operation adds a new table to your account.
|
java.util.concurrent.Future<CreateTableResult> |
AbstractAmazonDynamoDBAsync.createTableAsync(CreateTableRequest request) |
java.util.concurrent.Future<CreateTableResult> |
AmazonDynamoDBAsyncClient.createTableAsync(CreateTableRequest request,
AsyncHandler<CreateTableRequest,CreateTableResult> asyncHandler) |
java.util.concurrent.Future<CreateTableResult> |
AmazonDynamoDBAsync.createTableAsync(CreateTableRequest createTableRequest,
AsyncHandler<CreateTableRequest,CreateTableResult> asyncHandler)
The CreateTable operation adds a new table to your account.
|
java.util.concurrent.Future<CreateTableResult> |
AbstractAmazonDynamoDBAsync.createTableAsync(CreateTableRequest request,
AsyncHandler<CreateTableRequest,CreateTableResult> asyncHandler) |
Modifier and Type | Method and Description |
---|---|
java.util.concurrent.Future<CreateTableResult> |
AmazonDynamoDBAsyncClient.createTableAsync(CreateTableRequest request,
AsyncHandler<CreateTableRequest,CreateTableResult> asyncHandler) |
java.util.concurrent.Future<CreateTableResult> |
AmazonDynamoDBAsync.createTableAsync(CreateTableRequest createTableRequest,
AsyncHandler<CreateTableRequest,CreateTableResult> asyncHandler)
The CreateTable operation adds a new table to your account.
|
java.util.concurrent.Future<CreateTableResult> |
AbstractAmazonDynamoDBAsync.createTableAsync(CreateTableRequest request,
AsyncHandler<CreateTableRequest,CreateTableResult> asyncHandler) |
java.util.concurrent.Future<CreateTableResult> |
AmazonDynamoDBAsyncClient.createTableAsync(java.util.List<AttributeDefinition> attributeDefinitions,
java.lang.String tableName,
java.util.List<KeySchemaElement> keySchema,
ProvisionedThroughput provisionedThroughput,
AsyncHandler<CreateTableRequest,CreateTableResult> asyncHandler)
Simplified method form for invoking the CreateTable operation with an
AsyncHandler.
|
java.util.concurrent.Future<CreateTableResult> |
AmazonDynamoDBAsync.createTableAsync(java.util.List<AttributeDefinition> attributeDefinitions,
java.lang.String tableName,
java.util.List<KeySchemaElement> keySchema,
ProvisionedThroughput provisionedThroughput,
AsyncHandler<CreateTableRequest,CreateTableResult> asyncHandler)
Simplified method form for invoking the CreateTable operation with an
AsyncHandler.
|
java.util.concurrent.Future<CreateTableResult> |
AbstractAmazonDynamoDBAsync.createTableAsync(java.util.List<AttributeDefinition> attributeDefinitions,
java.lang.String tableName,
java.util.List<KeySchemaElement> keySchema,
ProvisionedThroughput provisionedThroughput,
AsyncHandler<CreateTableRequest,CreateTableResult> asyncHandler)
Simplified method form for invoking the CreateTable operation with an
AsyncHandler.
|
Modifier and Type | Method and Description |
---|---|
CreateTableRequest |
IDynamoDBMapper.generateCreateTableRequest(java.lang.Class<?> clazz)
Parse the given POJO class and return the CreateTableRequest for the DynamoDB table it
represents.
|
CreateTableRequest |
DynamoDBMapper.generateCreateTableRequest(java.lang.Class<?> clazz) |
CreateTableRequest |
AbstractDynamoDBMapper.generateCreateTableRequest(java.lang.Class<?> clazz) |
(package private) CreateTableRequest |
DynamoDBTableSchemaParser.parseTablePojoToCreateTableRequest(java.lang.Class<?> clazz,
DynamoDBMapperConfig config,
DynamoDBMappingsRegistry registry,
ItemConverter converter)
Parse the given POJO class and return the CreateTableRequest for the
DynamoDB table it represents.
|
Modifier and Type | Method and Description |
---|---|
Table |
DynamoDB.createTable(CreateTableRequest req)
Creates the specified table in DynamoDB.
|
Modifier and Type | Method and 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(java.util.Collection<AttributeDefinition> attributeDefinitions)
An array of attributes that describe the key schema for the table and
indexes.
|
CreateTableRequest |
CreateTableRequest.withGlobalSecondaryIndexes(java.util.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(java.util.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(java.util.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) |
CreateTableRequest |
CreateTableRequest.withStreamSpecification(StreamSpecification streamSpecification)
The settings for DynamoDB Streams on the table.
|
CreateTableRequest |
CreateTableRequest.withTableName(java.lang.String tableName)
The name of the table to create.
|
Modifier and Type | Method and Description |
---|---|
Request<CreateTableRequest> |
CreateTableRequestMarshaller.marshall(CreateTableRequest createTableRequest) |
Modifier and Type | Method and Description |
---|---|
Request<CreateTableRequest> |
CreateTableRequestMarshaller.marshall(CreateTableRequest createTableRequest) |
Modifier and Type | Method and Description |
---|---|
static boolean |
TableUtils.createTableIfNotExists(AmazonDynamoDB dynamo,
CreateTableRequest createTableRequest)
Creates the table and ignores any errors if it already exists.
|