Uses of Class
com.amazonaws.services.dynamodbv2.model.TableDescription

Packages that use TableDescription
com.amazonaws.services.dynamodbv2.model Classes modeling the various types represented by AmazonDynamoDBv2. 
 

Uses of TableDescription in com.amazonaws.services.dynamodbv2.model
 

Methods in com.amazonaws.services.dynamodbv2.model that return TableDescription
 TableDescription DescribeTableResult.getTable()
          Represents the properties of a table.
 TableDescription UpdateTableResult.getTableDescription()
          Represents the properties of a table.
 TableDescription DeleteTableResult.getTableDescription()
          Represents the properties of a table.
 TableDescription CreateTableResult.getTableDescription()
          Represents the properties of a table.
 TableDescription TableDescription.withAttributeDefinitions(AttributeDefinition... attributeDefinitions)
          An array of AttributeDefinition objects.
 TableDescription TableDescription.withAttributeDefinitions(Collection<AttributeDefinition> attributeDefinitions)
          An array of AttributeDefinition objects.
 TableDescription TableDescription.withCreationDateTime(Date creationDateTime)
          The date and time when the table was created, in UNIX epoch time format.
 TableDescription TableDescription.withGlobalSecondaryIndexes(Collection<GlobalSecondaryIndexDescription> globalSecondaryIndexes)
          The global secondary indexes, if any, on the table.
 TableDescription TableDescription.withGlobalSecondaryIndexes(GlobalSecondaryIndexDescription... globalSecondaryIndexes)
          The global secondary indexes, if any, on the table.
 TableDescription TableDescription.withItemCount(Long itemCount)
          The number of items in the specified table.
 TableDescription TableDescription.withKeySchema(Collection<KeySchemaElement> keySchema)
          The primary key structure for the table.
 TableDescription TableDescription.withKeySchema(KeySchemaElement... keySchema)
          The primary key structure for the table.
 TableDescription TableDescription.withLocalSecondaryIndexes(Collection<LocalSecondaryIndexDescription> localSecondaryIndexes)
          Represents one or more local secondary indexes on the table.
 TableDescription TableDescription.withLocalSecondaryIndexes(LocalSecondaryIndexDescription... localSecondaryIndexes)
          Represents one or more local secondary indexes on the table.
 TableDescription TableDescription.withProvisionedThroughput(ProvisionedThroughputDescription provisionedThroughput)
          The provisioned throughput settings for the table, consisting of read and write capacity units, along with data about increases and decreases.
 TableDescription TableDescription.withTableName(String tableName)
          The name of the table.
 TableDescription TableDescription.withTableSizeBytes(Long tableSizeBytes)
          The total size of the specified table, in bytes.
 TableDescription TableDescription.withTableStatus(String tableStatus)
          The current state of the table:
 TableDescription TableDescription.withTableStatus(TableStatus tableStatus)
          The current state of the table:
 

Methods in com.amazonaws.services.dynamodbv2.model with parameters of type TableDescription
 void DescribeTableResult.setTable(TableDescription table)
          Represents the properties of a table.
 void UpdateTableResult.setTableDescription(TableDescription tableDescription)
          Represents the properties of a table.
 void DeleteTableResult.setTableDescription(TableDescription tableDescription)
          Represents the properties of a table.
 void CreateTableResult.setTableDescription(TableDescription tableDescription)
          Represents the properties of a table.
 DescribeTableResult DescribeTableResult.withTable(TableDescription table)
          Represents the properties of a table.
 UpdateTableResult UpdateTableResult.withTableDescription(TableDescription tableDescription)
          Represents the properties of a table.
 DeleteTableResult DeleteTableResult.withTableDescription(TableDescription tableDescription)
          Represents the properties of a table.
 CreateTableResult CreateTableResult.withTableDescription(TableDescription tableDescription)
          Represents the properties of a table.
 



Copyright © 2016. All rights reserved.