com.amazonaws.services.dynamodbv2.model.ListGlobalTablesRequest Maven / Gradle / Ivy
/*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package com.amazonaws.services.dynamodbv2.model;
import java.io.Serializable;
import com.amazonaws.AmazonWebServiceRequest;
/**
*
* Lists all global tables that have a replica in the specified region.
*
*/
public class ListGlobalTablesRequest extends AmazonWebServiceRequest implements Serializable {
/**
*
* The first global table name that this operation will evaluate.
*
*
* Constraints:
* Length: 3 - 255
* Pattern: [a-zA-Z0-9_.-]+
*/
private String exclusiveStartGlobalTableName;
/**
*
* The maximum number of table names to return.
*
*
* Constraints:
* Range: 1 -
*/
private Integer limit;
/**
*
* Lists the global tables in a specific region.
*
*/
private String regionName;
/**
*
* The first global table name that this operation will evaluate.
*
*
* Constraints:
* Length: 3 - 255
* Pattern: [a-zA-Z0-9_.-]+
*
* @return
* The first global table name that this operation will evaluate.
*
*/
public String getExclusiveStartGlobalTableName() {
return exclusiveStartGlobalTableName;
}
/**
*
* The first global table name that this operation will evaluate.
*
*
* Constraints:
* Length: 3 - 255
* Pattern: [a-zA-Z0-9_.-]+
*
* @param exclusiveStartGlobalTableName
* The first global table name that this operation will evaluate.
*
*/
public void setExclusiveStartGlobalTableName(String exclusiveStartGlobalTableName) {
this.exclusiveStartGlobalTableName = exclusiveStartGlobalTableName;
}
/**
*
* The first global table name that this operation will evaluate.
*
*
* Returns a reference to this object so that method calls can be chained
* together.
*
* Constraints:
* Length: 3 - 255
* Pattern: [a-zA-Z0-9_.-]+
*
* @param exclusiveStartGlobalTableName
* The first global table name that this operation will evaluate.
*
* @return A reference to this updated object so that method calls can be
* chained together.
*/
public ListGlobalTablesRequest withExclusiveStartGlobalTableName(
String exclusiveStartGlobalTableName) {
this.exclusiveStartGlobalTableName = exclusiveStartGlobalTableName;
return this;
}
/**
*
* The maximum number of table names to return.
*
*
* Constraints:
* Range: 1 -
*
* @return
* The maximum number of table names to return.
*
*/
public Integer getLimit() {
return limit;
}
/**
*
* The maximum number of table names to return.
*
*
* Constraints:
* Range: 1 -
*
* @param limit
* The maximum number of table names to return.
*
*/
public void setLimit(Integer limit) {
this.limit = limit;
}
/**
*
* The maximum number of table names to return.
*
*
* Returns a reference to this object so that method calls can be chained
* together.
*
* Constraints:
* Range: 1 -
*
* @param limit
* The maximum number of table names to return.
*
* @return A reference to this updated object so that method calls can be
* chained together.
*/
public ListGlobalTablesRequest withLimit(Integer limit) {
this.limit = limit;
return this;
}
/**
*
* Lists the global tables in a specific region.
*
*
* @return
* Lists the global tables in a specific region.
*
*/
public String getRegionName() {
return regionName;
}
/**
*
* Lists the global tables in a specific region.
*
*
* @param regionName
* Lists the global tables in a specific region.
*
*/
public void setRegionName(String regionName) {
this.regionName = regionName;
}
/**
*
* Lists the global tables in a specific region.
*
*
* Returns a reference to this object so that method calls can be chained
* together.
*
* @param regionName
* Lists the global tables in a specific region.
*
* @return A reference to this updated object so that method calls can be
* chained together.
*/
public ListGlobalTablesRequest withRegionName(String regionName) {
this.regionName = regionName;
return this;
}
/**
* Returns a string representation of this object; useful for testing and
* debugging.
*
* @return A string representation of this object.
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getExclusiveStartGlobalTableName() != null)
sb.append("ExclusiveStartGlobalTableName: " + getExclusiveStartGlobalTableName() + ",");
if (getLimit() != null)
sb.append("Limit: " + getLimit() + ",");
if (getRegionName() != null)
sb.append("RegionName: " + getRegionName());
sb.append("}");
return sb.toString();
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime
* hashCode
+ ((getExclusiveStartGlobalTableName() == null) ? 0
: getExclusiveStartGlobalTableName().hashCode());
hashCode = prime * hashCode + ((getLimit() == null) ? 0 : getLimit().hashCode());
hashCode = prime * hashCode + ((getRegionName() == null) ? 0 : getRegionName().hashCode());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ListGlobalTablesRequest == false)
return false;
ListGlobalTablesRequest other = (ListGlobalTablesRequest) obj;
if (other.getExclusiveStartGlobalTableName() == null
^ this.getExclusiveStartGlobalTableName() == null)
return false;
if (other.getExclusiveStartGlobalTableName() != null
&& other.getExclusiveStartGlobalTableName().equals(
this.getExclusiveStartGlobalTableName()) == false)
return false;
if (other.getLimit() == null ^ this.getLimit() == null)
return false;
if (other.getLimit() != null && other.getLimit().equals(this.getLimit()) == false)
return false;
if (other.getRegionName() == null ^ this.getRegionName() == null)
return false;
if (other.getRegionName() != null
&& other.getRegionName().equals(this.getRegionName()) == false)
return false;
return true;
}
}