Uses of Class
com.amazonaws.services.dynamodbv2.model.KeySchemaElement
-
Packages that use KeySchemaElement Package Description com.amazonaws.services.dynamodbv2.document com.amazonaws.services.dynamodbv2.model -
-
Uses of KeySchemaElement in com.amazonaws.services.dynamodbv2.document
Method parameters in com.amazonaws.services.dynamodbv2.document with type arguments of type KeySchemaElement Modifier and Type Method Description Table
DynamoDB. createTable(String tableName, List<KeySchemaElement> keySchema, List<AttributeDefinition> attributeDefinitions, ProvisionedThroughput provisionedThroughput)
Creates the specified table in DynamoDB. -
Uses of KeySchemaElement in com.amazonaws.services.dynamodbv2.model
Methods in com.amazonaws.services.dynamodbv2.model that return KeySchemaElement Modifier and Type Method Description KeySchemaElement
KeySchemaElement. clone()
KeySchemaElement
KeySchemaElement. withAttributeName(String attributeName)
The name of a key attribute.KeySchemaElement
KeySchemaElement. withKeyType(KeyType keyType)
The role that this key attribute will assume:KeySchemaElement
KeySchemaElement. withKeyType(String keyType)
The role that this key attribute will assume:Methods in com.amazonaws.services.dynamodbv2.model that return types with arguments of type KeySchemaElement Modifier and Type Method Description List<KeySchemaElement>
CreateGlobalSecondaryIndexAction. getKeySchema()
The key schema for the global secondary index.List<KeySchemaElement>
CreateTableRequest. getKeySchema()
Specifies the attributes that make up the primary key for a table or an index.List<KeySchemaElement>
GlobalSecondaryIndex. getKeySchema()
The complete key schema for a global secondary index, which consists of one or more pairs of attribute names and key types:List<KeySchemaElement>
GlobalSecondaryIndexDescription. getKeySchema()
The complete key schema for a global secondary index, which consists of one or more pairs of attribute names and key types:List<KeySchemaElement>
LocalSecondaryIndex. getKeySchema()
The complete key schema for the local secondary index, consisting of one or more pairs of attribute names and key types:List<KeySchemaElement>
LocalSecondaryIndexDescription. getKeySchema()
The complete key schema for the local secondary index, consisting of one or more pairs of attribute names and key types:List<KeySchemaElement>
StreamDescription. getKeySchema()
The key attribute(s) of the stream's DynamoDB table.List<KeySchemaElement>
TableDescription. getKeySchema()
The primary key structure for the table.Methods in com.amazonaws.services.dynamodbv2.model with parameters of type KeySchemaElement Modifier and Type Method Description CreateGlobalSecondaryIndexAction
CreateGlobalSecondaryIndexAction. withKeySchema(KeySchemaElement... keySchema)
The key schema for the global secondary index.CreateTableRequest
CreateTableRequest. withKeySchema(KeySchemaElement... keySchema)
Specifies the attributes that make up the primary key for a table or an index.GlobalSecondaryIndex
GlobalSecondaryIndex. withKeySchema(KeySchemaElement... keySchema)
The complete key schema for a global secondary index, which consists of one or more pairs of attribute names and key types:GlobalSecondaryIndexDescription
GlobalSecondaryIndexDescription. withKeySchema(KeySchemaElement... keySchema)
The complete key schema for a global secondary index, which consists of one or more pairs of attribute names and key types:LocalSecondaryIndex
LocalSecondaryIndex. withKeySchema(KeySchemaElement... keySchema)
The complete key schema for the local secondary index, consisting of one or more pairs of attribute names and key types:LocalSecondaryIndexDescription
LocalSecondaryIndexDescription. withKeySchema(KeySchemaElement... keySchema)
The complete key schema for the local secondary index, consisting of one or more pairs of attribute names and key types:StreamDescription
StreamDescription. withKeySchema(KeySchemaElement... keySchema)
The key attribute(s) of the stream's DynamoDB table.TableDescription
TableDescription. withKeySchema(KeySchemaElement... keySchema)
The primary key structure for the table.Method parameters in com.amazonaws.services.dynamodbv2.model with type arguments of type KeySchemaElement Modifier and Type Method Description void
CreateGlobalSecondaryIndexAction. setKeySchema(Collection<KeySchemaElement> keySchema)
The key schema for the global secondary index.void
CreateTableRequest. setKeySchema(Collection<KeySchemaElement> keySchema)
Specifies the attributes that make up the primary key for a table or an index.void
GlobalSecondaryIndex. setKeySchema(Collection<KeySchemaElement> keySchema)
The complete key schema for a global secondary index, which consists of one or more pairs of attribute names and key types:void
GlobalSecondaryIndexDescription. setKeySchema(Collection<KeySchemaElement> keySchema)
The complete key schema for a global secondary index, which consists of one or more pairs of attribute names and key types:void
LocalSecondaryIndex. setKeySchema(Collection<KeySchemaElement> keySchema)
The complete key schema for the local secondary index, consisting of one or more pairs of attribute names and key types:void
LocalSecondaryIndexDescription. setKeySchema(Collection<KeySchemaElement> keySchema)
The complete key schema for the local secondary index, consisting of one or more pairs of attribute names and key types:void
StreamDescription. setKeySchema(Collection<KeySchemaElement> keySchema)
The key attribute(s) of the stream's DynamoDB table.void
TableDescription. setKeySchema(Collection<KeySchemaElement> keySchema)
The primary key structure for the table.CreateGlobalSecondaryIndexAction
CreateGlobalSecondaryIndexAction. withKeySchema(Collection<KeySchemaElement> keySchema)
The key schema for the global secondary index.CreateTableRequest
CreateTableRequest. withKeySchema(Collection<KeySchemaElement> keySchema)
Specifies the attributes that make up the primary key for a table or an index.GlobalSecondaryIndex
GlobalSecondaryIndex. withKeySchema(Collection<KeySchemaElement> keySchema)
The complete key schema for a global secondary index, which consists of one or more pairs of attribute names and key types:GlobalSecondaryIndexDescription
GlobalSecondaryIndexDescription. withKeySchema(Collection<KeySchemaElement> keySchema)
The complete key schema for a global secondary index, which consists of one or more pairs of attribute names and key types:LocalSecondaryIndex
LocalSecondaryIndex. withKeySchema(Collection<KeySchemaElement> keySchema)
The complete key schema for the local secondary index, consisting of one or more pairs of attribute names and key types:LocalSecondaryIndexDescription
LocalSecondaryIndexDescription. withKeySchema(Collection<KeySchemaElement> keySchema)
The complete key schema for the local secondary index, consisting of one or more pairs of attribute names and key types:StreamDescription
StreamDescription. withKeySchema(Collection<KeySchemaElement> keySchema)
The key attribute(s) of the stream's DynamoDB table.TableDescription
TableDescription. withKeySchema(Collection<KeySchemaElement> keySchema)
The primary key structure for the table.Constructor parameters in com.amazonaws.services.dynamodbv2.model with type arguments of type KeySchemaElement Constructor Description CreateTableRequest(String tableName, List<KeySchemaElement> keySchema)
Constructs a new CreateTableRequest object.
-