com.amazonaws.services.elasticmapreduce.model.TerminateJobFlowsRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk Show documentation
/*
* Copyright 2010-2014 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;
/**
* Container for the parameters to the {@link com.amazonaws.services.elasticmapreduce.AmazonElasticMapReduce#terminateJobFlows(TerminateJobFlowsRequest) TerminateJobFlows operation}.
*
* TerminateJobFlows shuts a list of job flows down. When a job flow is
* shut down, any step not yet completed is canceled and the EC2
* instances on which the job flow is running are stopped. Any log files
* not already saved are uploaded to Amazon S3 if a LogUri was specified
* when the job flow was created.
*
*
* The call to TerminateJobFlows is asynchronous. Depending on the
* configuration of the job flow, it may take up to 5-20 minutes for the
* job flow to completely terminate and release allocated resources, such
* as Amazon EC2 instances.
*
*
* @see com.amazonaws.services.elasticmapreduce.AmazonElasticMapReduce#terminateJobFlows(TerminateJobFlowsRequest)
*/
public class TerminateJobFlowsRequest extends AmazonWebServiceRequest implements Serializable {
/**
* A list of job flows to be shutdown.
*/
private com.amazonaws.internal.ListWithAutoConstructFlag jobFlowIds;
/**
* Default constructor for a new TerminateJobFlowsRequest object. Callers should use the
* setter or fluent setter (with...) methods to initialize this object after creating it.
*/
public TerminateJobFlowsRequest() {}
/**
* Constructs a new TerminateJobFlowsRequest object.
* Callers should use the setter or fluent setter (with...) methods to
* initialize any additional object members.
*
* @param jobFlowIds A list of job flows to be shutdown.
*/
public TerminateJobFlowsRequest(java.util.List jobFlowIds) {
setJobFlowIds(jobFlowIds);
}
/**
* A list of job flows to be shutdown.
*
* @return A list of job flows to be shutdown.
*/
public java.util.List getJobFlowIds() {
if (jobFlowIds == null) {
jobFlowIds = new com.amazonaws.internal.ListWithAutoConstructFlag();
jobFlowIds.setAutoConstruct(true);
}
return jobFlowIds;
}
/**
* A list of job flows to be shutdown.
*
* @param jobFlowIds A list of job flows to be shutdown.
*/
public void setJobFlowIds(java.util.Collection jobFlowIds) {
if (jobFlowIds == null) {
this.jobFlowIds = null;
return;
}
com.amazonaws.internal.ListWithAutoConstructFlag jobFlowIdsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(jobFlowIds.size());
jobFlowIdsCopy.addAll(jobFlowIds);
this.jobFlowIds = jobFlowIdsCopy;
}
/**
* A list of job flows to be shutdown.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param jobFlowIds A list of job flows to be shutdown.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public TerminateJobFlowsRequest withJobFlowIds(String... jobFlowIds) {
if (getJobFlowIds() == null) setJobFlowIds(new java.util.ArrayList(jobFlowIds.length));
for (String value : jobFlowIds) {
getJobFlowIds().add(value);
}
return this;
}
/**
* A list of job flows to be shutdown.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param jobFlowIds A list of job flows to be shutdown.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public TerminateJobFlowsRequest withJobFlowIds(java.util.Collection jobFlowIds) {
if (jobFlowIds == null) {
this.jobFlowIds = null;
} else {
com.amazonaws.internal.ListWithAutoConstructFlag jobFlowIdsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(jobFlowIds.size());
jobFlowIdsCopy.addAll(jobFlowIds);
this.jobFlowIds = jobFlowIdsCopy;
}
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 (getJobFlowIds() != null) sb.append("JobFlowIds: " + getJobFlowIds() );
sb.append("}");
return sb.toString();
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getJobFlowIds() == null) ? 0 : getJobFlowIds().hashCode());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (obj instanceof TerminateJobFlowsRequest == false) return false;
TerminateJobFlowsRequest other = (TerminateJobFlowsRequest)obj;
if (other.getJobFlowIds() == null ^ this.getJobFlowIds() == null) return false;
if (other.getJobFlowIds() != null && other.getJobFlowIds().equals(this.getJobFlowIds()) == false) return false;
return true;
}
}