/* * Copyright 2018-2023 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.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* With Amazon EMR release version 4.0 and later, the only accepted parameter is the application name. To pass arguments * to applications, you use configuration classifications specified using configuration JSON objects. For more * information, see Configuring * Applications. *
** With earlier Amazon EMR releases, the application is any Amazon or third-party software that you can add to the * cluster. This structure contains a list of strings that indicates the software to use with the cluster and accepts a * user argument list. Amazon EMR accepts and forwards the argument list to the corresponding installation script as * bootstrap action argument. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class Application implements Serializable, Cloneable, StructuredPojo { /** ** The name of the application. *
*/ private String name; /** ** The version of the application. *
*/ private String version; /** ** Arguments for Amazon EMR to pass to the application. *
*/ private com.amazonaws.internal.SdkInternalList* This option is for advanced users only. This is meta information about third-party applications that third-party * vendors use for testing purposes. *
*/ private com.amazonaws.internal.SdkInternalMap* The name of the application. *
* * @param name * The name of the application. */ public void setName(String name) { this.name = name; } /** ** The name of the application. *
* * @return The name of the application. */ public String getName() { return this.name; } /** ** The name of the application. *
* * @param name * The name of the application. * @return Returns a reference to this object so that method calls can be chained together. */ public Application withName(String name) { setName(name); return this; } /** ** The version of the application. *
* * @param version * The version of the application. */ public void setVersion(String version) { this.version = version; } /** ** The version of the application. *
* * @return The version of the application. */ public String getVersion() { return this.version; } /** ** The version of the application. *
* * @param version * The version of the application. * @return Returns a reference to this object so that method calls can be chained together. */ public Application withVersion(String version) { setVersion(version); return this; } /** ** Arguments for Amazon EMR to pass to the application. *
* * @return Arguments for Amazon EMR to pass to the application. */ public java.util.List* Arguments for Amazon EMR to pass to the application. *
* * @param args * Arguments for Amazon EMR to pass to the application. */ public void setArgs(java.util.Collection* Arguments for Amazon EMR to pass to the application. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setArgs(java.util.Collection)} or {@link #withArgs(java.util.Collection)} if you want to override the * existing values. *
* * @param args * Arguments for Amazon EMR to pass to the application. * @return Returns a reference to this object so that method calls can be chained together. */ public Application withArgs(String... args) { if (this.args == null) { setArgs(new com.amazonaws.internal.SdkInternalList* Arguments for Amazon EMR to pass to the application. *
* * @param args * Arguments for Amazon EMR to pass to the application. * @return Returns a reference to this object so that method calls can be chained together. */ public Application withArgs(java.util.Collection* This option is for advanced users only. This is meta information about third-party applications that third-party * vendors use for testing purposes. *
* * @return This option is for advanced users only. This is meta information about third-party applications that * third-party vendors use for testing purposes. */ public java.util.Map* This option is for advanced users only. This is meta information about third-party applications that third-party * vendors use for testing purposes. *
* * @param additionalInfo * This option is for advanced users only. This is meta information about third-party applications that * third-party vendors use for testing purposes. */ public void setAdditionalInfo(java.util.Map* This option is for advanced users only. This is meta information about third-party applications that third-party * vendors use for testing purposes. *
* * @param additionalInfo * This option is for advanced users only. This is meta information about third-party applications that * third-party vendors use for testing purposes. * @return Returns a reference to this object so that method calls can be chained together. */ public Application withAdditionalInfo(java.util.Map