/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.dynamodbv2.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** *
* Represents the input of a CreateTable
operation.
*
* An array of attributes that describe the key schema for the table and indexes. *
*/ private java.util.List* The name of the table to create. *
*/ private String tableName; /** *
* Specifies the attributes that make up the primary key for a table or an index. The attributes in
* KeySchema
must also be defined in the AttributeDefinitions
array. For more information,
* see Data Model in
* the Amazon DynamoDB Developer Guide.
*
* Each KeySchemaElement
in the array is composed of:
*
* AttributeName
- The name of this key attribute.
*
* KeyType
- The role that the key attribute will assume:
*
* 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 * the 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 a simple primary key (partition key), you must provide exactly one element with a KeyType
of
* HASH
.
*
* For a composite primary key (partition key and sort key), you must provide exactly two elements, in this order:
* The first element must have a KeyType
of HASH
, and the second element must have a
* KeyType
of RANGE
.
*
* For more information, see Working with Tables in the Amazon DynamoDB Developer Guide. *
*/ private java.util.List* One or more local secondary indexes (the maximum is 5) to be created on the table. Each index is scoped to a * given partition key value. There is a 10 GB size limit per partition key value; otherwise, the size of a local * secondary index is unconstrained. *
** Each local secondary index in the array includes the following: *
*
* IndexName
- The name of the local secondary index. Must be unique only for this table.
*
* KeySchema
- Specifies the key schema for the local secondary index. 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 is 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 100. If you project the same attribute into two different indexes, this
* counts as two distinct attributes when determining the total.
*
* One or more global secondary indexes (the maximum is 20) to be created on the table. Each global secondary index * in the array includes the following: *
*
* IndexName
- The name of the global secondary index. Must be unique only for this table.
*
* KeySchema
- Specifies the key schema for the global secondary index.
*
* 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 is 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 100. 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.
*
* Controls how you are charged for read and write throughput and how you manage capacity. This setting can be * changed later. *
*
* PROVISIONED
- We recommend using PROVISIONED
for predictable workloads.
* PROVISIONED
sets the billing mode to Provisioned Mode.
*
* PAY_PER_REQUEST
- We recommend using PAY_PER_REQUEST
for unpredictable workloads.
* PAY_PER_REQUEST
sets the billing mode to On-Demand Mode.
*
* Represents the provisioned throughput settings for a specified table or index. The settings can be modified using
* the UpdateTable
operation.
*
* If you set BillingMode as PROVISIONED
, you must specify this property. If you set BillingMode as
* PAY_PER_REQUEST
, you cannot specify this property.
*
* For current minimum and maximum provisioned throughput values, see Service, Account, and Table * Quotas in the Amazon DynamoDB Developer Guide. *
*/ private ProvisionedThroughput provisionedThroughput; /** ** The settings for DynamoDB Streams on the table. These settings consist of: *
*
* StreamEnabled
- Indicates whether DynamoDB Streams is to be enabled (true) or disabled (false).
*
* StreamViewType
- When an item in the table is modified, StreamViewType
determines what
* information is written to the table's stream. Valid values for StreamViewType
are:
*
* KEYS_ONLY
- Only the key attributes of the modified item are written to the stream.
*
* NEW_IMAGE
- The entire item, as it appears after it was modified, is written to the stream.
*
* OLD_IMAGE
- The entire item, as it appeared before it was modified, is written to the stream.
*
* NEW_AND_OLD_IMAGES
- Both the new and the old item images of the item are written to the stream.
*
* Represents the settings used to enable server-side encryption. *
*/ private SSESpecification sSESpecification; /** ** A list of key-value pairs to label the table. For more information, see Tagging for DynamoDB. *
*/ private java.util.List
* The table class of the new table. Valid values are STANDARD
and
* STANDARD_INFREQUENT_ACCESS
.
*
* Indicates whether deletion protection is to be enabled (true) or disabled (false) on the table. *
*/ private Boolean deletionProtectionEnabled; /** * Default constructor for CreateTableRequest object. Callers should use the setter or fluent setter (with...) * methods to initialize the object after creating it. */ public CreateTableRequest() { } /** * Constructs a new CreateTableRequest object. Callers should use the setter or fluent setter (with...) methods to * initialize any additional object members. * * @param tableName * The name of the table to create. * @param keySchema * Specifies the attributes that make up the primary key for a table or an index. The attributes in *KeySchema
must also be defined in the AttributeDefinitions
array. For more
* information, see Data Model in
* the Amazon DynamoDB Developer Guide.
*
* Each KeySchemaElement
in the array is composed of:
*
* AttributeName
- The name of this key attribute.
*
* KeyType
- The role that the key attribute will assume:
*
* 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 the 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 a simple primary key (partition key), you must provide exactly one element with a KeyType
* of HASH
.
*
* For a composite primary key (partition key and sort key), you must provide exactly two elements, in this
* order: The first element must have a KeyType
of HASH
, and the second element
* must have a KeyType
of RANGE
.
*
* For more information, see Working with Tables in the Amazon DynamoDB Developer Guide.
*/
public CreateTableRequest(String tableName, java.util.ListKeySchema
must also be defined in the AttributeDefinitions
array. For more
* information, see Data Model in
* the Amazon DynamoDB Developer Guide.
* Each KeySchemaElement
in the array is composed of:
*
* AttributeName
- The name of this key attribute.
*
* KeyType
- The role that the key attribute will assume:
*
* 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 the 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 a simple primary key (partition key), you must provide exactly one element with a KeyType
* of HASH
.
*
* For a composite primary key (partition key and sort key), you must provide exactly two elements, in this
* order: The first element must have a KeyType
of HASH
, and the second element
* must have a KeyType
of RANGE
.
*
* For more information, see Working with Tables in the Amazon DynamoDB Developer Guide.
* @param provisionedThroughput
* Represents the provisioned throughput settings for a specified table or index. The settings can be
* modified using the UpdateTable
operation.
*
* If you set BillingMode as PROVISIONED
, you must specify this property. If you set BillingMode
* as PAY_PER_REQUEST
, you cannot specify this property.
*
* For current minimum and maximum provisioned throughput values, see Service, Account, and
* Table Quotas in the Amazon DynamoDB Developer Guide.
*/
public CreateTableRequest(java.util.List
* An array of attributes that describe the key schema for the table and indexes.
*
* An array of attributes that describe the key schema for the table and indexes.
*
* An array of attributes that describe the key schema for the table and indexes.
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setAttributeDefinitions(java.util.Collection)} or {@link #withAttributeDefinitions(java.util.Collection)}
* if you want to override the existing values.
*
* An array of attributes that describe the key schema for the table and indexes.
*
* The name of the table to create.
*
* The name of the table to create.
*
* The name of the table to create.
*
* Specifies the attributes that make up the primary key for a table or an index. The attributes in
*
* Each
*
*
*
*
* The partition key of an item is also known as its hash attribute. The term "hash attribute" derives from
* the 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 a simple primary key (partition key), you must provide exactly one element with a
* For a composite primary key (partition key and sort key), you must provide exactly two elements, in this order:
* The first element must have a
* For more information, see Working with Tables in the Amazon DynamoDB Developer Guide.
* KeySchema
must also be defined in the AttributeDefinitions
array. For more information,
* see Data Model in
* the Amazon DynamoDB Developer Guide.
* KeySchemaElement
in the array is composed of:
*
*
* AttributeName
- The name of this key attribute.
* KeyType
- The role that the key attribute will assume:
*
*
* HASH
- partition key
* RANGE
- sort key
* KeyType
of
* HASH
.
* KeyType
of HASH
, and the second element must have a
* KeyType
of RANGE
.
* KeySchema
must also be defined in the AttributeDefinitions
array. For more
* information, see Data Model in
* the Amazon DynamoDB Developer Guide.
* Each KeySchemaElement
in the array is composed of:
*
* AttributeName
- The name of this key attribute.
*
* KeyType
- The role that the key attribute will assume:
*
* 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 the 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 a simple primary key (partition key), you must provide exactly one element with a
* KeyType
of HASH
.
*
* For a composite primary key (partition key and sort key), you must provide exactly two elements, in this
* order: The first element must have a KeyType
of HASH
, and the second element
* must have a KeyType
of RANGE
.
*
* For more information, see Working with Tables in the Amazon DynamoDB Developer Guide.
*/
public java.util.List
* Specifies the attributes that make up the primary key for a table or an index. The attributes in
*
* Each
*
*
*
*
* The partition key of an item is also known as its hash attribute. The term "hash attribute" derives from
* the 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 a simple primary key (partition key), you must provide exactly one element with a
* For a composite primary key (partition key and sort key), you must provide exactly two elements, in this order:
* The first element must have a
* For more information, see Working with Tables in the Amazon DynamoDB Developer Guide.
* KeySchema
must also be defined in the AttributeDefinitions
array. For more information,
* see Data Model in
* the Amazon DynamoDB Developer Guide.
* KeySchemaElement
in the array is composed of:
*
*
* AttributeName
- The name of this key attribute.
* KeyType
- The role that the key attribute will assume:
*
*
* HASH
- partition key
* RANGE
- sort key
* KeyType
of
* HASH
.
* KeyType
of HASH
, and the second element must have a
* KeyType
of RANGE
.
* KeySchema
must also be defined in the AttributeDefinitions
array. For more
* information, see Data Model in
* the Amazon DynamoDB Developer Guide.
* Each KeySchemaElement
in the array is composed of:
*
* AttributeName
- The name of this key attribute.
*
* KeyType
- The role that the key attribute will assume:
*
* 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 the 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 a simple primary key (partition key), you must provide exactly one element with a KeyType
* of HASH
.
*
* For a composite primary key (partition key and sort key), you must provide exactly two elements, in this
* order: The first element must have a KeyType
of HASH
, and the second element
* must have a KeyType
of RANGE
.
*
* For more information, see Working with Tables in the Amazon DynamoDB Developer Guide.
*/
public void setKeySchema(java.util.Collection
* Specifies the attributes that make up the primary key for a table or an index. The attributes in
*
* Each
*
*
*
*
* The partition key of an item is also known as its hash attribute. The term "hash attribute" derives from
* the 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 a simple primary key (partition key), you must provide exactly one element with a
* For a composite primary key (partition key and sort key), you must provide exactly two elements, in this order:
* The first element must have a
* For more information, see Working with Tables in the Amazon DynamoDB Developer Guide.
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setKeySchema(java.util.Collection)} or {@link #withKeySchema(java.util.Collection)} if you want to
* override the existing values.
* KeySchema
must also be defined in the AttributeDefinitions
array. For more information,
* see Data Model in
* the Amazon DynamoDB Developer Guide.
* KeySchemaElement
in the array is composed of:
*
*
* AttributeName
- The name of this key attribute.
* KeyType
- The role that the key attribute will assume:
*
*
* HASH
- partition key
* RANGE
- sort key
* KeyType
of
* HASH
.
* KeyType
of HASH
, and the second element must have a
* KeyType
of RANGE
.
* KeySchema
must also be defined in the AttributeDefinitions
array. For more
* information, see Data Model in
* the Amazon DynamoDB Developer Guide.
* Each KeySchemaElement
in the array is composed of:
*
* AttributeName
- The name of this key attribute.
*
* KeyType
- The role that the key attribute will assume:
*
* 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 the 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 a simple primary key (partition key), you must provide exactly one element with a KeyType
* of HASH
.
*
* For a composite primary key (partition key and sort key), you must provide exactly two elements, in this
* order: The first element must have a KeyType
of HASH
, and the second element
* must have a KeyType
of RANGE
.
*
* For more information, see Working with Tables in the Amazon DynamoDB Developer Guide.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateTableRequest withKeySchema(KeySchemaElement... keySchema) {
if (this.keySchema == null) {
setKeySchema(new java.util.ArrayList
* Specifies the attributes that make up the primary key for a table or an index. The attributes in
*
* Each
*
*
*
*
* The partition key of an item is also known as its hash attribute. The term "hash attribute" derives from
* the 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 a simple primary key (partition key), you must provide exactly one element with a
* For a composite primary key (partition key and sort key), you must provide exactly two elements, in this order:
* The first element must have a
* For more information, see Working with Tables in the Amazon DynamoDB Developer Guide.
* KeySchema
must also be defined in the AttributeDefinitions
array. For more information,
* see Data Model in
* the Amazon DynamoDB Developer Guide.
* KeySchemaElement
in the array is composed of:
*
*
* AttributeName
- The name of this key attribute.
* KeyType
- The role that the key attribute will assume:
*
*
* HASH
- partition key
* RANGE
- sort key
* KeyType
of
* HASH
.
* KeyType
of HASH
, and the second element must have a
* KeyType
of RANGE
.
* KeySchema
must also be defined in the AttributeDefinitions
array. For more
* information, see Data Model in
* the Amazon DynamoDB Developer Guide.
* Each KeySchemaElement
in the array is composed of:
*
* AttributeName
- The name of this key attribute.
*
* KeyType
- The role that the key attribute will assume:
*
* 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 the 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 a simple primary key (partition key), you must provide exactly one element with a KeyType
* of HASH
.
*
* For a composite primary key (partition key and sort key), you must provide exactly two elements, in this
* order: The first element must have a KeyType
of HASH
, and the second element
* must have a KeyType
of RANGE
.
*
* For more information, see Working with Tables in the Amazon DynamoDB Developer Guide.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateTableRequest withKeySchema(java.util.Collection
* One or more local secondary indexes (the maximum is 5) to be created on the table. Each index is scoped to a
* given partition key value. There is a 10 GB size limit per partition key value; otherwise, the size of a local
* secondary index is unconstrained.
*
* Each local secondary index in the array includes the following:
*
*
*
*
*
*
*
*
*
*
*
* @return One or more local secondary indexes (the maximum is 5) to be created on the table. Each index is scoped
* to a given partition key value. There is a 10 GB size limit per partition key value; otherwise, the size
* of a local secondary index is unconstrained.IndexName
- The name of the local secondary index. Must be unique only for this table.
* KeySchema
- Specifies the key schema for the local secondary index. 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 is 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 100. If you project the same attribute into two different indexes, this
* counts as two distinct attributes when determining the total.
*
* Each local secondary index in the array includes the following: *
*
* IndexName
- The name of the local secondary index. Must be unique only for this table.
*
* KeySchema
- Specifies the key schema for the local secondary index. 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 is 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 100. If you project the same attribute into two different
* indexes, this counts as two distinct attributes when determining the total.
*
* One or more local secondary indexes (the maximum is 5) to be created on the table. Each index is scoped to a * given partition key value. There is a 10 GB size limit per partition key value; otherwise, the size of a local * secondary index is unconstrained. *
** Each local secondary index in the array includes the following: *
*
* IndexName
- The name of the local secondary index. Must be unique only for this table.
*
* KeySchema
- Specifies the key schema for the local secondary index. 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 is 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 100. If you project the same attribute into two different indexes, this
* counts as two distinct attributes when determining the total.
*
* Each local secondary index in the array includes the following: *
*
* IndexName
- The name of the local secondary index. Must be unique only for this table.
*
* KeySchema
- Specifies the key schema for the local secondary index. 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 is 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 100. If you project the same attribute into two different
* indexes, this counts as two distinct attributes when determining the total.
*
* One or more local secondary indexes (the maximum is 5) to be created on the table. Each index is scoped to a * given partition key value. There is a 10 GB size limit per partition key value; otherwise, the size of a local * secondary index is unconstrained. *
** Each local secondary index in the array includes the following: *
*
* IndexName
- The name of the local secondary index. Must be unique only for this table.
*
* KeySchema
- Specifies the key schema for the local secondary index. 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 is 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 100. If you project the same attribute into two different indexes, this
* counts as two distinct attributes when determining the total.
*
* NOTE: This method appends the values to the existing list (if any). Use * {@link #setLocalSecondaryIndexes(java.util.Collection)} or * {@link #withLocalSecondaryIndexes(java.util.Collection)} if you want to override the existing values. *
* * @param localSecondaryIndexes * One or more local secondary indexes (the maximum is 5) to be created on the table. Each index is scoped to * a given partition key value. There is a 10 GB size limit per partition key value; otherwise, the size of a * local secondary index is unconstrained. ** Each local secondary index in the array includes the following: *
*
* IndexName
- The name of the local secondary index. Must be unique only for this table.
*
* KeySchema
- Specifies the key schema for the local secondary index. 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 is 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 100. If you project the same attribute into two different
* indexes, this counts as two distinct attributes when determining the total.
*
* One or more local secondary indexes (the maximum is 5) to be created on the table. Each index is scoped to a * given partition key value. There is a 10 GB size limit per partition key value; otherwise, the size of a local * secondary index is unconstrained. *
** Each local secondary index in the array includes the following: *
*
* IndexName
- The name of the local secondary index. Must be unique only for this table.
*
* KeySchema
- Specifies the key schema for the local secondary index. 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 is 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 100. If you project the same attribute into two different indexes, this
* counts as two distinct attributes when determining the total.
*
* Each local secondary index in the array includes the following: *
*
* IndexName
- The name of the local secondary index. Must be unique only for this table.
*
* KeySchema
- Specifies the key schema for the local secondary index. 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 is 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 100. If you project the same attribute into two different
* indexes, this counts as two distinct attributes when determining the total.
*
* One or more global secondary indexes (the maximum is 20) to be created on the table. Each global secondary index * in the array includes the following: *
*
* IndexName
- The name of the global secondary index. Must be unique only for this table.
*
* KeySchema
- Specifies the key schema for the global secondary index.
*
* 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 is 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 100. 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.
*
* IndexName
- The name of the global secondary index. Must be unique only for this table.
*
* KeySchema
- Specifies the key schema for the global secondary index.
*
* 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 is 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 100. 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.
*
* One or more global secondary indexes (the maximum is 20) to be created on the table. Each global secondary index * in the array includes the following: *
*
* IndexName
- The name of the global secondary index. Must be unique only for this table.
*
* KeySchema
- Specifies the key schema for the global secondary index.
*
* 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 is 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 100. 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.
*
* IndexName
- The name of the global secondary index. Must be unique only for this table.
*
* KeySchema
- Specifies the key schema for the global secondary index.
*
* 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 is 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 100. 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.
*
* One or more global secondary indexes (the maximum is 20) to be created on the table. Each global secondary index * in the array includes the following: *
*
* IndexName
- The name of the global secondary index. Must be unique only for this table.
*
* KeySchema
- Specifies the key schema for the global secondary index.
*
* 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 is 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 100. 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.
*
* NOTE: This method appends the values to the existing list (if any). Use * {@link #setGlobalSecondaryIndexes(java.util.Collection)} or * {@link #withGlobalSecondaryIndexes(java.util.Collection)} if you want to override the existing values. *
* * @param globalSecondaryIndexes * One or more global secondary indexes (the maximum is 20) to be created on the table. Each global secondary * index in the array includes the following: *
* IndexName
- The name of the global secondary index. Must be unique only for this table.
*
* KeySchema
- Specifies the key schema for the global secondary index.
*
* 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 is 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 100. 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.
*
* One or more global secondary indexes (the maximum is 20) to be created on the table. Each global secondary index * in the array includes the following: *
*
* IndexName
- The name of the global secondary index. Must be unique only for this table.
*
* KeySchema
- Specifies the key schema for the global secondary index.
*
* 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 is 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 100. 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.
*
* IndexName
- The name of the global secondary index. Must be unique only for this table.
*
* KeySchema
- Specifies the key schema for the global secondary index.
*
* 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 is 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 100. 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.
*
* Controls how you are charged for read and write throughput and how you manage capacity. This setting can be * changed later. *
*
* PROVISIONED
- We recommend using PROVISIONED
for predictable workloads.
* PROVISIONED
sets the billing mode to Provisioned Mode.
*
* PAY_PER_REQUEST
- We recommend using PAY_PER_REQUEST
for unpredictable workloads.
* PAY_PER_REQUEST
sets the billing mode to On-Demand Mode.
*
* PROVISIONED
- We recommend using PROVISIONED
for predictable workloads.
* PROVISIONED
sets the billing mode to Provisioned Mode.
*
* PAY_PER_REQUEST
- We recommend using PAY_PER_REQUEST
for unpredictable
* workloads. PAY_PER_REQUEST
sets the billing mode to On-Demand Mode.
*
* Controls how you are charged for read and write throughput and how you manage capacity. This setting can be * changed later. *
*
* PROVISIONED
- We recommend using PROVISIONED
for predictable workloads.
* PROVISIONED
sets the billing mode to Provisioned Mode.
*
* PAY_PER_REQUEST
- We recommend using PAY_PER_REQUEST
for unpredictable workloads.
* PAY_PER_REQUEST
sets the billing mode to On-Demand Mode.
*
* PROVISIONED
- We recommend using PROVISIONED
for predictable workloads.
* PROVISIONED
sets the billing mode to Provisioned Mode.
*
* PAY_PER_REQUEST
- We recommend using PAY_PER_REQUEST
for unpredictable
* workloads. PAY_PER_REQUEST
sets the billing mode to On-Demand Mode.
*
* Controls how you are charged for read and write throughput and how you manage capacity. This setting can be * changed later. *
*
* PROVISIONED
- We recommend using PROVISIONED
for predictable workloads.
* PROVISIONED
sets the billing mode to Provisioned Mode.
*
* PAY_PER_REQUEST
- We recommend using PAY_PER_REQUEST
for unpredictable workloads.
* PAY_PER_REQUEST
sets the billing mode to On-Demand Mode.
*
* PROVISIONED
- We recommend using PROVISIONED
for predictable workloads.
* PROVISIONED
sets the billing mode to Provisioned Mode.
*
* PAY_PER_REQUEST
- We recommend using PAY_PER_REQUEST
for unpredictable
* workloads. PAY_PER_REQUEST
sets the billing mode to On-Demand Mode.
*
* Controls how you are charged for read and write throughput and how you manage capacity. This setting can be * changed later. *
*
* PROVISIONED
- We recommend using PROVISIONED
for predictable workloads.
* PROVISIONED
sets the billing mode to Provisioned Mode.
*
* PAY_PER_REQUEST
- We recommend using PAY_PER_REQUEST
for unpredictable workloads.
* PAY_PER_REQUEST
sets the billing mode to On-Demand Mode.
*
* PROVISIONED
- We recommend using PROVISIONED
for predictable workloads.
* PROVISIONED
sets the billing mode to Provisioned Mode.
*
* PAY_PER_REQUEST
- We recommend using PAY_PER_REQUEST
for unpredictable
* workloads. PAY_PER_REQUEST
sets the billing mode to On-Demand Mode.
*
* Represents the provisioned throughput settings for a specified table or index. The settings can be modified using
* the UpdateTable
operation.
*
* If you set BillingMode as PROVISIONED
, you must specify this property. If you set BillingMode as
* PAY_PER_REQUEST
, you cannot specify this property.
*
* For current minimum and maximum provisioned throughput values, see Service, Account, and Table * Quotas in the Amazon DynamoDB Developer Guide. *
* * @param provisionedThroughput * Represents the provisioned throughput settings for a specified table or index. The settings can be * modified using theUpdateTable
operation.
*
* If you set BillingMode as PROVISIONED
, you must specify this property. If you set BillingMode
* as PAY_PER_REQUEST
, you cannot specify this property.
*
* For current minimum and maximum provisioned throughput values, see Service, Account, and * Table Quotas in the Amazon DynamoDB Developer Guide. */ public void setProvisionedThroughput(ProvisionedThroughput provisionedThroughput) { this.provisionedThroughput = provisionedThroughput; } /** *
* Represents the provisioned throughput settings for a specified table or index. The settings can be modified using
* the UpdateTable
operation.
*
* If you set BillingMode as PROVISIONED
, you must specify this property. If you set BillingMode as
* PAY_PER_REQUEST
, you cannot specify this property.
*
* For current minimum and maximum provisioned throughput values, see Service, Account, and Table * Quotas in the Amazon DynamoDB Developer Guide. *
* * @return Represents the provisioned throughput settings for a specified table or index. The settings can be * modified using theUpdateTable
operation.
*
* If you set BillingMode as PROVISIONED
, you must specify this property. If you set
* BillingMode as PAY_PER_REQUEST
, you cannot specify this property.
*
* For current minimum and maximum provisioned throughput values, see Service, Account, and * Table Quotas in the Amazon DynamoDB Developer Guide. */ public ProvisionedThroughput getProvisionedThroughput() { return this.provisionedThroughput; } /** *
* Represents the provisioned throughput settings for a specified table or index. The settings can be modified using
* the UpdateTable
operation.
*
* If you set BillingMode as PROVISIONED
, you must specify this property. If you set BillingMode as
* PAY_PER_REQUEST
, you cannot specify this property.
*
* For current minimum and maximum provisioned throughput values, see Service, Account, and Table * Quotas in the Amazon DynamoDB Developer Guide. *
* * @param provisionedThroughput * Represents the provisioned throughput settings for a specified table or index. The settings can be * modified using theUpdateTable
operation.
*
* If you set BillingMode as PROVISIONED
, you must specify this property. If you set BillingMode
* as PAY_PER_REQUEST
, you cannot specify this property.
*
* For current minimum and maximum provisioned throughput values, see Service, Account, and * Table Quotas in the Amazon DynamoDB Developer Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateTableRequest withProvisionedThroughput(ProvisionedThroughput provisionedThroughput) { setProvisionedThroughput(provisionedThroughput); return this; } /** *
* The settings for DynamoDB Streams on the table. These settings consist of: *
*
* StreamEnabled
- Indicates whether DynamoDB Streams is to be enabled (true) or disabled (false).
*
* StreamViewType
- When an item in the table is modified, StreamViewType
determines what
* information is written to the table's stream. Valid values for StreamViewType
are:
*
* KEYS_ONLY
- Only the key attributes of the modified item are written to the stream.
*
* NEW_IMAGE
- The entire item, as it appears after it was modified, is written to the stream.
*
* OLD_IMAGE
- The entire item, as it appeared before it was modified, is written to the stream.
*
* NEW_AND_OLD_IMAGES
- Both the new and the old item images of the item are written to the stream.
*
* StreamEnabled
- Indicates whether DynamoDB Streams is to be enabled (true) or disabled
* (false).
*
* StreamViewType
- When an item in the table is modified, StreamViewType
* determines what information is written to the table's stream. Valid values for StreamViewType
* are:
*
* KEYS_ONLY
- Only the key attributes of the modified item are written to the stream.
*
* NEW_IMAGE
- The entire item, as it appears after it was modified, is written to the stream.
*
* OLD_IMAGE
- The entire item, as it appeared before it was modified, is written to the stream.
*
* NEW_AND_OLD_IMAGES
- Both the new and the old item images of the item are written to the
* stream.
*
* The settings for DynamoDB Streams on the table. These settings consist of: *
*
* StreamEnabled
- Indicates whether DynamoDB Streams is to be enabled (true) or disabled (false).
*
* StreamViewType
- When an item in the table is modified, StreamViewType
determines what
* information is written to the table's stream. Valid values for StreamViewType
are:
*
* KEYS_ONLY
- Only the key attributes of the modified item are written to the stream.
*
* NEW_IMAGE
- The entire item, as it appears after it was modified, is written to the stream.
*
* OLD_IMAGE
- The entire item, as it appeared before it was modified, is written to the stream.
*
* NEW_AND_OLD_IMAGES
- Both the new and the old item images of the item are written to the stream.
*
* StreamEnabled
- Indicates whether DynamoDB Streams is to be enabled (true) or disabled
* (false).
*
* StreamViewType
- When an item in the table is modified, StreamViewType
* determines what information is written to the table's stream. Valid values for
* StreamViewType
are:
*
* KEYS_ONLY
- Only the key attributes of the modified item are written to the stream.
*
* NEW_IMAGE
- The entire item, as it appears after it was modified, is written to the stream.
*
* OLD_IMAGE
- The entire item, as it appeared before it was modified, is written to the
* stream.
*
* NEW_AND_OLD_IMAGES
- Both the new and the old item images of the item are written to the
* stream.
*
* The settings for DynamoDB Streams on the table. These settings consist of: *
*
* StreamEnabled
- Indicates whether DynamoDB Streams is to be enabled (true) or disabled (false).
*
* StreamViewType
- When an item in the table is modified, StreamViewType
determines what
* information is written to the table's stream. Valid values for StreamViewType
are:
*
* KEYS_ONLY
- Only the key attributes of the modified item are written to the stream.
*
* NEW_IMAGE
- The entire item, as it appears after it was modified, is written to the stream.
*
* OLD_IMAGE
- The entire item, as it appeared before it was modified, is written to the stream.
*
* NEW_AND_OLD_IMAGES
- Both the new and the old item images of the item are written to the stream.
*
* StreamEnabled
- Indicates whether DynamoDB Streams is to be enabled (true) or disabled
* (false).
*
* StreamViewType
- When an item in the table is modified, StreamViewType
* determines what information is written to the table's stream. Valid values for StreamViewType
* are:
*
* KEYS_ONLY
- Only the key attributes of the modified item are written to the stream.
*
* NEW_IMAGE
- The entire item, as it appears after it was modified, is written to the stream.
*
* OLD_IMAGE
- The entire item, as it appeared before it was modified, is written to the stream.
*
* NEW_AND_OLD_IMAGES
- Both the new and the old item images of the item are written to the
* stream.
*
* Represents the settings used to enable server-side encryption. *
* * @param sSESpecification * Represents the settings used to enable server-side encryption. */ public void setSSESpecification(SSESpecification sSESpecification) { this.sSESpecification = sSESpecification; } /** ** Represents the settings used to enable server-side encryption. *
* * @return Represents the settings used to enable server-side encryption. */ public SSESpecification getSSESpecification() { return this.sSESpecification; } /** ** Represents the settings used to enable server-side encryption. *
* * @param sSESpecification * Represents the settings used to enable server-side encryption. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateTableRequest withSSESpecification(SSESpecification sSESpecification) { setSSESpecification(sSESpecification); return this; } /** ** A list of key-value pairs to label the table. For more information, see Tagging for DynamoDB. *
* * @return A list of key-value pairs to label the table. For more information, see Tagging for * DynamoDB. */ public java.util.List* A list of key-value pairs to label the table. For more information, see Tagging for DynamoDB. *
* * @param tags * A list of key-value pairs to label the table. For more information, see Tagging for * DynamoDB. */ public void setTags(java.util.Collection* A list of key-value pairs to label the table. For more information, see Tagging for DynamoDB. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. *
* * @param tags * A list of key-value pairs to label the table. For more information, see Tagging for * DynamoDB. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateTableRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new java.util.ArrayList* A list of key-value pairs to label the table. For more information, see Tagging for DynamoDB. *
* * @param tags * A list of key-value pairs to label the table. For more information, see Tagging for * DynamoDB. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateTableRequest withTags(java.util.Collection
* The table class of the new table. Valid values are STANDARD
and
* STANDARD_INFREQUENT_ACCESS
.
*
STANDARD
and
* STANDARD_INFREQUENT_ACCESS
.
* @see TableClass
*/
public void setTableClass(String tableClass) {
this.tableClass = tableClass;
}
/**
*
* The table class of the new table. Valid values are STANDARD
and
* STANDARD_INFREQUENT_ACCESS
.
*
STANDARD
and
* STANDARD_INFREQUENT_ACCESS
.
* @see TableClass
*/
public String getTableClass() {
return this.tableClass;
}
/**
*
* The table class of the new table. Valid values are STANDARD
and
* STANDARD_INFREQUENT_ACCESS
.
*
STANDARD
and
* STANDARD_INFREQUENT_ACCESS
.
* @return Returns a reference to this object so that method calls can be chained together.
* @see TableClass
*/
public CreateTableRequest withTableClass(String tableClass) {
setTableClass(tableClass);
return this;
}
/**
*
* The table class of the new table. Valid values are STANDARD
and
* STANDARD_INFREQUENT_ACCESS
.
*
STANDARD
and
* STANDARD_INFREQUENT_ACCESS
.
* @return Returns a reference to this object so that method calls can be chained together.
* @see TableClass
*/
public CreateTableRequest withTableClass(TableClass tableClass) {
this.tableClass = tableClass.toString();
return this;
}
/**
* * Indicates whether deletion protection is to be enabled (true) or disabled (false) on the table. *
* * @param deletionProtectionEnabled * Indicates whether deletion protection is to be enabled (true) or disabled (false) on the table. */ public void setDeletionProtectionEnabled(Boolean deletionProtectionEnabled) { this.deletionProtectionEnabled = deletionProtectionEnabled; } /** ** Indicates whether deletion protection is to be enabled (true) or disabled (false) on the table. *
* * @return Indicates whether deletion protection is to be enabled (true) or disabled (false) on the table. */ public Boolean getDeletionProtectionEnabled() { return this.deletionProtectionEnabled; } /** ** Indicates whether deletion protection is to be enabled (true) or disabled (false) on the table. *
* * @param deletionProtectionEnabled * Indicates whether deletion protection is to be enabled (true) or disabled (false) on the table. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateTableRequest withDeletionProtectionEnabled(Boolean deletionProtectionEnabled) { setDeletionProtectionEnabled(deletionProtectionEnabled); return this; } /** ** Indicates whether deletion protection is to be enabled (true) or disabled (false) on the table. *
* * @return Indicates whether deletion protection is to be enabled (true) or disabled (false) on the table. */ public Boolean isDeletionProtectionEnabled() { return this.deletionProtectionEnabled; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getAttributeDefinitions() != null) sb.append("AttributeDefinitions: ").append(getAttributeDefinitions()).append(","); if (getTableName() != null) sb.append("TableName: ").append(getTableName()).append(","); if (getKeySchema() != null) sb.append("KeySchema: ").append(getKeySchema()).append(","); if (getLocalSecondaryIndexes() != null) sb.append("LocalSecondaryIndexes: ").append(getLocalSecondaryIndexes()).append(","); if (getGlobalSecondaryIndexes() != null) sb.append("GlobalSecondaryIndexes: ").append(getGlobalSecondaryIndexes()).append(","); if (getBillingMode() != null) sb.append("BillingMode: ").append(getBillingMode()).append(","); if (getProvisionedThroughput() != null) sb.append("ProvisionedThroughput: ").append(getProvisionedThroughput()).append(","); if (getStreamSpecification() != null) sb.append("StreamSpecification: ").append(getStreamSpecification()).append(","); if (getSSESpecification() != null) sb.append("SSESpecification: ").append(getSSESpecification()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()).append(","); if (getTableClass() != null) sb.append("TableClass: ").append(getTableClass()).append(","); if (getDeletionProtectionEnabled() != null) sb.append("DeletionProtectionEnabled: ").append(getDeletionProtectionEnabled()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateTableRequest == false) return false; CreateTableRequest other = (CreateTableRequest) obj; if (other.getAttributeDefinitions() == null ^ this.getAttributeDefinitions() == null) return false; if (other.getAttributeDefinitions() != null && other.getAttributeDefinitions().equals(this.getAttributeDefinitions()) == false) return false; if (other.getTableName() == null ^ this.getTableName() == null) return false; if (other.getTableName() != null && other.getTableName().equals(this.getTableName()) == false) return false; if (other.getKeySchema() == null ^ this.getKeySchema() == null) return false; if (other.getKeySchema() != null && other.getKeySchema().equals(this.getKeySchema()) == false) return false; if (other.getLocalSecondaryIndexes() == null ^ this.getLocalSecondaryIndexes() == null) return false; if (other.getLocalSecondaryIndexes() != null && other.getLocalSecondaryIndexes().equals(this.getLocalSecondaryIndexes()) == false) return false; if (other.getGlobalSecondaryIndexes() == null ^ this.getGlobalSecondaryIndexes() == null) return false; if (other.getGlobalSecondaryIndexes() != null && other.getGlobalSecondaryIndexes().equals(this.getGlobalSecondaryIndexes()) == false) return false; if (other.getBillingMode() == null ^ this.getBillingMode() == null) return false; if (other.getBillingMode() != null && other.getBillingMode().equals(this.getBillingMode()) == false) return false; if (other.getProvisionedThroughput() == null ^ this.getProvisionedThroughput() == null) return false; if (other.getProvisionedThroughput() != null && other.getProvisionedThroughput().equals(this.getProvisionedThroughput()) == false) return false; if (other.getStreamSpecification() == null ^ this.getStreamSpecification() == null) return false; if (other.getStreamSpecification() != null && other.getStreamSpecification().equals(this.getStreamSpecification()) == false) return false; if (other.getSSESpecification() == null ^ this.getSSESpecification() == null) return false; if (other.getSSESpecification() != null && other.getSSESpecification().equals(this.getSSESpecification()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; if (other.getTableClass() == null ^ this.getTableClass() == null) return false; if (other.getTableClass() != null && other.getTableClass().equals(this.getTableClass()) == false) return false; if (other.getDeletionProtectionEnabled() == null ^ this.getDeletionProtectionEnabled() == null) return false; if (other.getDeletionProtectionEnabled() != null && other.getDeletionProtectionEnabled().equals(this.getDeletionProtectionEnabled()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAttributeDefinitions() == null) ? 0 : getAttributeDefinitions().hashCode()); hashCode = prime * hashCode + ((getTableName() == null) ? 0 : getTableName().hashCode()); hashCode = prime * hashCode + ((getKeySchema() == null) ? 0 : getKeySchema().hashCode()); hashCode = prime * hashCode + ((getLocalSecondaryIndexes() == null) ? 0 : getLocalSecondaryIndexes().hashCode()); hashCode = prime * hashCode + ((getGlobalSecondaryIndexes() == null) ? 0 : getGlobalSecondaryIndexes().hashCode()); hashCode = prime * hashCode + ((getBillingMode() == null) ? 0 : getBillingMode().hashCode()); hashCode = prime * hashCode + ((getProvisionedThroughput() == null) ? 0 : getProvisionedThroughput().hashCode()); hashCode = prime * hashCode + ((getStreamSpecification() == null) ? 0 : getStreamSpecification().hashCode()); hashCode = prime * hashCode + ((getSSESpecification() == null) ? 0 : getSSESpecification().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getTableClass() == null) ? 0 : getTableClass().hashCode()); hashCode = prime * hashCode + ((getDeletionProtectionEnabled() == null) ? 0 : getDeletionProtectionEnabled().hashCode()); return hashCode; } @Override public CreateTableRequest clone() { return (CreateTableRequest) super.clone(); } }