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

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

Go to download

The AWS SDK for Java with support for OSGi. The AWS SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

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

import java.io.Serializable;
import com.amazonaws.AmazonWebServiceRequest;

/**
 * 

* This input determines which steps to list. *

*/ public class ListStepsRequest extends AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* The identifier of the cluster for which to list the steps. *

*/ private String clusterId; /** *

* The filter to limit the step list based on certain states. *

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

* The filter to limit the step list based on the identifier of the steps. *

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

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

*/ private String marker; /** *

* The identifier of the cluster for which to list the steps. *

* * @param clusterId * The identifier of the cluster for which to list the steps. */ public void setClusterId(String clusterId) { this.clusterId = clusterId; } /** *

* The identifier of the cluster for which to list the steps. *

* * @return The identifier of the cluster for which to list the steps. */ public String getClusterId() { return this.clusterId; } /** *

* The identifier of the cluster for which to list the steps. *

* * @param clusterId * The identifier of the cluster for which to list the steps. * @return Returns a reference to this object so that method calls can be * chained together. */ public ListStepsRequest withClusterId(String clusterId) { setClusterId(clusterId); return this; } /** *

* The filter to limit the step list based on certain states. *

* * @return The filter to limit the step list based on certain states. * @see StepState */ public java.util.List getStepStates() { if (stepStates == null) { stepStates = new com.amazonaws.internal.SdkInternalList(); } return stepStates; } /** *

* The filter to limit the step list based on certain states. *

* * @param stepStates * The filter to limit the step list based on certain states. * @see StepState */ public void setStepStates(java.util.Collection stepStates) { if (stepStates == null) { this.stepStates = null; return; } this.stepStates = new com.amazonaws.internal.SdkInternalList( stepStates); } /** *

* The filter to limit the step list based on certain states. *

*

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

* * @param stepStates * The filter to limit the step list based on certain states. * @return Returns a reference to this object so that method calls can be * chained together. * @see StepState */ public ListStepsRequest withStepStates(String... stepStates) { if (this.stepStates == null) { setStepStates(new com.amazonaws.internal.SdkInternalList( stepStates.length)); } for (String ele : stepStates) { this.stepStates.add(ele); } return this; } /** *

* The filter to limit the step list based on certain states. *

* * @param stepStates * The filter to limit the step list based on certain states. * @return Returns a reference to this object so that method calls can be * chained together. * @see StepState */ public ListStepsRequest withStepStates( java.util.Collection stepStates) { setStepStates(stepStates); return this; } /** *

* The filter to limit the step list based on certain states. *

* * @param stepStates * The filter to limit the step list based on certain states. * @return Returns a reference to this object so that method calls can be * chained together. * @see StepState */ public ListStepsRequest withStepStates(StepState... stepStates) { com.amazonaws.internal.SdkInternalList stepStatesCopy = new com.amazonaws.internal.SdkInternalList( stepStates.length); for (StepState value : stepStates) { stepStatesCopy.add(value.toString()); } if (getStepStates() == null) { setStepStates(stepStatesCopy); } else { getStepStates().addAll(stepStatesCopy); } return this; } /** *

* The filter to limit the step list based on the identifier of the steps. *

* * @return The filter to limit the step list based on the identifier of the * steps. */ public java.util.List getStepIds() { if (stepIds == null) { stepIds = new com.amazonaws.internal.SdkInternalList(); } return stepIds; } /** *

* The filter to limit the step list based on the identifier of the steps. *

* * @param stepIds * The filter to limit the step list based on the identifier of the * steps. */ public void setStepIds(java.util.Collection stepIds) { if (stepIds == null) { this.stepIds = null; return; } this.stepIds = new com.amazonaws.internal.SdkInternalList( stepIds); } /** *

* The filter to limit the step list based on the identifier of the steps. *

*

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

* * @param stepIds * The filter to limit the step list based on the identifier of the * steps. * @return Returns a reference to this object so that method calls can be * chained together. */ public ListStepsRequest withStepIds(String... stepIds) { if (this.stepIds == null) { setStepIds(new com.amazonaws.internal.SdkInternalList( stepIds.length)); } for (String ele : stepIds) { this.stepIds.add(ele); } return this; } /** *

* The filter to limit the step list based on the identifier of the steps. *

* * @param stepIds * The filter to limit the step list based on the identifier of the * steps. * @return Returns a reference to this object so that method calls can be * chained together. */ public ListStepsRequest withStepIds(java.util.Collection stepIds) { setStepIds(stepIds); 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 ListStepsRequest withMarker(String marker) { setMarker(marker); 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 (getClusterId() != null) sb.append("ClusterId: " + getClusterId() + ","); if (getStepStates() != null) sb.append("StepStates: " + getStepStates() + ","); if (getStepIds() != null) sb.append("StepIds: " + getStepIds() + ","); if (getMarker() != null) sb.append("Marker: " + 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 ListStepsRequest == false) return false; ListStepsRequest other = (ListStepsRequest) obj; if (other.getClusterId() == null ^ this.getClusterId() == null) return false; if (other.getClusterId() != null && other.getClusterId().equals(this.getClusterId()) == false) return false; if (other.getStepStates() == null ^ this.getStepStates() == null) return false; if (other.getStepStates() != null && other.getStepStates().equals(this.getStepStates()) == false) return false; if (other.getStepIds() == null ^ this.getStepIds() == null) return false; if (other.getStepIds() != null && other.getStepIds().equals(this.getStepIds()) == 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 + ((getClusterId() == null) ? 0 : getClusterId().hashCode()); hashCode = prime * hashCode + ((getStepStates() == null) ? 0 : getStepStates().hashCode()); hashCode = prime * hashCode + ((getStepIds() == null) ? 0 : getStepIds().hashCode()); hashCode = prime * hashCode + ((getMarker() == null) ? 0 : getMarker().hashCode()); return hashCode; } @Override public ListStepsRequest clone() { return (ListStepsRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy