public class ListTablesResult extends Object implements Serializable
Represents the output of a ListTables operation.
Constructor and Description |
---|
ListTablesResult() |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj) |
String |
getLastEvaluatedTableName()
The name of the last table in the current list, only if some tables
for the account and endpoint have not been returned.
|
List<String> |
getTableNames()
The names of the tables associated with the current account at the
current endpoint.
|
int |
hashCode() |
void |
setLastEvaluatedTableName(String lastEvaluatedTableName)
The name of the last table in the current list, only if some tables
for the account and endpoint have not been returned.
|
void |
setTableNames(Collection<String> tableNames)
The names of the tables associated with the current account at the
current endpoint.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ListTablesResult |
withLastEvaluatedTableName(String lastEvaluatedTableName)
The name of the last table in the current list, only if some tables
for the account and endpoint have not been returned.
|
ListTablesResult |
withTableNames(Collection<String> tableNames)
The names of the tables associated with the current account at the
current endpoint.
|
ListTablesResult |
withTableNames(String... tableNames)
The names of the tables associated with the current account at the
current endpoint.
|
public List<String> getTableNames()
public void setTableNames(Collection<String> tableNames)
tableNames
- The names of the tables associated with the current account at the
current endpoint.public ListTablesResult withTableNames(String... tableNames)
Returns a reference to this object so that method calls can be chained together.
tableNames
- The names of the tables associated with the current account at the
current endpoint.public ListTablesResult withTableNames(Collection<String> tableNames)
Returns a reference to this object so that method calls can be chained together.
tableNames
- The names of the tables associated with the current account at the
current endpoint.public String getLastEvaluatedTableName()
Constraints:
Length: 3 - 255
Pattern: [a-zA-Z0-9_.-]+
public void setLastEvaluatedTableName(String lastEvaluatedTableName)
Constraints:
Length: 3 - 255
Pattern: [a-zA-Z0-9_.-]+
lastEvaluatedTableName
- The name of the last table in the current list, only if some tables
for the account and endpoint have not been returned. This value does
not exist in a response if all table names are already returned. Use
this value as the ExclusiveStartTableName in a new request to
continue the list until all the table names are returned.public ListTablesResult withLastEvaluatedTableName(String lastEvaluatedTableName)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 3 - 255
Pattern: [a-zA-Z0-9_.-]+
lastEvaluatedTableName
- The name of the last table in the current list, only if some tables
for the account and endpoint have not been returned. This value does
not exist in a response if all table names are already returned. Use
this value as the ExclusiveStartTableName in a new request to
continue the list until all the table names are returned.public String toString()
toString
in class Object
Object.toString()
Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.