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

com.amazonaws.services.elasticmapreduce.model.ListClustersRequest Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2017-2022 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.elasticmapreduce.model;

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

import com.amazonaws.AmazonWebServiceRequest;

/**
 * 

* This input determines how the ListClusters action filters the list of clusters that it returns. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ListClustersRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* The creation date and time beginning value filter for listing clusters. *

*/ private java.util.Date createdAfter; /** *

* The creation date and time end value filter for listing clusters. *

*/ private java.util.Date createdBefore; /** *

* The cluster state filters to apply when listing clusters. Clusters that change state while this action runs may * be not be returned as expected in the list of clusters. *

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

* The pagination token that indicates the next set of results to retrieve. *

*/ private String marker; /** *

* The creation date and time beginning value filter for listing clusters. *

* * @param createdAfter * The creation date and time beginning value filter for listing clusters. */ public void setCreatedAfter(java.util.Date createdAfter) { this.createdAfter = createdAfter; } /** *

* The creation date and time beginning value filter for listing clusters. *

* * @return The creation date and time beginning value filter for listing clusters. */ public java.util.Date getCreatedAfter() { return this.createdAfter; } /** *

* The creation date and time beginning value filter for listing clusters. *

* * @param createdAfter * The creation date and time beginning value filter for listing clusters. * @return Returns a reference to this object so that method calls can be chained together. */ public ListClustersRequest withCreatedAfter(java.util.Date createdAfter) { setCreatedAfter(createdAfter); return this; } /** *

* The creation date and time end value filter for listing clusters. *

* * @param createdBefore * The creation date and time end value filter for listing clusters. */ public void setCreatedBefore(java.util.Date createdBefore) { this.createdBefore = createdBefore; } /** *

* The creation date and time end value filter for listing clusters. *

* * @return The creation date and time end value filter for listing clusters. */ public java.util.Date getCreatedBefore() { return this.createdBefore; } /** *

* The creation date and time end value filter for listing clusters. *

* * @param createdBefore * The creation date and time end value filter for listing clusters. * @return Returns a reference to this object so that method calls can be chained together. */ public ListClustersRequest withCreatedBefore(java.util.Date createdBefore) { setCreatedBefore(createdBefore); return this; } /** *

* The cluster state filters to apply when listing clusters. Clusters that change state while this action runs may * be not be returned as expected in the list of clusters. *

* * @return The cluster state filters to apply when listing clusters. Clusters that change state while this action * runs may be not be returned as expected in the list of clusters. * @see ClusterState */ public java.util.List getClusterStates() { if (clusterStates == null) { clusterStates = new com.amazonaws.internal.SdkInternalList(); } return clusterStates; } /** *

* The cluster state filters to apply when listing clusters. Clusters that change state while this action runs may * be not be returned as expected in the list of clusters. *

* * @param clusterStates * The cluster state filters to apply when listing clusters. Clusters that change state while this action * runs may be not be returned as expected in the list of clusters. * @see ClusterState */ public void setClusterStates(java.util.Collection clusterStates) { if (clusterStates == null) { this.clusterStates = null; return; } this.clusterStates = new com.amazonaws.internal.SdkInternalList(clusterStates); } /** *

* The cluster state filters to apply when listing clusters. Clusters that change state while this action runs may * be not be returned as expected in the list of clusters. *

*

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

* * @param clusterStates * The cluster state filters to apply when listing clusters. Clusters that change state while this action * runs may be not be returned as expected in the list of clusters. * @return Returns a reference to this object so that method calls can be chained together. * @see ClusterState */ public ListClustersRequest withClusterStates(String... clusterStates) { if (this.clusterStates == null) { setClusterStates(new com.amazonaws.internal.SdkInternalList(clusterStates.length)); } for (String ele : clusterStates) { this.clusterStates.add(ele); } return this; } /** *

* The cluster state filters to apply when listing clusters. Clusters that change state while this action runs may * be not be returned as expected in the list of clusters. *

* * @param clusterStates * The cluster state filters to apply when listing clusters. Clusters that change state while this action * runs may be not be returned as expected in the list of clusters. * @return Returns a reference to this object so that method calls can be chained together. * @see ClusterState */ public ListClustersRequest withClusterStates(java.util.Collection clusterStates) { setClusterStates(clusterStates); return this; } /** *

* The cluster state filters to apply when listing clusters. Clusters that change state while this action runs may * be not be returned as expected in the list of clusters. *

* * @param clusterStates * The cluster state filters to apply when listing clusters. Clusters that change state while this action * runs may be not be returned as expected in the list of clusters. * @return Returns a reference to this object so that method calls can be chained together. * @see ClusterState */ public ListClustersRequest withClusterStates(ClusterState... clusterStates) { com.amazonaws.internal.SdkInternalList clusterStatesCopy = new com.amazonaws.internal.SdkInternalList(clusterStates.length); for (ClusterState value : clusterStates) { clusterStatesCopy.add(value.toString()); } if (getClusterStates() == null) { setClusterStates(clusterStatesCopy); } else { getClusterStates().addAll(clusterStatesCopy); } return this; } /** *

* The pagination token that indicates the next set of results to retrieve. *

* * @param marker * The pagination token that indicates the next set of results to retrieve. */ public void setMarker(String marker) { this.marker = marker; } /** *

* The pagination token that indicates the next set of results to retrieve. *

* * @return The pagination token that indicates the next set of results to retrieve. */ public String getMarker() { return this.marker; } /** *

* The pagination token that indicates the next set of results to retrieve. *

* * @param marker * The pagination token that indicates the next set of results to retrieve. * @return Returns a reference to this object so that method calls can be chained together. */ public ListClustersRequest withMarker(String marker) { setMarker(marker); 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 (getCreatedAfter() != null) sb.append("CreatedAfter: ").append(getCreatedAfter()).append(","); if (getCreatedBefore() != null) sb.append("CreatedBefore: ").append(getCreatedBefore()).append(","); if (getClusterStates() != null) sb.append("ClusterStates: ").append(getClusterStates()).append(","); if (getMarker() != null) sb.append("Marker: ").append(getMarker()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ListClustersRequest == false) return false; ListClustersRequest other = (ListClustersRequest) obj; if (other.getCreatedAfter() == null ^ this.getCreatedAfter() == null) return false; if (other.getCreatedAfter() != null && other.getCreatedAfter().equals(this.getCreatedAfter()) == false) return false; if (other.getCreatedBefore() == null ^ this.getCreatedBefore() == null) return false; if (other.getCreatedBefore() != null && other.getCreatedBefore().equals(this.getCreatedBefore()) == false) return false; if (other.getClusterStates() == null ^ this.getClusterStates() == null) return false; if (other.getClusterStates() != null && other.getClusterStates().equals(this.getClusterStates()) == false) return false; if (other.getMarker() == null ^ this.getMarker() == null) return false; if (other.getMarker() != null && other.getMarker().equals(this.getMarker()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getCreatedAfter() == null) ? 0 : getCreatedAfter().hashCode()); hashCode = prime * hashCode + ((getCreatedBefore() == null) ? 0 : getCreatedBefore().hashCode()); hashCode = prime * hashCode + ((getClusterStates() == null) ? 0 : getClusterStates().hashCode()); hashCode = prime * hashCode + ((getMarker() == null) ? 0 : getMarker().hashCode()); return hashCode; } @Override public ListClustersRequest clone() { return (ListClustersRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy