com.amazonaws.services.dynamodbv2.model
Class DescribeTableRequest

java.lang.Object
  extended by com.amazonaws.AmazonWebServiceRequest
      extended by com.amazonaws.services.dynamodbv2.model.DescribeTableRequest
All Implemented Interfaces:
java.io.Serializable

public class DescribeTableRequest
extends AmazonWebServiceRequest
implements java.io.Serializable

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.

See Also:
AmazonDynamoDB.describeTable(DescribeTableRequest), Serialized Form

Constructor Summary
DescribeTableRequest()
          Default constructor for a new DescribeTableRequest object.
DescribeTableRequest(java.lang.String tableName)
          Constructs a new DescribeTableRequest object.
 
Method Summary
 boolean equals(java.lang.Object obj)
           
 java.lang.String getTableName()
          The name of the table to describe.
 int hashCode()
           
 void setTableName(java.lang.String tableName)
          The name of the table to describe.
 java.lang.String toString()
          Returns a string representation of this object; useful for testing and debugging.
 DescribeTableRequest withTableName(java.lang.String tableName)
          The name of the table to describe.
 
Methods inherited from class com.amazonaws.AmazonWebServiceRequest
copyPrivateRequestParameters, getDelegationToken, getRequestClientOptions, getRequestCredentials, getRequestMetricCollector, setDelegationToken, setRequestCredentials, setRequestMetricCollector, withRequestMetricCollector
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DescribeTableRequest

public DescribeTableRequest()
Default constructor for a new DescribeTableRequest object. Callers should use the setter or fluent setter (with...) methods to initialize this object after creating it.


DescribeTableRequest

public DescribeTableRequest(java.lang.String tableName)
Constructs a new DescribeTableRequest object. Callers should use the setter or fluent setter (with...) methods to initialize any additional object members.

Parameters:
tableName - The name of the table to describe.
Method Detail

getTableName

public java.lang.String getTableName()
The name of the table to describe.

Constraints:
Length: 3 - 255
Pattern: [a-zA-Z0-9_.-]+

Returns:
The name of the table to describe.

setTableName

public void setTableName(java.lang.String tableName)
The name of the table to describe.

Constraints:
Length: 3 - 255
Pattern: [a-zA-Z0-9_.-]+

Parameters:
tableName - The name of the table to describe.

withTableName

public DescribeTableRequest withTableName(java.lang.String tableName)
The name of the table to describe.

Returns a reference to this object so that method calls can be chained together.

Constraints:
Length: 3 - 255
Pattern: [a-zA-Z0-9_.-]+

Parameters:
tableName - The name of the table to describe.
Returns:
A reference to this updated object so that method calls can be chained together.

toString

public java.lang.String toString()
Returns a string representation of this object; useful for testing and debugging.

Overrides:
toString in class java.lang.Object
Returns:
A string representation of this object.
See Also:
Object.toString()

hashCode

public int hashCode()
Overrides:
hashCode in class java.lang.Object

equals

public boolean equals(java.lang.Object obj)
Overrides:
equals in class java.lang.Object


Copyright © 2010 Amazon Web Services, Inc. All Rights Reserved.