Class DescribeTableResult
- java.lang.Object
-
- com.amazonaws.services.dynamodbv2.model.DescribeTableResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DescribeTableResult extends Object implements Serializable, Cloneable
Represents the output of a DescribeTable operation.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeTableResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeTableResult
clone()
boolean
equals(Object obj)
TableDescription
getTable()
int
hashCode()
void
setTable(TableDescription table)
String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeTableResult
withTable(TableDescription table)
-
-
-
Method Detail
-
setTable
public void setTable(TableDescription table)
- Parameters:
table
-
-
getTable
public TableDescription getTable()
- Returns:
-
withTable
public DescribeTableResult withTable(TableDescription table)
- Parameters:
table
-- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public DescribeTableResult clone()
-
-