Class TableCreationParameters
- Namespace
- Amazon.DynamoDBv2.Model
- Assembly
- AWSSDK.DynamoDBv2.dll
The parameters for the table created as part of the import operation.
public class TableCreationParameters
- Inheritance
-
TableCreationParameters
- Inherited Members
Constructors
TableCreationParameters()
public TableCreationParameters()
Properties
AttributeDefinitions
Gets and sets the property AttributeDefinitions.
The attributes of the table created as part of the import operation.
public List<AttributeDefinition> AttributeDefinitions { get; set; }
Property Value
BillingMode
Gets and sets the property BillingMode.
The billing mode for provisioning the table created as part of the import operation.
public BillingMode BillingMode { get; set; }
Property Value
GlobalSecondaryIndexes
Gets and sets the property GlobalSecondaryIndexes.
The Global Secondary Indexes (GSI) of the table to be created as part of the import operation.
public List<GlobalSecondaryIndex> GlobalSecondaryIndexes { get; set; }
Property Value
KeySchema
Gets and sets the property KeySchema.
The primary key and option sort key of the table created as part of the import operation.
public List<KeySchemaElement> KeySchema { get; set; }
Property Value
ProvisionedThroughput
Gets and sets the property ProvisionedThroughput.
public ProvisionedThroughput ProvisionedThroughput { get; set; }
Property Value
SSESpecification
Gets and sets the property SSESpecification.
public SSESpecification SSESpecification { get; set; }
Property Value
TableName
Gets and sets the property TableName.
The name of the table created as part of the import operation.
public string TableName { get; set; }