
com.amazonaws.services.elasticmapreduce.model.TerminateJobFlowsRequest Maven / Gradle / Ivy
/*
* Copyright 2010-2011 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 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.
*
*
* @see com.amazonaws.services.elasticmapreduce.AmazonElasticMapReduce#terminateJobFlows(TerminateJobFlowsRequest)
*/
public class TerminateJobFlowsRequest extends AmazonWebServiceRequest {
/**
* A list of job flows to be shutdown.
*/
private java.util.List 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) {
this.jobFlowIds = 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 java.util.ArrayList();
}
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) {
java.util.List jobFlowIdsCopy = new java.util.ArrayList();
if (jobFlowIds != null) {
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) {
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) {
java.util.List jobFlowIdsCopy = new java.util.ArrayList();
if (jobFlowIds != null) {
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("{");
sb.append("JobFlowIds: " + jobFlowIds + ", ");
sb.append("}");
return sb.toString();
}
}