com.amazonaws.services.dynamodb.model.BatchWriteItemRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk Show documentation
/*
* Copyright 2010-2014 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.dynamodb.model;
import com.amazonaws.AmazonWebServiceRequest;
import java.io.Serializable;
/**
* Container for the parameters to the {@link com.amazonaws.services.dynamodb.AmazonDynamoDB#batchWriteItem(BatchWriteItemRequest) BatchWriteItem operation}.
*
* Allows to execute a batch of Put and/or Delete Requests for many tables in a single call. A total of 25 requests are allowed.
*
*
* There are no transaction guarantees provided by this API. It does not allow conditional puts nor does it support return values.
*
*
* @see com.amazonaws.services.dynamodb.AmazonDynamoDB#batchWriteItem(BatchWriteItemRequest)
*
* @deprecated Use {@link com.amazonaws.services.dynamodbv2.model.BatchWriteItemRequest} instead.
*/
@Deprecated
public class BatchWriteItemRequest extends AmazonWebServiceRequest implements Serializable {
/**
* A map of table name to list-of-write-requests. Used as input to the
* BatchWriteItem
API call
*
* Constraints:
* Length: 1 - 25
*/
private java.util.Map> requestItems;
/**
* A map of table name to list-of-write-requests. Used as input to the
* BatchWriteItem
API call
*
* Constraints:
* Length: 1 - 25
*
* @return A map of table name to list-of-write-requests. Used as input to the
* BatchWriteItem
API call
*/
public java.util.Map> getRequestItems() {
return requestItems;
}
/**
* A map of table name to list-of-write-requests. Used as input to the
* BatchWriteItem
API call
*
* Constraints:
* Length: 1 - 25
*
* @param requestItems A map of table name to list-of-write-requests. Used as input to the
* BatchWriteItem
API call
*/
public void setRequestItems(java.util.Map> requestItems) {
this.requestItems = requestItems;
}
/**
* A map of table name to list-of-write-requests. Used as input to the
* BatchWriteItem
API call
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Length: 1 - 25
*
* @param requestItems A map of table name to list-of-write-requests. Used as input to the
* BatchWriteItem
API call
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public BatchWriteItemRequest withRequestItems(java.util.Map> requestItems) {
setRequestItems(requestItems);
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 (getRequestItems() != null) sb.append("RequestItems: " + getRequestItems() + ", ");
sb.append("}");
return sb.toString();
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getRequestItems() == null) ? 0 : getRequestItems().hashCode());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (obj instanceof BatchWriteItemRequest == false) return false;
BatchWriteItemRequest other = (BatchWriteItemRequest)obj;
if (other.getRequestItems() == null ^ this.getRequestItems() == null) return false;
if (other.getRequestItems() != null && other.getRequestItems().equals(this.getRequestItems()) == false) return false;
return true;
}
}