public static interface TableDescription.Builder extends CopyableBuilder<TableDescription.Builder,TableDescription>
| Modifier and Type | Method and Description | 
|---|---|
| TableDescription.Builder | attributeDefinitions(AttributeDefinition... attributeDefinitions)
 An array of  AttributeDefinitionobjects. | 
| TableDescription.Builder | attributeDefinitions(Collection<AttributeDefinition> attributeDefinitions)
 An array of  AttributeDefinitionobjects. | 
| TableDescription.Builder | attributeDefinitions(Consumer<AttributeDefinition.Builder>... attributeDefinitions)
 An array of  AttributeDefinitionobjects. | 
| TableDescription.Builder | creationDateTime(Instant creationDateTime)
 The date and time when the table was created, in UNIX epoch time
 format. | 
| TableDescription.Builder | globalSecondaryIndexes(Collection<GlobalSecondaryIndexDescription> globalSecondaryIndexes)
 The global secondary indexes, if any, on the table. | 
| TableDescription.Builder | globalSecondaryIndexes(Consumer<GlobalSecondaryIndexDescription.Builder>... globalSecondaryIndexes)
 The global secondary indexes, if any, on the table. | 
| TableDescription.Builder | globalSecondaryIndexes(GlobalSecondaryIndexDescription... globalSecondaryIndexes)
 The global secondary indexes, if any, on the table. | 
| TableDescription.Builder | itemCount(Long itemCount)
 The number of items in the specified table. | 
| TableDescription.Builder | keySchema(Collection<KeySchemaElement> keySchema)
 The primary key structure for the table. | 
| TableDescription.Builder | keySchema(Consumer<KeySchemaElement.Builder>... keySchema)
 The primary key structure for the table. | 
| TableDescription.Builder | keySchema(KeySchemaElement... keySchema)
 The primary key structure for the table. | 
| TableDescription.Builder | latestStreamArn(String latestStreamArn)
 The Amazon Resource Name (ARN) that uniquely identifies the latest stream for this table. | 
| TableDescription.Builder | latestStreamLabel(String latestStreamLabel)
 A timestamp, in ISO 8601 format, for this stream. | 
| TableDescription.Builder | localSecondaryIndexes(Collection<LocalSecondaryIndexDescription> localSecondaryIndexes)
 Represents one or more local secondary indexes on the table. | 
| TableDescription.Builder | localSecondaryIndexes(Consumer<LocalSecondaryIndexDescription.Builder>... localSecondaryIndexes)
 Represents one or more local secondary indexes on the table. | 
| TableDescription.Builder | localSecondaryIndexes(LocalSecondaryIndexDescription... localSecondaryIndexes)
 Represents one or more local secondary indexes on the table. | 
| default TableDescription.Builder | provisionedThroughput(Consumer<ProvisionedThroughputDescription.Builder> provisionedThroughput)
 The provisioned throughput settings for the table, consisting of read and write capacity units, along with
 data about increases and decreases. | 
| TableDescription.Builder | provisionedThroughput(ProvisionedThroughputDescription provisionedThroughput)
 The provisioned throughput settings for the table, consisting of read and write capacity units, along with
 data about increases and decreases. | 
| default TableDescription.Builder | restoreSummary(Consumer<RestoreSummary.Builder> restoreSummary)
 Contains details for the restore. | 
| TableDescription.Builder | restoreSummary(RestoreSummary restoreSummary)
 Contains details for the restore. | 
| default TableDescription.Builder | sseDescription(Consumer<SSEDescription.Builder> sseDescription)
 The description of the server-side encryption status on the specified table. | 
| TableDescription.Builder | sseDescription(SSEDescription sseDescription)
 The description of the server-side encryption status on the specified table. | 
| default TableDescription.Builder | streamSpecification(Consumer<StreamSpecification.Builder> streamSpecification)
 The current DynamoDB Streams configuration for the table. | 
| TableDescription.Builder | streamSpecification(StreamSpecification streamSpecification)
 The current DynamoDB Streams configuration for the table. | 
| TableDescription.Builder | tableArn(String tableArn)
 The Amazon Resource Name (ARN) that uniquely identifies the table. | 
| TableDescription.Builder | tableId(String tableId)
 Unique identifier for the table for which the backup was created. | 
| TableDescription.Builder | tableName(String tableName)
 The name of the table. | 
| TableDescription.Builder | tableSizeBytes(Long tableSizeBytes)
 The total size of the specified table, in bytes. | 
