C# Class Amazon.DynamoDBv2.Model.DescribeTableRequest

Container for the parameters to the DescribeTable operation. Returns information about the table, including the current status of the table, when it was created, the primary key schema, and any indexes on the table.

If you issue a DescribeTable request immediately after a CreateTable request, DynamoDB might return a ResourceNotFoundException. This is because DescribeTable uses an eventually consistent query, and the metadata for your table might not be available at that moment. Wait for a few seconds, and then try the DescribeTable request again.

Inheritance: AmazonDynamoDBRequest
Show file Open project: aws/aws-sdk-net Class Usage Examples

Public Methods

Method Description
DescribeTableRequest ( ) : System

Empty constructor used to set properties independently even when a simple constructor is available

DescribeTableRequest ( string tableName ) : System

Instantiates DescribeTableRequest with the parameterized properties

Private Methods

Method Description
IsSetTableName ( ) : bool

Method Details

DescribeTableRequest() public method

Empty constructor used to set properties independently even when a simple constructor is available
public DescribeTableRequest ( ) : System
return System

DescribeTableRequest() public method

Instantiates DescribeTableRequest with the parameterized properties
public DescribeTableRequest ( string tableName ) : System
tableName string The name of the table to describe.
return System