public class ListTablesResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Represents the output of a ListTables operation.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
lastEvaluatedTableName
The name of the last table in the current page of results.
|
private java.util.List<java.lang.String> |
tableNames
The names of the tables associated with the current account at the
current endpoint.
|
Constructor and Description |
---|
ListTablesResult() |
Modifier and Type | Method and Description |
---|---|
ListTablesResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getLastEvaluatedTableName()
The name of the last table in the current page of results.
|
java.util.List<java.lang.String> |
getTableNames()
The names of the tables associated with the current account at the
current endpoint.
|
int |
hashCode() |
void |
setLastEvaluatedTableName(java.lang.String lastEvaluatedTableName)
The name of the last table in the current page of results.
|
void |
setTableNames(java.util.Collection<java.lang.String> tableNames)
The names of the tables associated with the current account at the
current endpoint.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ListTablesResult |
withLastEvaluatedTableName(java.lang.String lastEvaluatedTableName)
The name of the last table in the current page of results.
|
ListTablesResult |
withTableNames(java.util.Collection<java.lang.String> tableNames)
The names of the tables associated with the current account at the
current endpoint.
|
ListTablesResult |
withTableNames(java.lang.String... tableNames)
The names of the tables associated with the current account at the
current endpoint.
|
private java.util.List<java.lang.String> tableNames
The names of the tables associated with the current account at the current endpoint. The maximum size of this array is 100.
If LastEvaluatedTableName also appears in the output, you can use this value as the ExclusiveStartTableName parameter in a subsequent ListTables request and obtain the next page of results.
private java.lang.String lastEvaluatedTableName
The name of the last table in the current page of results. Use this value as the ExclusiveStartTableName in a new request to obtain the next page of results, until all the table names are returned.
If you do not receive a LastEvaluatedTableName value in the response, this means that there are no more table names to be retrieved.
public java.util.List<java.lang.String> getTableNames()
The names of the tables associated with the current account at the current endpoint. The maximum size of this array is 100.
If LastEvaluatedTableName also appears in the output, you can use this value as the ExclusiveStartTableName parameter in a subsequent ListTables request and obtain the next page of results.
If LastEvaluatedTableName also appears in the output, you can use this value as the ExclusiveStartTableName parameter in a subsequent ListTables request and obtain the next page of results.
public void setTableNames(java.util.Collection<java.lang.String> tableNames)
The names of the tables associated with the current account at the current endpoint. The maximum size of this array is 100.
If LastEvaluatedTableName also appears in the output, you can use this value as the ExclusiveStartTableName parameter in a subsequent ListTables request and obtain the next page of results.
tableNames
- The names of the tables associated with the current account at the
current endpoint. The maximum size of this array is 100.
If LastEvaluatedTableName also appears in the output, you can use this value as the ExclusiveStartTableName parameter in a subsequent ListTables request and obtain the next page of results.
public ListTablesResult withTableNames(java.lang.String... tableNames)
The names of the tables associated with the current account at the current endpoint. The maximum size of this array is 100.
If LastEvaluatedTableName also appears in the output, you can use this value as the ExclusiveStartTableName parameter in a subsequent ListTables request and obtain the next page of results.
NOTE: This method appends the values to the existing list (if
any). Use setTableNames(java.util.Collection)
or
withTableNames(java.util.Collection)
if you want to override the
existing values.
tableNames
- The names of the tables associated with the current account at the
current endpoint. The maximum size of this array is 100.
If LastEvaluatedTableName also appears in the output, you can use this value as the ExclusiveStartTableName parameter in a subsequent ListTables request and obtain the next page of results.
public ListTablesResult withTableNames(java.util.Collection<java.lang.String> tableNames)
The names of the tables associated with the current account at the current endpoint. The maximum size of this array is 100.
If LastEvaluatedTableName also appears in the output, you can use this value as the ExclusiveStartTableName parameter in a subsequent ListTables request and obtain the next page of results.
tableNames
- The names of the tables associated with the current account at the
current endpoint. The maximum size of this array is 100.
If LastEvaluatedTableName also appears in the output, you can use this value as the ExclusiveStartTableName parameter in a subsequent ListTables request and obtain the next page of results.
public void setLastEvaluatedTableName(java.lang.String lastEvaluatedTableName)
The name of the last table in the current page of results. Use this value as the ExclusiveStartTableName in a new request to obtain the next page of results, until all the table names are returned.
If you do not receive a LastEvaluatedTableName value in the response, this means that there are no more table names to be retrieved.
lastEvaluatedTableName
- The name of the last table in the current page of results. Use
this value as the ExclusiveStartTableName in a new request
to obtain the next page of results, until all the table names are
returned.
If you do not receive a LastEvaluatedTableName value in the response, this means that there are no more table names to be retrieved.
public java.lang.String getLastEvaluatedTableName()
The name of the last table in the current page of results. Use this value as the ExclusiveStartTableName in a new request to obtain the next page of results, until all the table names are returned.
If you do not receive a LastEvaluatedTableName value in the response, this means that there are no more table names to be retrieved.
If you do not receive a LastEvaluatedTableName value in the response, this means that there are no more table names to be retrieved.
public ListTablesResult withLastEvaluatedTableName(java.lang.String lastEvaluatedTableName)
The name of the last table in the current page of results. Use this value as the ExclusiveStartTableName in a new request to obtain the next page of results, until all the table names are returned.
If you do not receive a LastEvaluatedTableName value in the response, this means that there are no more table names to be retrieved.
lastEvaluatedTableName
- The name of the last table in the current page of results. Use
this value as the ExclusiveStartTableName in a new request
to obtain the next page of results, until all the table names are
returned.
If you do not receive a LastEvaluatedTableName value in the response, this means that there are no more table names to be retrieved.
public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public ListTablesResult clone()
clone
in class java.lang.Object