Class SourceTableDetails
- Namespace
- Amazon.DynamoDBv2.Model
- Assembly
- AWSSDK.DynamoDBv2.dll
Contains the details of the table when the backup was created.
public class SourceTableDetails
- Inheritance
-
SourceTableDetails
- Inherited Members
Constructors
SourceTableDetails()
public SourceTableDetails()
Properties
BillingMode
Gets and sets the property BillingMode.
Controls how you are charged for read and write throughput and how you manage capacity. This setting can be changed later.
- Sets the read/write capacity mode toPROVISIONED
. We recommend usingPROVISIONED
for predictable workloads.PROVISIONED
- Sets the read/write capacity mode toPAY_PER_REQUEST
. We recommend usingPAY_PER_REQUEST
for unpredictable workloads.PAY_PER_REQUEST
public BillingMode BillingMode { get; set; }
Property Value
ItemCount
Gets and sets the property ItemCount.
Number of items in the table. Note that this is an approximate value.
public long ItemCount { get; set; }
Property Value
KeySchema
Gets and sets the property KeySchema.
Schema of the table.
public List<KeySchemaElement> KeySchema { get; set; }
Property Value
ProvisionedThroughput
Gets and sets the property ProvisionedThroughput.
Read IOPs and Write IOPS on the table when the backup was created.
public ProvisionedThroughput ProvisionedThroughput { get; set; }
Property Value
TableArn
Gets and sets the property TableArn.
ARN of the table for which backup was created.
public string TableArn { get; set; }
Property Value
TableCreationDateTime
Gets and sets the property TableCreationDateTime.
Time when the source table was created.
public DateTime TableCreationDateTime { get; set; }
Property Value
TableId
Gets and sets the property TableId.
Unique identifier for the table for which the backup was created.
public string TableId { get; set; }
Property Value
TableName
Gets and sets the property TableName.
The name of the table for which the backup was created.
public string TableName { get; set; }
Property Value
TableSizeBytes
Gets and sets the property TableSizeBytes.
Size of the table in bytes. Note that this is an approximate value.
public long TableSizeBytes { get; set; }