| TableDescription.Builder | tableStatus(String tableStatus)
 The current state of the table: | 
| TableDescription.Builder | tableStatus(TableStatus tableStatus)
 The current state of the table: | 
copyapplyMutation, buildTableDescription.Builder attributeDefinitions(Collection<AttributeDefinition> attributeDefinitions)
 An array of AttributeDefinition objects. Each of these objects describes one attribute in the
 table and index key schema.
 
 Each AttributeDefinition object in this array is composed of:
 
 AttributeName - The name of the attribute.
 
 AttributeType - The data type for the attribute.
 
attributeDefinitions - An array of AttributeDefinition objects. Each of these objects describes one attribute in
        the table and index key schema.
        
        Each AttributeDefinition object in this array is composed of:
        
        AttributeName - The name of the attribute.
        
        AttributeType - The data type for the attribute.
        
TableDescription.Builder attributeDefinitions(AttributeDefinition... attributeDefinitions)
 An array of AttributeDefinition objects. Each of these objects describes one attribute in the
 table and index key schema.
 
 Each AttributeDefinition object in this array is composed of:
 
 AttributeName - The name of the attribute.
 
 AttributeType - The data type for the attribute.
 
attributeDefinitions - An array of AttributeDefinition objects. Each of these objects describes one attribute in
        the table and index key schema.
        
        Each AttributeDefinition object in this array is composed of:
        
        AttributeName - The name of the attribute.
        
        AttributeType - The data type for the attribute.
        
TableDescription.Builder attributeDefinitions(Consumer<AttributeDefinition.Builder>... attributeDefinitions)
 An array of AttributeDefinition objects. Each of these objects describes one attribute in the
 table and index key schema.
 
 Each AttributeDefinition object in this array is composed of:
 
 AttributeName - The name of the attribute.
 
 AttributeType - The data type for the attribute.
 
List.Builder  avoiding the
 need to create one manually via List#builder() .
 When the Consumer completes, List.Builder#build()  is called immediately
 and its result is passed to #attributeDefinitions(List) .attributeDefinitions - a consumer that will call methods on List.Builder #attributeDefinitions(List) TableDescription.Builder tableName(String tableName)
The name of the table.
tableName - The name of the table.TableDescription.Builder keySchema(Collection<KeySchemaElement> keySchema)
 The primary key structure for the table. Each KeySchemaElement consists of:
 
 AttributeName - The name of the attribute.
 
 KeyType - The role of the attribute:
 
 HASH - partition key
 
 RANGE - sort key
 
The partition key of an item is also known as its hash attribute. The term "hash attribute" derives from DynamoDB' usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values.
The sort key of an item is also known as its range attribute. The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value.
For more information about primary keys, see Primary Key in the Amazon DynamoDB Developer Guide.
keySchema - The primary key structure for the table. Each KeySchemaElement consists of:
        
        AttributeName - The name of the attribute.
        
        KeyType - The role of the attribute:
        
        HASH - partition key
        
        RANGE - sort key
        
The partition key of an item is also known as its hash attribute. The term "hash attribute" derives from DynamoDB' usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values.
The sort key of an item is also known as its range attribute. The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value.
For more information about primary keys, see Primary Key in the Amazon DynamoDB Developer Guide.
TableDescription.Builder keySchema(KeySchemaElement... keySchema)
 The primary key structure for the table. Each KeySchemaElement consists of:
 
 AttributeName - The name of the attribute.
 
 KeyType - The role of the attribute:
 
 HASH - partition key
 
 RANGE - sort key
 
The partition key of an item is also known as its hash attribute. The term "hash attribute" derives from DynamoDB' usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values.
The sort key of an item is also known as its range attribute. The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value.
For more information about primary keys, see Primary Key in the Amazon DynamoDB Developer Guide.
keySchema - The primary key structure for the table. Each KeySchemaElement consists of:
        
        AttributeName - The name of the attribute.
        
        KeyType - The role of the attribute:
        
        HASH - partition key
        
        RANGE - sort key
        
The partition key of an item is also known as its hash attribute. The term "hash attribute" derives from DynamoDB' usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values.
The sort key of an item is also known as its range attribute. The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value.
For more information about primary keys, see Primary Key in the Amazon DynamoDB Developer Guide.
TableDescription.Builder keySchema(Consumer<KeySchemaElement.Builder>... keySchema)
 The primary key structure for the table. Each KeySchemaElement consists of:
 
 AttributeName - The name of the attribute.
 
 KeyType - The role of the attribute:
 
 HASH - partition key
 
 RANGE - sort key
 
