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

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

Introduction

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

The text is from its open source code.

Constructor

Method

java.util.ListgetKeySchema()

The complete key schema for a global secondary index, which consists of one or more pairs of attribute names and key types:

  • HASH - partition key

  • RANGE - sort key

The partition key of an item is also known as its hash attribute.

voidsetIndexName(String indexName)

The name of the global secondary index.

voidsetKeySchema(java.util.Collection keySchema)

The complete key schema for a global secondary index, which consists of one or more pairs of attribute names and key types:

  • HASH - partition key

  • RANGE - sort key

The partition key of an item is also known as its hash attribute.

voidsetProjection(Projection projection)

Represents attributes that are copied (projected) from the table into the global secondary index.

voidsetProvisionedThroughput(ProvisionedThroughput provisionedThroughput)

Represents the provisioned throughput settings for the specified global secondary index.

GlobalSecondaryIndexwithKeySchema(KeySchemaElement... keySchema)

The complete key schema for a global secondary index, which consists of one or more pairs of attribute names and key types:

  • HASH - partition key

  • RANGE - sort key

The partition key of an item is also known as its hash attribute.

GlobalSecondaryIndexwithKeySchema(java.util.Collection keySchema)

The complete key schema for a global secondary index, which consists of one or more pairs of attribute names and key types:

  • HASH - partition key

  • RANGE - sort key

The partition key of an item is also known as its hash attribute.