Table of Contents

Class DescribeTableRequest

Namespace
Amazon.DynamoDBv2.Model
Assembly
AWSSDK.DynamoDBv2.dll

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.

note

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.
public class DescribeTableRequest : AmazonDynamoDBRequest
Inheritance
DescribeTableRequest

Constructors

DescribeTableRequest()

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

public DescribeTableRequest()

DescribeTableRequest(string)

Instantiates DescribeTableRequest with the parameterized properties

public DescribeTableRequest(string tableName)

Parameters

tableName string

The name of the table to describe.

Properties

TableName

Gets and sets the property TableName.

The name of the table to describe.

public string TableName { get; set; }

Property Value

string