The partition key of an item is also known as its hash attribute. The term "hash attribute" derives from DynamoDB' usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values.
The sort key of an item is also known as its range attribute. The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value.
For more information about primary keys, see Primary Key in the Amazon DynamoDB Developer Guide.
This is a convenience that creates an instance of theList.Builder  avoiding the
 need to create one manually via List#builder() .
 When the Consumer completes, List.Builder#build()  is called immediately and
 its result is passed to #keySchema(List) .keySchema - a consumer that will call methods on List.Builder #keySchema(List) TableDescription.Builder tableStatus(String tableStatus)
The current state of the table:
 CREATING - The table is being created.
 
 UPDATING - The table is being updated.
 
 DELETING - The table is being deleted.
 
 ACTIVE - The table is ready for use.
 
tableStatus - The current state of the table:
        
        CREATING - The table is being created.
        
        UPDATING - The table is being updated.
        
        DELETING - The table is being deleted.
        
        ACTIVE - The table is ready for use.
        
TableStatus, 
TableStatusTableDescription.Builder tableStatus(TableStatus tableStatus)
The current state of the table:
 CREATING - The table is being created.
 
 UPDATING - The table is being updated.
 
 DELETING - The table is being deleted.
 
 ACTIVE - The table is ready for use.
 
tableStatus - The current state of the table:
        
        CREATING - The table is being created.
        
        UPDATING - The table is being updated.
        
        DELETING - The table is being deleted.
        
        ACTIVE - The table is ready for use.
        
TableStatus, 
TableStatusTableDescription.Builder creationDateTime(Instant creationDateTime)
The date and time when the table was created, in UNIX epoch time format.
creationDateTime - The date and time when the table was created, in UNIX epoch
        time format.TableDescription.Builder provisionedThroughput(ProvisionedThroughputDescription provisionedThroughput)
The provisioned throughput settings for the table, consisting of read and write capacity units, along with data about increases and decreases.
provisionedThroughput - The provisioned throughput settings for the table, consisting of read and write capacity units, along
        with data about increases and decreases.default TableDescription.Builder provisionedThroughput(Consumer<ProvisionedThroughputDescription.Builder> provisionedThroughput)
The provisioned throughput settings for the table, consisting of read and write capacity units, along with data about increases and decreases.
This is a convenience that creates an instance of theProvisionedThroughputDescription.Builder
 avoiding the need to create one manually via ProvisionedThroughputDescription.builder().
 When the Consumer completes, SdkBuilder.build() is called
 immediately and its result is passed to provisionedThroughput(ProvisionedThroughputDescription).provisionedThroughput - a consumer that will call methods on ProvisionedThroughputDescription.BuilderprovisionedThroughput(ProvisionedThroughputDescription)TableDescription.Builder tableSizeBytes(Long tableSizeBytes)
The total size of the specified table, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.
tableSizeBytes - The total size of the specified table, in bytes. DynamoDB updates this value approximately every six
        hours. Recent changes might not be reflected in this value.TableDescription.Builder itemCount(Long itemCount)
The number of items in the specified table. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.
itemCount - The number of items in the specified table. DynamoDB updates this value approximately every six hours.
        Recent changes might not be reflected in this value.TableDescription.Builder tableArn(String tableArn)
The Amazon Resource Name (ARN) that uniquely identifies the table.
tableArn - The Amazon Resource Name (ARN) that uniquely identifies the table.TableDescription.Builder tableId(String tableId)
Unique identifier for the table for which the backup was created.
tableId - Unique identifier for the table for which the backup was created.TableDescription.Builder localSecondaryIndexes(Collection<LocalSecondaryIndexDescription> localSecondaryIndexes)
Represents one or more local secondary indexes on the table. Each index is scoped to a given partition key value. Tables with one or more local secondary indexes are subject to an item collection size limit, where the amount of data within a given item collection cannot exceed 10 GB. Each element is composed of:
 IndexName - The name of the local secondary index.
 
 KeySchema - Specifies the complete index key schema. The attribute names in the key schema must
 be between 1 and 255 characters (inclusive). The key schema must begin with the same partition key as the
 table.
 
 Projection - Specifies attributes that are copied (projected) from the table into the index.
 These are in addition to the primary key attributes and index key attributes, which are automatically
 projected. Each attribute specification is composed of:
 
 ProjectionType - One of the following:
 
 KEYS_ONLY - Only the index and primary keys are projected into the index.
 
 INCLUDE - Only the specified table attributes are projected into the index. The list of
 projected attributes are in NonKeyAttributes.
 
 ALL - All of the table attributes are projected into the index.
 
 NonKeyAttributes - A list of one or more non-key attribute names that are projected into the
 secondary index. The total count of attributes provided in NonKeyAttributes, summed across all
 of the secondary indexes, must not exceed 20. If you project the same attribute into two different indexes,
 this counts as two distinct attributes when determining the total.
 
 IndexSizeBytes - Represents the total size of the index, in bytes. DynamoDB updates this value
 approximately every six hours. Recent changes might not be reflected in this value.
 
 ItemCount - Represents the number of items in the index. DynamoDB updates this value
 approximately every six hours. Recent changes might not be reflected in this value.
 
 If the table is in the DELETING state, no information about indexes will be returned.
 
localSecondaryIndexes - Represents one or more local secondary indexes on the table. Each index is scoped to a given partition
        key value. Tables with one or more local secondary indexes are subject to an item collection size
        limit, where the amount of data within a given item collection cannot exceed 10 GB. Each element is
        composed of:
        
        IndexName - The name of the local secondary index.
        
        KeySchema - Specifies the complete index key schema. The attribute names in the key
        schema must be between 1 and 255 characters (inclusive). The key schema must begin with the same
        partition key as the table.
        
        Projection - Specifies attributes that are copied (projected) from the table into the
        index. These are in addition to the primary key attributes and index key attributes, which are
        automatically projected. Each attribute specification is composed of:
        
        ProjectionType - One of the following:
        
        KEYS_ONLY - Only the index and primary keys are projected into the index.
        
        INCLUDE - Only the specified table attributes are projected into the index. The list of
        projected attributes are in NonKeyAttributes.
        
        ALL - All of the table attributes are projected into the index.
        
        NonKeyAttributes - A list of one or more non-key attribute names that are projected into
        the secondary index. The total count of attributes provided in NonKeyAttributes, summed
        across all of the secondary indexes, must not exceed 20. If you project the same attribute into two
        different indexes, this counts as two distinct attributes when determining the total.
        
        IndexSizeBytes - Represents the total size of the index, in bytes. DynamoDB updates this
        value approximately every six hours. Recent changes might not be reflected in this value.
        
        ItemCount - Represents the number of items in the index. DynamoDB updates this value
        approximately every six hours. Recent changes might not be reflected in this value.
        
        If the table is in the DELETING state, no information about indexes will be returned.
TableDescription.Builder localSecondaryIndexes(LocalSecondaryIndexDescription... localSecondaryIndexes)
Represents one or more local secondary indexes on the table. Each index is scoped to a given partition key value. Tables with one or more local secondary indexes are subject to an item collection size limit, where the amount of data within a given item collection cannot exceed 10 GB. Each element is composed of:
 IndexName - The name of the local secondary index.
 
 KeySchema - Specifies the complete index key schema. The attribute names in the key schema must
 be between 1 and 255 characters (inclusive). The key schema must begin with the same partition key as the
 table.
 
 Projection - Specifies attributes that are copied (projected) from the table into the index.
 These are in addition to the primary key attributes and index key attributes, which are automatically
 projected. Each attribute specification is composed of:
 
 ProjectionType - One of the following:
 
 KEYS_ONLY - Only the index and primary keys are projected into the index.
 
 INCLUDE - Only the specified table attributes are projected into the index. The list of
 projected attributes are in NonKeyAttributes.
 
 ALL - All of the table attributes are projected into the index.
 
 NonKeyAttributes - A list of one or more non-key attribute names that are projected into the
 secondary index. The total count of attributes provided in NonKeyAttributes, summed across all
 of the secondary indexes, must not exceed 20. If you project the same attribute into two different indexes,
 this counts as two distinct attributes when determining the total.
 
 IndexSizeBytes - Represents the total size of the index, in bytes. DynamoDB updates this value
 approximately every six hours. Recent changes might not be reflected in this value.
 
 ItemCount - Represents the number of items in the index. DynamoDB updates this value
 approximately every six hours. Recent changes might not be reflected in this value.
 
 If the table is in the DELETING state, no information about indexes will be returned.
 
