Class ListTablesRequest

java.lang.Object
com.amazonaws.AmazonWebServiceRequest
com.amazonaws.services.dynamodbv2.model.ListTablesRequest
All Implemented Interfaces:
ReadLimitInfo, Serializable, Cloneable

public class ListTablesRequest extends AmazonWebServiceRequest implements Serializable, Cloneable

Represents the input of a ListTables operation.

See Also:
  • Constructor Details

    • ListTablesRequest

      public ListTablesRequest()
      Default constructor for ListTablesRequest object. Callers should use the setter or fluent setter (with...) methods to initialize the object after creating it.
    • ListTablesRequest

      public ListTablesRequest(String exclusiveStartTableName)
      Constructs a new ListTablesRequest object. Callers should use the setter or fluent setter (with...) methods to initialize any additional object members.
      Parameters:
      exclusiveStartTableName - The first table name that this operation will evaluate. Use the value that was returned for LastEvaluatedTableName in a previous operation, so that you can obtain the next page of results.
    • ListTablesRequest

      public ListTablesRequest(String exclusiveStartTableName, Integer limit)
      Constructs a new ListTablesRequest object. Callers should use the setter or fluent setter (with...) methods to initialize any additional object members.
      Parameters:
      exclusiveStartTableName - The first table name that this operation will evaluate. Use the value that was returned for LastEvaluatedTableName in a previous operation, so that you can obtain the next page of results.
      limit - A maximum number of table names to return. If this parameter is not specified, the limit is 100.
  • Method Details

    • setExclusiveStartTableName

      public void setExclusiveStartTableName(String exclusiveStartTableName)

      The first table name that this operation will evaluate. Use the value that was returned for LastEvaluatedTableName in a previous operation, so that you can obtain the next page of results.

      Parameters:
      exclusiveStartTableName - The first table name that this operation will evaluate. Use the value that was returned for LastEvaluatedTableName in a previous operation, so that you can obtain the next page of results.
    • getExclusiveStartTableName

      public String getExclusiveStartTableName()

      The first table name that this operation will evaluate. Use the value that was returned for LastEvaluatedTableName in a previous operation, so that you can obtain the next page of results.

      Returns:
      The first table name that this operation will evaluate. Use the value that was returned for LastEvaluatedTableName in a previous operation, so that you can obtain the next page of results.
    • withExclusiveStartTableName

      public ListTablesRequest withExclusiveStartTableName(String exclusiveStartTableName)

      The first table name that this operation will evaluate. Use the value that was returned for LastEvaluatedTableName in a previous operation, so that you can obtain the next page of results.

      Parameters:
      exclusiveStartTableName - The first table name that this operation will evaluate. Use the value that was returned for LastEvaluatedTableName in a previous operation, so that you can obtain the next page of results.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • setLimit

      public void setLimit(Integer limit)

      A maximum number of table names to return. If this parameter is not specified, the limit is 100.

      Parameters:
      limit - A maximum number of table names to return. If this parameter is not specified, the limit is 100.
    • getLimit

      public Integer getLimit()

      A maximum number of table names to return. If this parameter is not specified, the limit is 100.

      Returns:
      A maximum number of table names to return. If this parameter is not specified, the limit is 100.
    • withLimit

      public ListTablesRequest withLimit(Integer limit)

      A maximum number of table names to return. If this parameter is not specified, the limit is 100.

      Parameters:
      limit - A maximum number of table names to return. If this parameter is not specified, the limit is 100.
      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 class Object
      Returns:
      A string representation of this object.
      See Also:
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • clone

      public ListTablesRequest clone()
      Description copied from class: AmazonWebServiceRequest
      Creates a shallow clone of this request. Explicitly does not clone the deep structure of the request object.
      Overrides:
      clone in class AmazonWebServiceRequest
      See Also: