Java com.amazonaws.services.dynamodbv2.model CreateTableRequest fields, constructors, methods, implement or subclass

Example usage for Java com.amazonaws.services.dynamodbv2.model CreateTableRequest fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.amazonaws.services.dynamodbv2.model CreateTableRequest.

The text is from its open source code.

Constructor

Method

java.util.ListgetAttributeDefinitions()

An array of attributes that describe the key schema for the table and indexes.

java.util.ListgetGlobalSecondaryIndexes()

One or more global secondary indexes (the maximum is 20) to be created on the table.

java.util.ListgetKeySchema()

Specifies the attributes that make up the primary key for a table or an index.

StringgetTableName()

The name of the table to create.

voidsetAttributeDefinitions(java.util.Collection attributeDefinitions)

An array of attributes that describe the key schema for the table and indexes.

voidsetGlobalSecondaryIndexes(java.util.Collection globalSecondaryIndexes)

One or more global secondary indexes (the maximum is 20) to be created on the table.

voidsetKeySchema(java.util.Collection keySchema)

Specifies the attributes that make up the primary key for a table or an index.

voidsetLocalSecondaryIndexes(java.util.Collection localSecondaryIndexes)

One or more local secondary indexes (the maximum is 5) to be created on the table.

voidsetProvisionedThroughput(ProvisionedThroughput provisionedThroughput)

Represents the provisioned throughput settings for a specified table or index.

voidsetTableName(String tableName)

The name of the table to create.

StringtoString()
Returns a string representation of this object.
CreateTableRequestwithGlobalSecondaryIndexes(GlobalSecondaryIndex... globalSecondaryIndexes)

One or more global secondary indexes (the maximum is 20) to be created on the table.

CreateTableRequestwithGlobalSecondaryIndexes( java.util.Collection globalSecondaryIndexes)

One or more global secondary indexes (the maximum is 20) to be created on the table.