/* * Copyright 2018-2023 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.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* A PartiQL batch statement request. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class BatchStatementRequest implements Serializable, Cloneable, StructuredPojo { /** ** A valid PartiQL statement. *
*/ private String statement; /** ** The parameters associated with a PartiQL statement in the batch request. *
*/ private java.util.List* The read consistency of the PartiQL batch request. *
*/ private Boolean consistentRead; /** ** An optional parameter that returns the item attributes for a PartiQL batch request operation that failed a * condition check. *
** There is no additional cost associated with requesting a return value aside from the small network and processing * overhead of receiving a larger response. No read capacity units are consumed. *
*/ private String returnValuesOnConditionCheckFailure; /** ** A valid PartiQL statement. *
* * @param statement * A valid PartiQL statement. */ public void setStatement(String statement) { this.statement = statement; } /** ** A valid PartiQL statement. *
* * @return A valid PartiQL statement. */ public String getStatement() { return this.statement; } /** ** A valid PartiQL statement. *
* * @param statement * A valid PartiQL statement. * @return Returns a reference to this object so that method calls can be chained together. */ public BatchStatementRequest withStatement(String statement) { setStatement(statement); return this; } /** ** The parameters associated with a PartiQL statement in the batch request. *
* * @return The parameters associated with a PartiQL statement in the batch request. */ public java.util.List* The parameters associated with a PartiQL statement in the batch request. *
* * @param parameters * The parameters associated with a PartiQL statement in the batch request. */ public void setParameters(java.util.Collection* The parameters associated with a PartiQL statement in the batch request. *
** 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 associated with a PartiQL statement in the batch request. * @return Returns a reference to this object so that method calls can be chained together. */ public BatchStatementRequest withParameters(AttributeValue... parameters) { if (this.parameters == null) { setParameters(new java.util.ArrayList* The parameters associated with a PartiQL statement in the batch request. *
* * @param parameters * The parameters associated with a PartiQL statement in the batch request. * @return Returns a reference to this object so that method calls can be chained together. */ public BatchStatementRequest withParameters(java.util.Collection* The read consistency of the PartiQL batch request. *
* * @param consistentRead * The read consistency of the PartiQL batch request. */ public void setConsistentRead(Boolean consistentRead) { this.consistentRead = consistentRead; } /** ** The read consistency of the PartiQL batch request. *
* * @return The read consistency of the PartiQL batch request. */ public Boolean getConsistentRead() { return this.consistentRead; } /** ** The read consistency of the PartiQL batch request. *
* * @param consistentRead * The read consistency of the PartiQL batch request. * @return Returns a reference to this object so that method calls can be chained together. */ public BatchStatementRequest withConsistentRead(Boolean consistentRead) { setConsistentRead(consistentRead); return this; } /** ** The read consistency of the PartiQL batch request. *
* * @return The read consistency of the PartiQL batch request. */ public Boolean isConsistentRead() { return this.consistentRead; } /** ** An optional parameter that returns the item attributes for a PartiQL batch request operation that failed a * condition check. *
** There is no additional cost associated with requesting a return value aside from the small network and processing * overhead of receiving a larger response. No read capacity units are consumed. *
* * @param returnValuesOnConditionCheckFailure * An optional parameter that returns the item attributes for a PartiQL batch request operation that failed a * condition check. ** There is no additional cost associated with requesting a return value aside from the small network and * processing overhead of receiving a larger response. No read capacity units are consumed. * @see ReturnValuesOnConditionCheckFailure */ public void setReturnValuesOnConditionCheckFailure(String returnValuesOnConditionCheckFailure) { this.returnValuesOnConditionCheckFailure = returnValuesOnConditionCheckFailure; } /** *
* An optional parameter that returns the item attributes for a PartiQL batch request operation that failed a * condition check. *
** There is no additional cost associated with requesting a return value aside from the small network and processing * overhead of receiving a larger response. No read capacity units are consumed. *
* * @return An optional parameter that returns the item attributes for a PartiQL batch request operation that failed * a condition check. ** There is no additional cost associated with requesting a return value aside from the small network and * processing overhead of receiving a larger response. No read capacity units are consumed. * @see ReturnValuesOnConditionCheckFailure */ public String getReturnValuesOnConditionCheckFailure() { return this.returnValuesOnConditionCheckFailure; } /** *
* An optional parameter that returns the item attributes for a PartiQL batch request operation that failed a * condition check. *
** There is no additional cost associated with requesting a return value aside from the small network and processing * overhead of receiving a larger response. No read capacity units are consumed. *
* * @param returnValuesOnConditionCheckFailure * An optional parameter that returns the item attributes for a PartiQL batch request operation that failed a * condition check. ** There is no additional cost associated with requesting a return value aside from the small network and * processing overhead of receiving a larger response. No read capacity units are consumed. * @return Returns a reference to this object so that method calls can be chained together. * @see ReturnValuesOnConditionCheckFailure */ public BatchStatementRequest withReturnValuesOnConditionCheckFailure(String returnValuesOnConditionCheckFailure) { setReturnValuesOnConditionCheckFailure(returnValuesOnConditionCheckFailure); return this; } /** *
* An optional parameter that returns the item attributes for a PartiQL batch request operation that failed a * condition check. *
** There is no additional cost associated with requesting a return value aside from the small network and processing * overhead of receiving a larger response. No read capacity units are consumed. *
* * @param returnValuesOnConditionCheckFailure * An optional parameter that returns the item attributes for a PartiQL batch request operation that failed a * condition check. ** There is no additional cost associated with requesting a return value aside from the small network and * processing overhead of receiving a larger response. No read capacity units are consumed. * @return Returns a reference to this object so that method calls can be chained together. * @see ReturnValuesOnConditionCheckFailure */ public BatchStatementRequest withReturnValuesOnConditionCheckFailure(ReturnValuesOnConditionCheckFailure returnValuesOnConditionCheckFailure) { this.returnValuesOnConditionCheckFailure = returnValuesOnConditionCheckFailure.toString(); 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 (getReturnValuesOnConditionCheckFailure() != null) sb.append("ReturnValuesOnConditionCheckFailure: ").append(getReturnValuesOnConditionCheckFailure()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof BatchStatementRequest == false) return false; BatchStatementRequest other = (BatchStatementRequest) 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.getReturnValuesOnConditionCheckFailure() == null ^ this.getReturnValuesOnConditionCheckFailure() == null) return false; if (other.getReturnValuesOnConditionCheckFailure() != null && other.getReturnValuesOnConditionCheckFailure().equals(this.getReturnValuesOnConditionCheckFailure()) == 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 + ((getReturnValuesOnConditionCheckFailure() == null) ? 0 : getReturnValuesOnConditionCheckFailure().hashCode()); return hashCode; } @Override public BatchStatementRequest clone() { try { return (BatchStatementRequest) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.dynamodbv2.model.transform.BatchStatementRequestMarshaller.getInstance().marshall(this, protocolMarshaller); } }