localSecondaryIndexes - Represents one or more local secondary indexes on the table. Each index is scoped to a given partition
        key value. Tables with one or more local secondary indexes are subject to an item collection size
        limit, where the amount of data within a given item collection cannot exceed 10 GB. Each element is
        composed of:
        
        IndexName - The name of the local secondary index.
        
        KeySchema - Specifies the complete index key schema. The attribute names in the key
        schema must be between 1 and 255 characters (inclusive). The key schema must begin with the same
        partition key as the table.
        
        Projection - Specifies attributes that are copied (projected) from the table into the
        index. These are in addition to the primary key attributes and index key attributes, which are
        automatically projected. Each attribute specification is composed of:
        
        ProjectionType - One of the following:
        
        KEYS_ONLY - Only the index and primary keys are projected into the index.
        
        INCLUDE - Only the specified table attributes are projected into the index. The list of
        projected attributes are in NonKeyAttributes.
        
        ALL - All of the table attributes are projected into the index.
        
        NonKeyAttributes - A list of one or more non-key attribute names that are projected into
        the secondary index. The total count of attributes provided in NonKeyAttributes, summed
        across all of the secondary indexes, must not exceed 20. If you project the same attribute into two
        different indexes, this counts as two distinct attributes when determining the total.
        
        IndexSizeBytes - Represents the total size of the index, in bytes. DynamoDB updates this
        value approximately every six hours. Recent changes might not be reflected in this value.
        
        ItemCount - Represents the number of items in the index. DynamoDB updates this value
        approximately every six hours. Recent changes might not be reflected in this value.
        
        If the table is in the DELETING state, no information about indexes will be returned.
TableDescription.Builder localSecondaryIndexes(Consumer<LocalSecondaryIndexDescription.Builder>... localSecondaryIndexes)
Represents one or more local secondary indexes on the table. Each index is scoped to a given partition key value. Tables with one or more local secondary indexes are subject to an item collection size limit, where the amount of data within a given item collection cannot exceed 10 GB. Each element is composed of:
 IndexName - The name of the local secondary index.
 
 KeySchema - Specifies the complete index key schema. The attribute names in the key schema must
 be between 1 and 255 characters (inclusive). The key schema must begin with the same partition key as the
 table.
 
 Projection - Specifies attributes that are copied (projected) from the table into the index.
 These are in addition to the primary key attributes and index key attributes, which are automatically
 projected. Each attribute specification is composed of:
 
 ProjectionType - One of the following:
 
 KEYS_ONLY - Only the index and primary keys are projected into the index.
 
 INCLUDE - Only the specified table attributes are projected into the index. The list of
 projected attributes are in NonKeyAttributes.
 
 ALL - All of the table attributes are projected into the index.
 
 NonKeyAttributes - A list of one or more non-key attribute names that are projected into the
 secondary index. The total count of attributes provided in NonKeyAttributes, summed across all
 of the secondary indexes, must not exceed 20. If you project the same attribute into two different indexes,
 this counts as two distinct attributes when determining the total.
 
 IndexSizeBytes - Represents the total size of the index, in bytes. DynamoDB updates this value
 approximately every six hours. Recent changes might not be reflected in this value.
 
 ItemCount - Represents the number of items in the index. DynamoDB updates this value
 approximately every six hours. Recent changes might not be reflected in this value.
 
 If the table is in the DELETING state, no information about indexes will be returned.
 
List.Builder 
 avoiding the need to create one manually via List#builder() .
 When the Consumer completes, List.Builder#build()  is called
 immediately and its result is passed to #localSecondaryIndexes(List) .localSecondaryIndexes - a consumer that will call methods on List.Builder #localSecondaryIndexes(List) TableDescription.Builder globalSecondaryIndexes(Collection<GlobalSecondaryIndexDescription> globalSecondaryIndexes)
