com.amazonaws.services.dynamodbv2.model.ExecuteStatementRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-dynamodb Show documentation
/*
* Copyright 2016-2021 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 javax.annotation.Generated;
import com.amazonaws.AmazonWebServiceRequest;
/**
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ExecuteStatementRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The PartiQL statement representing the operation to run.
*
*/
private String statement;
/**
*
* The parameters for the PartiQL statement, if any.
*
*/
private java.util.List parameters;
/**
*
* The consistency of a read operation. If set to true
, then a strongly consistent read is used;
* otherwise, an eventually consistent read is used.
*
*/
private Boolean consistentRead;
/**
*
* Set this value to get remaining results, if NextToken
was returned in the statement response.
*
*/
private String nextToken;
/**
*
* The PartiQL statement representing the operation to run.
*
*
* @param statement
* The PartiQL statement representing the operation to run.
*/
public void setStatement(String statement) {
this.statement = statement;
}
/**
*
* The PartiQL statement representing the operation to run.
*
*
* @return The PartiQL statement representing the operation to run.
*/
public String getStatement() {
return this.statement;
}
/**
*
* The PartiQL statement representing the operation to run.
*
*
* @param statement
* The PartiQL statement representing the operation to run.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ExecuteStatementRequest withStatement(String statement) {
setStatement(statement);
return this;
}
/**
*
* The parameters for the PartiQL statement, if any.
*
*
* @return The parameters for the PartiQL statement, if any.
*/
public java.util.List getParameters() {
return parameters;
}
/**
*
* The parameters for the PartiQL statement, if any.
*
*
* @param parameters
* The parameters for the PartiQL statement, if any.
*/
public void setParameters(java.util.Collection parameters) {
if (parameters == null) {
this.parameters = null;
return;
}
this.parameters = new java.util.ArrayList(parameters);
}
/**
*
* The parameters for the PartiQL statement, if any.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setParameters(java.util.Collection)} or {@link #withParameters(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param parameters
* The parameters for the PartiQL statement, if any.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ExecuteStatementRequest withParameters(AttributeValue... parameters) {
if (this.parameters == null) {
setParameters(new java.util.ArrayList(parameters.length));
}
for (AttributeValue ele : parameters) {
this.parameters.add(ele);
}
return this;
}
/**
*
* The parameters for the PartiQL statement, if any.
*
*
* @param parameters
* The parameters for the PartiQL statement, if any.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ExecuteStatementRequest withParameters(java.util.Collection parameters) {
setParameters(parameters);
return this;
}
/**
*
* The consistency of a read operation. If set to true
, then a strongly consistent read is used;
* otherwise, an eventually consistent read is used.
*
*
* @param consistentRead
* The consistency of a read operation. If set to true
, then a strongly consistent read is used;
* otherwise, an eventually consistent read is used.
*/
public void setConsistentRead(Boolean consistentRead) {
this.consistentRead = consistentRead;
}
/**
*
* The consistency of a read operation. If set to true
, then a strongly consistent read is used;
* otherwise, an eventually consistent read is used.
*
*
* @return The consistency of a read operation. If set to true
, then a strongly consistent read is
* used; otherwise, an eventually consistent read is used.
*/
public Boolean getConsistentRead() {
return this.consistentRead;
}
/**
*
* The consistency of a read operation. If set to true
, then a strongly consistent read is used;
* otherwise, an eventually consistent read is used.
*
*
* @param consistentRead
* The consistency of a read operation. If set to true
, then a strongly consistent read is used;
* otherwise, an eventually consistent read is used.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ExecuteStatementRequest withConsistentRead(Boolean consistentRead) {
setConsistentRead(consistentRead);
return this;
}
/**
*
* The consistency of a read operation. If set to true
, then a strongly consistent read is used;
* otherwise, an eventually consistent read is used.
*
*
* @return The consistency of a read operation. If set to true
, then a strongly consistent read is
* used; otherwise, an eventually consistent read is used.
*/
public Boolean isConsistentRead() {
return this.consistentRead;
}
/**
*
* Set this value to get remaining results, if NextToken
was returned in the statement response.
*
*
* @param nextToken
* Set this value to get remaining results, if NextToken
was returned in the statement response.
*/
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
/**
*
* Set this value to get remaining results, if NextToken
was returned in the statement response.
*
*
* @return Set this value to get remaining results, if NextToken
was returned in the statement
* response.
*/
public String getNextToken() {
return this.nextToken;
}
/**
*
* Set this value to get remaining results, if NextToken
was returned in the statement response.
*
*
* @param nextToken
* Set this value to get remaining results, if NextToken
was returned in the statement response.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ExecuteStatementRequest withNextToken(String nextToken) {
setNextToken(nextToken);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getStatement() != null)
sb.append("Statement: ").append(getStatement()).append(",");
if (getParameters() != null)
sb.append("Parameters: ").append(getParameters()).append(",");
if (getConsistentRead() != null)
sb.append("ConsistentRead: ").append(getConsistentRead()).append(",");
if (getNextToken() != null)
sb.append("NextToken: ").append(getNextToken());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ExecuteStatementRequest == false)
return false;
ExecuteStatementRequest other = (ExecuteStatementRequest) obj;
if (other.getStatement() == null ^ this.getStatement() == null)
return false;
if (other.getStatement() != null && other.getStatement().equals(this.getStatement()) == false)
return false;
if (other.getParameters() == null ^ this.getParameters() == null)
return false;
if (other.getParameters() != null && other.getParameters().equals(this.getParameters()) == false)
return false;
if (other.getConsistentRead() == null ^ this.getConsistentRead() == null)
return false;
if (other.getConsistentRead() != null && other.getConsistentRead().equals(this.getConsistentRead()) == false)
return false;
if (other.getNextToken() == null ^ this.getNextToken() == null)
return false;
if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getStatement() == null) ? 0 : getStatement().hashCode());
hashCode = prime * hashCode + ((getParameters() == null) ? 0 : getParameters().hashCode());
hashCode = prime * hashCode + ((getConsistentRead() == null) ? 0 : getConsistentRead().hashCode());
hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode());
return hashCode;
}
@Override
public ExecuteStatementRequest clone() {
return (ExecuteStatementRequest) super.clone();
}
}