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

com.amazonaws.services.opsworks.model.DescribeEcsClustersResult Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.11.7
Show newest version
/*
 * Copyright 2010-2016 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.opsworks.model;

import java.io.Serializable;

/**
 * 

* Contains the response to a DescribeEcsClusters request. *

*/ public class DescribeEcsClustersResult implements Serializable, Cloneable { /** *

* A list of EcsCluster objects containing the cluster * descriptions. *

*/ private com.amazonaws.internal.SdkInternalList ecsClusters; /** *

* If a paginated request does not return all of the remaining results, this * parameter is set to a token that you can assign to the request object's * NextToken parameter to retrieve the next set of results. If * the previous paginated request returned all of the remaining results, * this parameter is set to null. *

*/ private String nextToken; /** *

* A list of EcsCluster objects containing the cluster * descriptions. *

* * @return A list of EcsCluster objects containing the cluster * descriptions. */ public java.util.List getEcsClusters() { if (ecsClusters == null) { ecsClusters = new com.amazonaws.internal.SdkInternalList(); } return ecsClusters; } /** *

* A list of EcsCluster objects containing the cluster * descriptions. *

* * @param ecsClusters * A list of EcsCluster objects containing the cluster * descriptions. */ public void setEcsClusters(java.util.Collection ecsClusters) { if (ecsClusters == null) { this.ecsClusters = null; return; } this.ecsClusters = new com.amazonaws.internal.SdkInternalList( ecsClusters); } /** *

* A list of EcsCluster objects containing the cluster * descriptions. *

*

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

* * @param ecsClusters * A list of EcsCluster objects containing the cluster * descriptions. * @return Returns a reference to this object so that method calls can be * chained together. */ public DescribeEcsClustersResult withEcsClusters(EcsCluster... ecsClusters) { if (this.ecsClusters == null) { setEcsClusters(new com.amazonaws.internal.SdkInternalList( ecsClusters.length)); } for (EcsCluster ele : ecsClusters) { this.ecsClusters.add(ele); } return this; } /** *

* A list of EcsCluster objects containing the cluster * descriptions. *

* * @param ecsClusters * A list of EcsCluster objects containing the cluster * descriptions. * @return Returns a reference to this object so that method calls can be * chained together. */ public DescribeEcsClustersResult withEcsClusters( java.util.Collection ecsClusters) { setEcsClusters(ecsClusters); return this; } /** *

* If a paginated request does not return all of the remaining results, this * parameter is set to a token that you can assign to the request object's * NextToken parameter to retrieve the next set of results. If * the previous paginated request returned all of the remaining results, * this parameter is set to null. *

* * @param nextToken * If a paginated request does not return all of the remaining * results, this parameter is set to a token that you can assign to * the request object's NextToken parameter to retrieve * the next set of results. If the previous paginated request * returned all of the remaining results, this parameter is set to * null. */ public void setNextToken(String nextToken) { this.nextToken = nextToken; } /** *

* If a paginated request does not return all of the remaining results, this * parameter is set to a token that you can assign to the request object's * NextToken parameter to retrieve the next set of results. If * the previous paginated request returned all of the remaining results, * this parameter is set to null. *

* * @return If a paginated request does not return all of the remaining * results, this parameter is set to a token that you can assign to * the request object's NextToken parameter to retrieve * the next set of results. If the previous paginated request * returned all of the remaining results, this parameter is set to * null. */ public String getNextToken() { return this.nextToken; } /** *

* If a paginated request does not return all of the remaining results, this * parameter is set to a token that you can assign to the request object's * NextToken parameter to retrieve the next set of results. If * the previous paginated request returned all of the remaining results, * this parameter is set to null. *

* * @param nextToken * If a paginated request does not return all of the remaining * results, this parameter is set to a token that you can assign to * the request object's NextToken parameter to retrieve * the next set of results. If the previous paginated request * returned all of the remaining results, this parameter is set to * null. * @return Returns a reference to this object so that method calls can be * chained together. */ public DescribeEcsClustersResult withNextToken(String nextToken) { setNextToken(nextToken); 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 (getEcsClusters() != null) sb.append("EcsClusters: " + getEcsClusters() + ","); if (getNextToken() != null) sb.append("NextToken: " + 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 DescribeEcsClustersResult == false) return false; DescribeEcsClustersResult other = (DescribeEcsClustersResult) obj; if (other.getEcsClusters() == null ^ this.getEcsClusters() == null) return false; if (other.getEcsClusters() != null && other.getEcsClusters().equals(this.getEcsClusters()) == 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 + ((getEcsClusters() == null) ? 0 : getEcsClusters().hashCode()); hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode()); return hashCode; } @Override public DescribeEcsClustersResult clone() { try { return (DescribeEcsClustersResult) 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