The global secondary indexes, if any, on the table. Each index is scoped to a given partition key value. Each element is composed of:
 Backfilling - If true, then the index is currently in the backfilling phase. Backfilling occurs
 only when a new global secondary index is added to the table; it is the process by which DynamoDB populates
 the new index with data from the table. (This attribute does not appear for indexes that were created during
 a CreateTable operation.)
 
 IndexName - The name of the global secondary index.
 
 IndexSizeBytes - The total size of the global secondary index, in bytes. DynamoDB updates this
 value approximately every six hours. Recent changes might not be reflected in this value.
 
 IndexStatus - The current status of the global secondary index:
 
 CREATING - The index is being created.
 
 UPDATING - The index is being updated.
 
 DELETING - The index is being deleted.
 
 ACTIVE - The index is ready for use.
 
 ItemCount - The number of items in the global secondary index. DynamoDB updates this value
 approximately every six hours. Recent changes might not be reflected in this value.
 
 KeySchema - Specifies the complete index key schema. The attribute names in the key schema must
 be between 1 and 255 characters (inclusive). The key schema must begin with the same partition key as the
 table.
 
 Projection - Specifies attributes that are copied (projected) from the table into the index.
 These are in addition to the primary key attributes and index key attributes, which are automatically
 projected. Each attribute specification is composed of:
 
 ProjectionType - One of the following:
 
 KEYS_ONLY - Only the index and primary keys are projected into the index.
 
 INCLUDE - Only the specified table attributes are projected into the index. The list of
 projected attributes are in NonKeyAttributes.
 
 ALL - All of the table attributes are projected into the index.
 
 NonKeyAttributes - A list of one or more non-key attribute names that are projected into the
 secondary index. The total count of attributes provided in NonKeyAttributes, summed across all
 of the secondary indexes, must not exceed 20. If you project the same attribute into two different indexes,
 this counts as two distinct attributes when determining the total.
 
 ProvisionedThroughput - The provisioned throughput settings for the global secondary index,
 consisting of read and write capacity units, along with data about increases and decreases.
 
 If the table is in the DELETING state, no information about indexes will be returned.
 
globalSecondaryIndexes - The global secondary indexes, if any, on the table. Each index is scoped to a given partition key
        value. Each element is composed of:
        
        Backfilling - If true, then the index is currently in the backfilling phase. Backfilling
        occurs only when a new global secondary index is added to the table; it is the process by which
        DynamoDB populates the new index with data from the table. (This attribute does not appear for indexes
        that were created during a CreateTable operation.)
        
        IndexName - The name of the global secondary index.
        
        IndexSizeBytes - The total size of the global secondary index, in bytes. DynamoDB updates
        this value approximately every six hours. Recent changes might not be reflected in this value.
        
        IndexStatus - The current status of the global secondary index:
        
        CREATING - The index is being created.
        
        UPDATING - The index is being updated.
        
        DELETING - The index is being deleted.
        
        ACTIVE - The index is ready for use.
        
        ItemCount - The number of items in the global secondary index. DynamoDB updates this
        value approximately every six hours. Recent changes might not be reflected in this value.
        
        KeySchema - Specifies the complete index key schema. The attribute names in the key
        schema must be between 1 and 255 characters (inclusive). The key schema must begin with the same
        partition key as the table.
        
        Projection - Specifies attributes that are copied (projected) from the table into the
        index. These are in addition to the primary key attributes and index key attributes, which are
        automatically projected. Each attribute specification is composed of:
        
        ProjectionType - One of the following:
        
        KEYS_ONLY - Only the index and primary keys are projected into the index.
        
        INCLUDE - Only the specified table attributes are projected into the index. The list of
        projected attributes are in NonKeyAttributes.
        
        ALL - All of the table attributes are projected into the index.
        
        NonKeyAttributes - A list of one or more non-key attribute names that are projected into
        the secondary index. The total count of attributes provided in NonKeyAttributes, summed
        across all of the secondary indexes, must not exceed 20. If you project the same attribute into two
        different indexes, this counts as two distinct attributes when determining the total.
        
        ProvisionedThroughput - The provisioned throughput settings for the global secondary
        index, consisting of read and write capacity units, along with data about increases and decreases.
        
        If the table is in the DELETING state, no information about indexes will be returned.
TableDescription.Builder globalSecondaryIndexes(GlobalSecondaryIndexDescription... globalSecondaryIndexes)
The global secondary indexes, if any, on the table. Each index is scoped to a given partition key value. Each element is composed of:
 Backfilling - If true, then the index is currently in the backfilling phase. Backfilling occurs
 only when a new global secondary index is added to the table; it is the process by which DynamoDB populates
 the new index with data from the table. (This attribute does not appear for indexes that were created during
 a CreateTable operation.)
 
 IndexName - The name of the global secondary index.
 
 IndexSizeBytes - The total size of the global secondary index, in bytes. DynamoDB updates this
 value approximately every six hours. Recent changes might not be reflected in this value.
 
 IndexStatus - The current status of the global secondary index:
 
 CREATING - The index is being created.
 
 UPDATING - The index is being updated.
 
 DELETING - The index is being deleted.
 
 ACTIVE - The index is ready for use.
 
 ItemCount - The number of items in the global secondary index. DynamoDB updates this value
 approximately every six hours. Recent changes might not be reflected in this value.
 
 KeySchema - Specifies the complete index key schema. The attribute names in the key schema must
 be between 1 and 255 characters (inclusive). The key schema must begin with the same partition key as the
 table.
 
 Projection - Specifies attributes that are copied (projected) from the table into the index.
 These are in addition to the primary key attributes and index key attributes, which are automatically
 projected. Each attribute specification is composed of:
 
 ProjectionType - One of the following:
 
 KEYS_ONLY - Only the index and primary keys are projected into the index.
 
 INCLUDE - Only the specified table attributes are projected into the index. The list of
 projected attributes are in NonKeyAttributes.
 
 ALL - All of the table attributes are projected into the index.
 
 NonKeyAttributes - A list of one or more non-key attribute names that are projected into the
 secondary index. The total count of attributes provided in NonKeyAttributes, summed across all
 of the secondary indexes, must not exceed 20. If you project the same attribute into two different indexes,
 this counts as two distinct attributes when determining the total.
 
 ProvisionedThroughput - The provisioned throughput settings for the global secondary index,
 consisting of read and write capacity units, along with data about increases and decreases.
 
 If the table is in the DELETING state, no information about indexes will be returned.
 
globalSecondaryIndexes - The global secondary indexes, if any, on the table. Each index is scoped to a given partition key
        value. Each element is composed of:
        
        Backfilling - If true, then the index is currently in the backfilling phase. Backfilling
        occurs only when a new global secondary index is added to the table; it is the process by which
        DynamoDB populates the new index with data from the table. (This attribute does not appear for indexes
        that were created during a CreateTable operation.)
        
        IndexName - The name of the global secondary index.
        
        IndexSizeBytes - The total size of the global secondary index, in bytes. DynamoDB updates
        this value approximately every six hours. Recent changes might not be reflected in this value.
        
        IndexStatus - The current status of the global secondary index:
        
        CREATING - The index is being created.
        
        UPDATING - The index is being updated.
        
        DELETING - The index is being deleted.
        
        ACTIVE - The index is ready for use.
        
        ItemCount - The number of items in the global secondary index. DynamoDB updates this
        value approximately every six hours. Recent changes might not be reflected in this value.
        
        KeySchema - Specifies the complete index key schema. The attribute names in the key
        schema must be between 1 and 255 characters (inclusive). The key schema must begin with the same
        partition key as the table.
        
        Projection - Specifies attributes that are copied (projected) from the table into the
        index. These are in addition to the primary key attributes and index key attributes, which are
        automatically projected. Each attribute specification is composed of:
        
        ProjectionType - One of the following:
        
        KEYS_ONLY - Only the index and primary keys are projected into the index.
        
        INCLUDE - Only the specified table attributes are projected into the index. The list of
        projected attributes are in NonKeyAttributes.
        
        ALL - All of the table attributes are projected into the index.
        
        NonKeyAttributes - A list of one or more non-key attribute names that are projected into
        the secondary index. The total count of attributes provided in NonKeyAttributes, summed
        across all of the secondary indexes, must not exceed 20. If you project the same attribute into two
        different indexes, this counts as two distinct attributes when determining the total.
        
        ProvisionedThroughput - The provisioned throughput settings for the global secondary
        index, consisting of read and write capacity units, along with data about increases and decreases.
        
        If the table is in the DELETING state, no information about indexes will be returned.
