All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.elasticsearch.model.DescribeReservedElasticsearchInstanceOfferingsResult Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Elasticsearch Service module holds the client classes that are used for communicating with Amazon Elasticsearch Service

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2019-2024 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.elasticsearch.model;

import java.io.Serializable;
import javax.annotation.Generated;

/**
 * 

* Container for results from DescribeReservedElasticsearchInstanceOfferings *

*/ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class DescribeReservedElasticsearchInstanceOfferingsResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable { /** *

* Provides an identifier to allow retrieval of paginated results. *

*/ private String nextToken; /** *

* List of reserved Elasticsearch instance offerings *

*/ private java.util.List reservedElasticsearchInstanceOfferings; /** *

* Provides an identifier to allow retrieval of paginated results. *

* * @param nextToken * Provides an identifier to allow retrieval of paginated results. */ public void setNextToken(String nextToken) { this.nextToken = nextToken; } /** *

* Provides an identifier to allow retrieval of paginated results. *

* * @return Provides an identifier to allow retrieval of paginated results. */ public String getNextToken() { return this.nextToken; } /** *

* Provides an identifier to allow retrieval of paginated results. *

* * @param nextToken * Provides an identifier to allow retrieval of paginated results. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeReservedElasticsearchInstanceOfferingsResult withNextToken(String nextToken) { setNextToken(nextToken); return this; } /** *

* List of reserved Elasticsearch instance offerings *

* * @return List of reserved Elasticsearch instance offerings */ public java.util.List getReservedElasticsearchInstanceOfferings() { return reservedElasticsearchInstanceOfferings; } /** *

* List of reserved Elasticsearch instance offerings *

* * @param reservedElasticsearchInstanceOfferings * List of reserved Elasticsearch instance offerings */ public void setReservedElasticsearchInstanceOfferings(java.util.Collection reservedElasticsearchInstanceOfferings) { if (reservedElasticsearchInstanceOfferings == null) { this.reservedElasticsearchInstanceOfferings = null; return; } this.reservedElasticsearchInstanceOfferings = new java.util.ArrayList(reservedElasticsearchInstanceOfferings); } /** *

* List of reserved Elasticsearch instance offerings *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setReservedElasticsearchInstanceOfferings(java.util.Collection)} or * {@link #withReservedElasticsearchInstanceOfferings(java.util.Collection)} if you want to override the existing * values. *

* * @param reservedElasticsearchInstanceOfferings * List of reserved Elasticsearch instance offerings * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeReservedElasticsearchInstanceOfferingsResult withReservedElasticsearchInstanceOfferings( ReservedElasticsearchInstanceOffering... reservedElasticsearchInstanceOfferings) { if (this.reservedElasticsearchInstanceOfferings == null) { setReservedElasticsearchInstanceOfferings(new java.util.ArrayList( reservedElasticsearchInstanceOfferings.length)); } for (ReservedElasticsearchInstanceOffering ele : reservedElasticsearchInstanceOfferings) { this.reservedElasticsearchInstanceOfferings.add(ele); } return this; } /** *

* List of reserved Elasticsearch instance offerings *

* * @param reservedElasticsearchInstanceOfferings * List of reserved Elasticsearch instance offerings * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeReservedElasticsearchInstanceOfferingsResult withReservedElasticsearchInstanceOfferings( java.util.Collection reservedElasticsearchInstanceOfferings) { setReservedElasticsearchInstanceOfferings(reservedElasticsearchInstanceOfferings); 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 (getNextToken() != null) sb.append("NextToken: ").append(getNextToken()).append(","); if (getReservedElasticsearchInstanceOfferings() != null) sb.append("ReservedElasticsearchInstanceOfferings: ").append(getReservedElasticsearchInstanceOfferings()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DescribeReservedElasticsearchInstanceOfferingsResult == false) return false; DescribeReservedElasticsearchInstanceOfferingsResult other = (DescribeReservedElasticsearchInstanceOfferingsResult) obj; if (other.getNextToken() == null ^ this.getNextToken() == null) return false; if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == false) return false; if (other.getReservedElasticsearchInstanceOfferings() == null ^ this.getReservedElasticsearchInstanceOfferings() == null) return false; if (other.getReservedElasticsearchInstanceOfferings() != null && other.getReservedElasticsearchInstanceOfferings().equals(this.getReservedElasticsearchInstanceOfferings()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode()); hashCode = prime * hashCode + ((getReservedElasticsearchInstanceOfferings() == null) ? 0 : getReservedElasticsearchInstanceOfferings().hashCode()); return hashCode; } @Override public DescribeReservedElasticsearchInstanceOfferingsResult clone() { try { return (DescribeReservedElasticsearchInstanceOfferingsResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy