com.amazonaws.services.dynamodbv2.model.ItemCollectionMetrics Maven / Gradle / Ivy
Show all versions of aws-java-sdk-dynamodb Show documentation
/*
* Copyright 2013-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 javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* Information about item collections, if any, that were affected by the operation. ItemCollectionMetrics
* is only returned if the request asked for it. If the table does not have any local secondary indexes, this
* information is not returned in the response.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ItemCollectionMetrics implements Serializable, Cloneable, StructuredPojo {
/**
*
* The partition key value of the item collection. This value is the same as the partition key value of the item.
*
*/
private java.util.Map itemCollectionKey;
/**
*
* An estimate of item collection size, in gigabytes. This value is a two-element array containing a lower bound and
* an upper bound for the estimate. The estimate includes the size of all the items in the table, plus the size of
* all attributes projected into all of the local secondary indexes on that table. Use this estimate to measure
* whether a local secondary index is approaching its size limit.
*
*
* The estimate is subject to change over time; therefore, do not rely on the precision or accuracy of the estimate.
*
*/
private java.util.List sizeEstimateRangeGB;
/**
*
* The partition key value of the item collection. This value is the same as the partition key value of the item.
*
*
* @return The partition key value of the item collection. This value is the same as the partition key value of the
* item.
*/
public java.util.Map getItemCollectionKey() {
return itemCollectionKey;
}
/**
*
* The partition key value of the item collection. This value is the same as the partition key value of the item.
*
*
* @param itemCollectionKey
* The partition key value of the item collection. This value is the same as the partition key value of the
* item.
*/
public void setItemCollectionKey(java.util.Map itemCollectionKey) {
this.itemCollectionKey = itemCollectionKey;
}
/**
*
* The partition key value of the item collection. This value is the same as the partition key value of the item.
*
*
* @param itemCollectionKey
* The partition key value of the item collection. This value is the same as the partition key value of the
* item.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ItemCollectionMetrics withItemCollectionKey(java.util.Map itemCollectionKey) {
setItemCollectionKey(itemCollectionKey);
return this;
}
public ItemCollectionMetrics addItemCollectionKeyEntry(String key, AttributeValue value) {
if (null == this.itemCollectionKey) {
this.itemCollectionKey = new java.util.HashMap();
}
if (this.itemCollectionKey.containsKey(key))
throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided.");
this.itemCollectionKey.put(key, value);
return this;
}
/**
* Removes all the entries added into ItemCollectionKey.
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ItemCollectionMetrics clearItemCollectionKeyEntries() {
this.itemCollectionKey = null;
return this;
}
/**
*
* An estimate of item collection size, in gigabytes. This value is a two-element array containing a lower bound and
* an upper bound for the estimate. The estimate includes the size of all the items in the table, plus the size of
* all attributes projected into all of the local secondary indexes on that table. Use this estimate to measure
* whether a local secondary index is approaching its size limit.
*
*
* The estimate is subject to change over time; therefore, do not rely on the precision or accuracy of the estimate.
*
*
* @return An estimate of item collection size, in gigabytes. This value is a two-element array containing a lower
* bound and an upper bound for the estimate. The estimate includes the size of all the items in the table,
* plus the size of all attributes projected into all of the local secondary indexes on that table. Use this
* estimate to measure whether a local secondary index is approaching its size limit.
*
* The estimate is subject to change over time; therefore, do not rely on the precision or accuracy of the
* estimate.
*/
public java.util.List getSizeEstimateRangeGB() {
return sizeEstimateRangeGB;
}
/**
*
* An estimate of item collection size, in gigabytes. This value is a two-element array containing a lower bound and
* an upper bound for the estimate. The estimate includes the size of all the items in the table, plus the size of
* all attributes projected into all of the local secondary indexes on that table. Use this estimate to measure
* whether a local secondary index is approaching its size limit.
*
*
* The estimate is subject to change over time; therefore, do not rely on the precision or accuracy of the estimate.
*
*
* @param sizeEstimateRangeGB
* An estimate of item collection size, in gigabytes. This value is a two-element array containing a lower
* bound and an upper bound for the estimate. The estimate includes the size of all the items in the table,
* plus the size of all attributes projected into all of the local secondary indexes on that table. Use this
* estimate to measure whether a local secondary index is approaching its size limit.
*
* The estimate is subject to change over time; therefore, do not rely on the precision or accuracy of the
* estimate.
*/
public void setSizeEstimateRangeGB(java.util.Collection sizeEstimateRangeGB) {
if (sizeEstimateRangeGB == null) {
this.sizeEstimateRangeGB = null;
return;
}
this.sizeEstimateRangeGB = new java.util.ArrayList(sizeEstimateRangeGB);
}
/**
*
* An estimate of item collection size, in gigabytes. This value is a two-element array containing a lower bound and
* an upper bound for the estimate. The estimate includes the size of all the items in the table, plus the size of
* all attributes projected into all of the local secondary indexes on that table. Use this estimate to measure
* whether a local secondary index is approaching its size limit.
*
*
* The estimate is subject to change over time; therefore, do not rely on the precision or accuracy of the estimate.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setSizeEstimateRangeGB(java.util.Collection)} or {@link #withSizeEstimateRangeGB(java.util.Collection)}
* if you want to override the existing values.
*
*
* @param sizeEstimateRangeGB
* An estimate of item collection size, in gigabytes. This value is a two-element array containing a lower
* bound and an upper bound for the estimate. The estimate includes the size of all the items in the table,
* plus the size of all attributes projected into all of the local secondary indexes on that table. Use this
* estimate to measure whether a local secondary index is approaching its size limit.
*
* The estimate is subject to change over time; therefore, do not rely on the precision or accuracy of the
* estimate.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ItemCollectionMetrics withSizeEstimateRangeGB(Double... sizeEstimateRangeGB) {
if (this.sizeEstimateRangeGB == null) {
setSizeEstimateRangeGB(new java.util.ArrayList(sizeEstimateRangeGB.length));
}
for (Double ele : sizeEstimateRangeGB) {
this.sizeEstimateRangeGB.add(ele);
}
return this;
}
/**
*
* An estimate of item collection size, in gigabytes. This value is a two-element array containing a lower bound and
* an upper bound for the estimate. The estimate includes the size of all the items in the table, plus the size of
* all attributes projected into all of the local secondary indexes on that table. Use this estimate to measure
* whether a local secondary index is approaching its size limit.
*
*
* The estimate is subject to change over time; therefore, do not rely on the precision or accuracy of the estimate.
*
*
* @param sizeEstimateRangeGB
* An estimate of item collection size, in gigabytes. This value is a two-element array containing a lower
* bound and an upper bound for the estimate. The estimate includes the size of all the items in the table,
* plus the size of all attributes projected into all of the local secondary indexes on that table. Use this
* estimate to measure whether a local secondary index is approaching its size limit.
*
* The estimate is subject to change over time; therefore, do not rely on the precision or accuracy of the
* estimate.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ItemCollectionMetrics withSizeEstimateRangeGB(java.util.Collection sizeEstimateRangeGB) {
setSizeEstimateRangeGB(sizeEstimateRangeGB);
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 (getItemCollectionKey() != null)
sb.append("ItemCollectionKey: ").append(getItemCollectionKey()).append(",");
if (getSizeEstimateRangeGB() != null)
sb.append("SizeEstimateRangeGB: ").append(getSizeEstimateRangeGB());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ItemCollectionMetrics == false)
return false;
ItemCollectionMetrics other = (ItemCollectionMetrics) obj;
if (other.getItemCollectionKey() == null ^ this.getItemCollectionKey() == null)
return false;
if (other.getItemCollectionKey() != null && other.getItemCollectionKey().equals(this.getItemCollectionKey()) == false)
return false;
if (other.getSizeEstimateRangeGB() == null ^ this.getSizeEstimateRangeGB() == null)
return false;
if (other.getSizeEstimateRangeGB() != null && other.getSizeEstimateRangeGB().equals(this.getSizeEstimateRangeGB()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getItemCollectionKey() == null) ? 0 : getItemCollectionKey().hashCode());
hashCode = prime * hashCode + ((getSizeEstimateRangeGB() == null) ? 0 : getSizeEstimateRangeGB().hashCode());
return hashCode;
}
@Override
public ItemCollectionMetrics clone() {
try {
return (ItemCollectionMetrics) 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.ItemCollectionMetricsMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}