TableDescription.Builder globalSecondaryIndexes(Consumer<GlobalSecondaryIndexDescription.Builder>... globalSecondaryIndexes)
The global secondary indexes, if any, on the table. Each index is scoped to a given partition key value. Each element is composed of:
 Backfilling - If true, then the index is currently in the backfilling phase. Backfilling occurs
 only when a new global secondary index is added to the table; it is the process by which DynamoDB populates
 the new index with data from the table. (This attribute does not appear for indexes that were created during
 a CreateTable operation.)
 
 IndexName - The name of the global secondary index.
 
 IndexSizeBytes - The total size of the global secondary index, in bytes. DynamoDB updates this
 value approximately every six hours. Recent changes might not be reflected in this value.
 
 IndexStatus - The current status of the global secondary index:
 
 CREATING - The index is being created.
 
 UPDATING - The index is being updated.
 
 DELETING - The index is being deleted.
 
 ACTIVE - The index is ready for use.
 
 ItemCount - The number of items in the global secondary index. DynamoDB updates this value
 approximately every six hours. Recent changes might not be reflected in this value.
 
 KeySchema - Specifies the complete index key schema. The attribute names in the key schema must
 be between 1 and 255 characters (inclusive). The key schema must begin with the same partition key as the
 table.
 
 Projection - Specifies attributes that are copied (projected) from the table into the index.
 These are in addition to the primary key attributes and index key attributes, which are automatically
 projected. Each attribute specification is composed of:
 
 ProjectionType - One of the following:
 
 KEYS_ONLY - Only the index and primary keys are projected into the index.
 
 INCLUDE - Only the specified table attributes are projected into the index. The list of
 projected attributes are in NonKeyAttributes.
 
 ALL - All of the table attributes are projected into the index.
 
 NonKeyAttributes - A list of one or more non-key attribute names that are projected into the
 secondary index. The total count of attributes provided in NonKeyAttributes, summed across all
 of the secondary indexes, must not exceed 20. If you project the same attribute into two different indexes,
 this counts as two distinct attributes when determining the total.
 
 ProvisionedThroughput - The provisioned throughput settings for the global secondary index,
 consisting of read and write capacity units, along with data about increases and decreases.
 
 If the table is in the DELETING state, no information about indexes will be returned.
 
List.Builder 
 avoiding the need to create one manually via List#builder() .
 When the Consumer completes, List.Builder#build()  is called
 immediately and its result is passed to #globalSecondaryIndexes(List) .globalSecondaryIndexes - a consumer that will call methods on List.Builder #globalSecondaryIndexes(List) TableDescription.Builder streamSpecification(StreamSpecification streamSpecification)
The current DynamoDB Streams configuration for the table.
streamSpecification - The current DynamoDB Streams configuration for the table.default TableDescription.Builder streamSpecification(Consumer<StreamSpecification.Builder> streamSpecification)
The current DynamoDB Streams configuration for the table.
This is a convenience that creates an instance of theStreamSpecification.Builder avoiding the need
 to create one manually via StreamSpecification.builder().
 When the Consumer completes, SdkBuilder.build() is called immediately and
 its result is passed to streamSpecification(StreamSpecification).streamSpecification - a consumer that will call methods on StreamSpecification.BuilderstreamSpecification(StreamSpecification)TableDescription.Builder latestStreamLabel(String latestStreamLabel)
A timestamp, in ISO 8601 format, for this stream.
 Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible
 that a stream from another table might have the same timestamp. However, the combination of the following
 three elements is guaranteed to be unique:
 
the AWS customer ID.
the table name.
 the StreamLabel.
 
latestStreamLabel - A timestamp, in ISO 8601 format, for this stream.
        
        Note that LatestStreamLabel is not a unique identifier for the stream, because it is
        possible that a stream from another table might have the same timestamp. However, the combination of
        the following three elements is guaranteed to be unique:
        
the AWS customer ID.
the table name.
        the StreamLabel.
        
TableDescription.Builder latestStreamArn(String latestStreamArn)
The Amazon Resource Name (ARN) that uniquely identifies the latest stream for this table.
latestStreamArn - The Amazon Resource Name (ARN) that uniquely identifies the latest stream for this table.TableDescription.Builder restoreSummary(RestoreSummary restoreSummary)
Contains details for the restore.
restoreSummary - Contains details for the restore.default TableDescription.Builder restoreSummary(Consumer<RestoreSummary.Builder> restoreSummary)
Contains details for the restore.
This is a convenience that creates an instance of theRestoreSummary.Builder avoiding the need to
 create one manually via RestoreSummary.builder().
 When the Consumer completes, SdkBuilder.build() is called immediately and its
 result is passed to restoreSummary(RestoreSummary).restoreSummary - a consumer that will call methods on RestoreSummary.BuilderrestoreSummary(RestoreSummary)TableDescription.Builder sseDescription(SSEDescription sseDescription)
The description of the server-side encryption status on the specified table.
sseDescription - The description of the server-side encryption status on the specified table.default TableDescription.Builder sseDescription(Consumer<SSEDescription.Builder> sseDescription)
The description of the server-side encryption status on the specified table.
This is a convenience that creates an instance of theSSEDescription.Builder avoiding the need to
 create one manually via SSEDescription.builder().
 When the Consumer completes, SdkBuilder.build() is called immediately and its
 result is passed to sseDescription(SSEDescription).sseDescription - a consumer that will call methods on SSEDescription.BuildersseDescription(SSEDescription)Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.