com.amazonaws.services.elasticmapreduce.model.Ec2InstanceAttributes Maven / Gradle / Ivy
Show all versions of aws-java-sdk-emr Show documentation
/*
* 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.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* Provides information about the EC2 instances in a cluster grouped by category. For example, key name, subnet ID, IAM
* instance profile, and so on.
*
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class Ec2InstanceAttributes implements Serializable, Cloneable, StructuredPojo {
/**
*
* The name of the Amazon EC2 key pair to use when connecting with SSH into the master node as a user named
* "hadoop".
*
*/
private String ec2KeyName;
/**
*
* Set this parameter to the identifier of the Amazon VPC subnet where you want the cluster to launch. If you do not
* specify this value, and your account supports EC2-Classic, the cluster launches in EC2-Classic.
*
*/
private String ec2SubnetId;
/**
*
* Applies to clusters configured with the instance fleets option. Specifies the unique identifier of one or more
* Amazon EC2 subnets in which to launch EC2 cluster instances. Subnets must exist within the same VPC. Amazon EMR
* chooses the EC2 subnet with the best fit from among the list of RequestedEc2SubnetIds
, and then
* launches all cluster instances within that Subnet. If this value is not specified, and the account and Region
* support EC2-Classic networks, the cluster launches instances in the EC2-Classic network and uses
* RequestedEc2AvailabilityZones
instead of this setting. If EC2-Classic is not supported, and no
* Subnet is specified, Amazon EMR chooses the subnet for you. RequestedEc2SubnetIDs
and
* RequestedEc2AvailabilityZones
cannot be specified together.
*
*/
private com.amazonaws.internal.SdkInternalList requestedEc2SubnetIds;
/**
*
* The Availability Zone in which the cluster will run.
*
*/
private String ec2AvailabilityZone;
/**
*
* Applies to clusters configured with the instance fleets option. Specifies one or more Availability Zones in which
* to launch EC2 cluster instances when the EC2-Classic network configuration is supported. Amazon EMR chooses the
* Availability Zone with the best fit from among the list of RequestedEc2AvailabilityZones
, and then
* launches all cluster instances within that Availability Zone. If you do not specify this value, Amazon EMR
* chooses the Availability Zone for you. RequestedEc2SubnetIDs
and
* RequestedEc2AvailabilityZones
cannot be specified together.
*
*/
private com.amazonaws.internal.SdkInternalList requestedEc2AvailabilityZones;
/**
*
* The IAM role that was specified when the cluster was launched. The EC2 instances of the cluster assume this role.
*
*/
private String iamInstanceProfile;
/**
*
* The identifier of the Amazon EC2 security group for the master node.
*
*/
private String emrManagedMasterSecurityGroup;
/**
*
* The identifier of the Amazon EC2 security group for the core and task nodes.
*
*/
private String emrManagedSlaveSecurityGroup;
/**
*
* The identifier of the Amazon EC2 security group for the Amazon EMR service to access clusters in VPC private
* subnets.
*
*/
private String serviceAccessSecurityGroup;
/**
*
* A list of additional Amazon EC2 security group IDs for the master node.
*
*/
private com.amazonaws.internal.SdkInternalList additionalMasterSecurityGroups;
/**
*
* A list of additional Amazon EC2 security group IDs for the core and task nodes.
*
*/
private com.amazonaws.internal.SdkInternalList additionalSlaveSecurityGroups;
/**
*
* The name of the Amazon EC2 key pair to use when connecting with SSH into the master node as a user named
* "hadoop".
*
*
* @param ec2KeyName
* The name of the Amazon EC2 key pair to use when connecting with SSH into the master node as a user named
* "hadoop".
*/
public void setEc2KeyName(String ec2KeyName) {
this.ec2KeyName = ec2KeyName;
}
/**
*
* The name of the Amazon EC2 key pair to use when connecting with SSH into the master node as a user named
* "hadoop".
*
*
* @return The name of the Amazon EC2 key pair to use when connecting with SSH into the master node as a user named
* "hadoop".
*/
public String getEc2KeyName() {
return this.ec2KeyName;
}
/**
*
* The name of the Amazon EC2 key pair to use when connecting with SSH into the master node as a user named
* "hadoop".
*
*
* @param ec2KeyName
* The name of the Amazon EC2 key pair to use when connecting with SSH into the master node as a user named
* "hadoop".
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Ec2InstanceAttributes withEc2KeyName(String ec2KeyName) {
setEc2KeyName(ec2KeyName);
return this;
}
/**
*
* Set this parameter to the identifier of the Amazon VPC subnet where you want the cluster to launch. If you do not
* specify this value, and your account supports EC2-Classic, the cluster launches in EC2-Classic.
*
*
* @param ec2SubnetId
* Set this parameter to the identifier of the Amazon VPC subnet where you want the cluster to launch. If you
* do not specify this value, and your account supports EC2-Classic, the cluster launches in EC2-Classic.
*/
public void setEc2SubnetId(String ec2SubnetId) {
this.ec2SubnetId = ec2SubnetId;
}
/**
*
* Set this parameter to the identifier of the Amazon VPC subnet where you want the cluster to launch. If you do not
* specify this value, and your account supports EC2-Classic, the cluster launches in EC2-Classic.
*
*
* @return Set this parameter to the identifier of the Amazon VPC subnet where you want the cluster to launch. If
* you do not specify this value, and your account supports EC2-Classic, the cluster launches in
* EC2-Classic.
*/
public String getEc2SubnetId() {
return this.ec2SubnetId;
}
/**
*
* Set this parameter to the identifier of the Amazon VPC subnet where you want the cluster to launch. If you do not
* specify this value, and your account supports EC2-Classic, the cluster launches in EC2-Classic.
*
*
* @param ec2SubnetId
* Set this parameter to the identifier of the Amazon VPC subnet where you want the cluster to launch. If you
* do not specify this value, and your account supports EC2-Classic, the cluster launches in EC2-Classic.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Ec2InstanceAttributes withEc2SubnetId(String ec2SubnetId) {
setEc2SubnetId(ec2SubnetId);
return this;
}
/**
*
* Applies to clusters configured with the instance fleets option. Specifies the unique identifier of one or more
* Amazon EC2 subnets in which to launch EC2 cluster instances. Subnets must exist within the same VPC. Amazon EMR
* chooses the EC2 subnet with the best fit from among the list of RequestedEc2SubnetIds
, and then
* launches all cluster instances within that Subnet. If this value is not specified, and the account and Region
* support EC2-Classic networks, the cluster launches instances in the EC2-Classic network and uses
* RequestedEc2AvailabilityZones
instead of this setting. If EC2-Classic is not supported, and no
* Subnet is specified, Amazon EMR chooses the subnet for you. RequestedEc2SubnetIDs
and
* RequestedEc2AvailabilityZones
cannot be specified together.
*
*
* @return Applies to clusters configured with the instance fleets option. Specifies the unique identifier of one or
* more Amazon EC2 subnets in which to launch EC2 cluster instances. Subnets must exist within the same VPC.
* Amazon EMR chooses the EC2 subnet with the best fit from among the list of
* RequestedEc2SubnetIds
, and then launches all cluster instances within that Subnet. If this
* value is not specified, and the account and Region support EC2-Classic networks, the cluster launches
* instances in the EC2-Classic network and uses RequestedEc2AvailabilityZones
instead of this
* setting. If EC2-Classic is not supported, and no Subnet is specified, Amazon EMR chooses the subnet for
* you. RequestedEc2SubnetIDs
and RequestedEc2AvailabilityZones
cannot be
* specified together.
*/
public java.util.List getRequestedEc2SubnetIds() {
if (requestedEc2SubnetIds == null) {
requestedEc2SubnetIds = new com.amazonaws.internal.SdkInternalList();
}
return requestedEc2SubnetIds;
}
/**
*
* Applies to clusters configured with the instance fleets option. Specifies the unique identifier of one or more
* Amazon EC2 subnets in which to launch EC2 cluster instances. Subnets must exist within the same VPC. Amazon EMR
* chooses the EC2 subnet with the best fit from among the list of RequestedEc2SubnetIds
, and then
* launches all cluster instances within that Subnet. If this value is not specified, and the account and Region
* support EC2-Classic networks, the cluster launches instances in the EC2-Classic network and uses
* RequestedEc2AvailabilityZones
instead of this setting. If EC2-Classic is not supported, and no
* Subnet is specified, Amazon EMR chooses the subnet for you. RequestedEc2SubnetIDs
and
* RequestedEc2AvailabilityZones
cannot be specified together.
*
*
* @param requestedEc2SubnetIds
* Applies to clusters configured with the instance fleets option. Specifies the unique identifier of one or
* more Amazon EC2 subnets in which to launch EC2 cluster instances. Subnets must exist within the same VPC.
* Amazon EMR chooses the EC2 subnet with the best fit from among the list of
* RequestedEc2SubnetIds
, and then launches all cluster instances within that Subnet. If this
* value is not specified, and the account and Region support EC2-Classic networks, the cluster launches
* instances in the EC2-Classic network and uses RequestedEc2AvailabilityZones
instead of this
* setting. If EC2-Classic is not supported, and no Subnet is specified, Amazon EMR chooses the subnet for
* you. RequestedEc2SubnetIDs
and RequestedEc2AvailabilityZones
cannot be specified
* together.
*/
public void setRequestedEc2SubnetIds(java.util.Collection requestedEc2SubnetIds) {
if (requestedEc2SubnetIds == null) {
this.requestedEc2SubnetIds = null;
return;
}
this.requestedEc2SubnetIds = new com.amazonaws.internal.SdkInternalList(requestedEc2SubnetIds);
}
/**
*
* Applies to clusters configured with the instance fleets option. Specifies the unique identifier of one or more
* Amazon EC2 subnets in which to launch EC2 cluster instances. Subnets must exist within the same VPC. Amazon EMR
* chooses the EC2 subnet with the best fit from among the list of RequestedEc2SubnetIds
, and then
* launches all cluster instances within that Subnet. If this value is not specified, and the account and Region
* support EC2-Classic networks, the cluster launches instances in the EC2-Classic network and uses
* RequestedEc2AvailabilityZones
instead of this setting. If EC2-Classic is not supported, and no
* Subnet is specified, Amazon EMR chooses the subnet for you. RequestedEc2SubnetIDs
and
* RequestedEc2AvailabilityZones
cannot be specified together.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setRequestedEc2SubnetIds(java.util.Collection)} or
* {@link #withRequestedEc2SubnetIds(java.util.Collection)} if you want to override the existing values.
*
*
* @param requestedEc2SubnetIds
* Applies to clusters configured with the instance fleets option. Specifies the unique identifier of one or
* more Amazon EC2 subnets in which to launch EC2 cluster instances. Subnets must exist within the same VPC.
* Amazon EMR chooses the EC2 subnet with the best fit from among the list of
* RequestedEc2SubnetIds
, and then launches all cluster instances within that Subnet. If this
* value is not specified, and the account and Region support EC2-Classic networks, the cluster launches
* instances in the EC2-Classic network and uses RequestedEc2AvailabilityZones
instead of this
* setting. If EC2-Classic is not supported, and no Subnet is specified, Amazon EMR chooses the subnet for
* you. RequestedEc2SubnetIDs
and RequestedEc2AvailabilityZones
cannot be specified
* together.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Ec2InstanceAttributes withRequestedEc2SubnetIds(String... requestedEc2SubnetIds) {
if (this.requestedEc2SubnetIds == null) {
setRequestedEc2SubnetIds(new com.amazonaws.internal.SdkInternalList(requestedEc2SubnetIds.length));
}
for (String ele : requestedEc2SubnetIds) {
this.requestedEc2SubnetIds.add(ele);
}
return this;
}
/**
*
* Applies to clusters configured with the instance fleets option. Specifies the unique identifier of one or more
* Amazon EC2 subnets in which to launch EC2 cluster instances. Subnets must exist within the same VPC. Amazon EMR
* chooses the EC2 subnet with the best fit from among the list of RequestedEc2SubnetIds
, and then
* launches all cluster instances within that Subnet. If this value is not specified, and the account and Region
* support EC2-Classic networks, the cluster launches instances in the EC2-Classic network and uses
* RequestedEc2AvailabilityZones
instead of this setting. If EC2-Classic is not supported, and no
* Subnet is specified, Amazon EMR chooses the subnet for you. RequestedEc2SubnetIDs
and
* RequestedEc2AvailabilityZones
cannot be specified together.
*
*
* @param requestedEc2SubnetIds
* Applies to clusters configured with the instance fleets option. Specifies the unique identifier of one or
* more Amazon EC2 subnets in which to launch EC2 cluster instances. Subnets must exist within the same VPC.
* Amazon EMR chooses the EC2 subnet with the best fit from among the list of
* RequestedEc2SubnetIds
, and then launches all cluster instances within that Subnet. If this
* value is not specified, and the account and Region support EC2-Classic networks, the cluster launches
* instances in the EC2-Classic network and uses RequestedEc2AvailabilityZones
instead of this
* setting. If EC2-Classic is not supported, and no Subnet is specified, Amazon EMR chooses the subnet for
* you. RequestedEc2SubnetIDs
and RequestedEc2AvailabilityZones
cannot be specified
* together.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Ec2InstanceAttributes withRequestedEc2SubnetIds(java.util.Collection requestedEc2SubnetIds) {
setRequestedEc2SubnetIds(requestedEc2SubnetIds);
return this;
}
/**
*
* The Availability Zone in which the cluster will run.
*
*
* @param ec2AvailabilityZone
* The Availability Zone in which the cluster will run.
*/
public void setEc2AvailabilityZone(String ec2AvailabilityZone) {
this.ec2AvailabilityZone = ec2AvailabilityZone;
}
/**
*
* The Availability Zone in which the cluster will run.
*
*
* @return The Availability Zone in which the cluster will run.
*/
public String getEc2AvailabilityZone() {
return this.ec2AvailabilityZone;
}
/**
*
* The Availability Zone in which the cluster will run.
*
*
* @param ec2AvailabilityZone
* The Availability Zone in which the cluster will run.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Ec2InstanceAttributes withEc2AvailabilityZone(String ec2AvailabilityZone) {
setEc2AvailabilityZone(ec2AvailabilityZone);
return this;
}
/**
*
* Applies to clusters configured with the instance fleets option. Specifies one or more Availability Zones in which
* to launch EC2 cluster instances when the EC2-Classic network configuration is supported. Amazon EMR chooses the
* Availability Zone with the best fit from among the list of RequestedEc2AvailabilityZones
, and then
* launches all cluster instances within that Availability Zone. If you do not specify this value, Amazon EMR
* chooses the Availability Zone for you. RequestedEc2SubnetIDs
and
* RequestedEc2AvailabilityZones
cannot be specified together.
*
*
* @return Applies to clusters configured with the instance fleets option. Specifies one or more Availability Zones
* in which to launch EC2 cluster instances when the EC2-Classic network configuration is supported. Amazon
* EMR chooses the Availability Zone with the best fit from among the list of
* RequestedEc2AvailabilityZones
, and then launches all cluster instances within that
* Availability Zone. If you do not specify this value, Amazon EMR chooses the Availability Zone for you.
* RequestedEc2SubnetIDs
and RequestedEc2AvailabilityZones
cannot be specified
* together.
*/
public java.util.List getRequestedEc2AvailabilityZones() {
if (requestedEc2AvailabilityZones == null) {
requestedEc2AvailabilityZones = new com.amazonaws.internal.SdkInternalList();
}
return requestedEc2AvailabilityZones;
}
/**
*
* Applies to clusters configured with the instance fleets option. Specifies one or more Availability Zones in which
* to launch EC2 cluster instances when the EC2-Classic network configuration is supported. Amazon EMR chooses the
* Availability Zone with the best fit from among the list of RequestedEc2AvailabilityZones
, and then
* launches all cluster instances within that Availability Zone. If you do not specify this value, Amazon EMR
* chooses the Availability Zone for you. RequestedEc2SubnetIDs
and
* RequestedEc2AvailabilityZones
cannot be specified together.
*
*
* @param requestedEc2AvailabilityZones
* Applies to clusters configured with the instance fleets option. Specifies one or more Availability Zones
* in which to launch EC2 cluster instances when the EC2-Classic network configuration is supported. Amazon
* EMR chooses the Availability Zone with the best fit from among the list of
* RequestedEc2AvailabilityZones
, and then launches all cluster instances within that
* Availability Zone. If you do not specify this value, Amazon EMR chooses the Availability Zone for you.
* RequestedEc2SubnetIDs
and RequestedEc2AvailabilityZones
cannot be specified
* together.
*/
public void setRequestedEc2AvailabilityZones(java.util.Collection requestedEc2AvailabilityZones) {
if (requestedEc2AvailabilityZones == null) {
this.requestedEc2AvailabilityZones = null;
return;
}
this.requestedEc2AvailabilityZones = new com.amazonaws.internal.SdkInternalList(requestedEc2AvailabilityZones);
}
/**
*
* Applies to clusters configured with the instance fleets option. Specifies one or more Availability Zones in which
* to launch EC2 cluster instances when the EC2-Classic network configuration is supported. Amazon EMR chooses the
* Availability Zone with the best fit from among the list of RequestedEc2AvailabilityZones
, and then
* launches all cluster instances within that Availability Zone. If you do not specify this value, Amazon EMR
* chooses the Availability Zone for you. RequestedEc2SubnetIDs
and
* RequestedEc2AvailabilityZones
cannot be specified together.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setRequestedEc2AvailabilityZones(java.util.Collection)} or
* {@link #withRequestedEc2AvailabilityZones(java.util.Collection)} if you want to override the existing values.
*
*
* @param requestedEc2AvailabilityZones
* Applies to clusters configured with the instance fleets option. Specifies one or more Availability Zones
* in which to launch EC2 cluster instances when the EC2-Classic network configuration is supported. Amazon
* EMR chooses the Availability Zone with the best fit from among the list of
* RequestedEc2AvailabilityZones
, and then launches all cluster instances within that
* Availability Zone. If you do not specify this value, Amazon EMR chooses the Availability Zone for you.
* RequestedEc2SubnetIDs
and RequestedEc2AvailabilityZones
cannot be specified
* together.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Ec2InstanceAttributes withRequestedEc2AvailabilityZones(String... requestedEc2AvailabilityZones) {
if (this.requestedEc2AvailabilityZones == null) {
setRequestedEc2AvailabilityZones(new com.amazonaws.internal.SdkInternalList(requestedEc2AvailabilityZones.length));
}
for (String ele : requestedEc2AvailabilityZones) {
this.requestedEc2AvailabilityZones.add(ele);
}
return this;
}
/**
*
* Applies to clusters configured with the instance fleets option. Specifies one or more Availability Zones in which
* to launch EC2 cluster instances when the EC2-Classic network configuration is supported. Amazon EMR chooses the
* Availability Zone with the best fit from among the list of RequestedEc2AvailabilityZones
, and then
* launches all cluster instances within that Availability Zone. If you do not specify this value, Amazon EMR
* chooses the Availability Zone for you. RequestedEc2SubnetIDs
and
* RequestedEc2AvailabilityZones
cannot be specified together.
*
*
* @param requestedEc2AvailabilityZones
* Applies to clusters configured with the instance fleets option. Specifies one or more Availability Zones
* in which to launch EC2 cluster instances when the EC2-Classic network configuration is supported. Amazon
* EMR chooses the Availability Zone with the best fit from among the list of
* RequestedEc2AvailabilityZones
, and then launches all cluster instances within that
* Availability Zone. If you do not specify this value, Amazon EMR chooses the Availability Zone for you.
* RequestedEc2SubnetIDs
and RequestedEc2AvailabilityZones
cannot be specified
* together.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Ec2InstanceAttributes withRequestedEc2AvailabilityZones(java.util.Collection requestedEc2AvailabilityZones) {
setRequestedEc2AvailabilityZones(requestedEc2AvailabilityZones);
return this;
}
/**
*
* The IAM role that was specified when the cluster was launched. The EC2 instances of the cluster assume this role.
*
*
* @param iamInstanceProfile
* The IAM role that was specified when the cluster was launched. The EC2 instances of the cluster assume
* this role.
*/
public void setIamInstanceProfile(String iamInstanceProfile) {
this.iamInstanceProfile = iamInstanceProfile;
}
/**
*
* The IAM role that was specified when the cluster was launched. The EC2 instances of the cluster assume this role.
*
*
* @return The IAM role that was specified when the cluster was launched. The EC2 instances of the cluster assume
* this role.
*/
public String getIamInstanceProfile() {
return this.iamInstanceProfile;
}
/**
*
* The IAM role that was specified when the cluster was launched. The EC2 instances of the cluster assume this role.
*
*
* @param iamInstanceProfile
* The IAM role that was specified when the cluster was launched. The EC2 instances of the cluster assume
* this role.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Ec2InstanceAttributes withIamInstanceProfile(String iamInstanceProfile) {
setIamInstanceProfile(iamInstanceProfile);
return this;
}
/**
*
* The identifier of the Amazon EC2 security group for the master node.
*
*
* @param emrManagedMasterSecurityGroup
* The identifier of the Amazon EC2 security group for the master node.
*/
public void setEmrManagedMasterSecurityGroup(String emrManagedMasterSecurityGroup) {
this.emrManagedMasterSecurityGroup = emrManagedMasterSecurityGroup;
}
/**
*
* The identifier of the Amazon EC2 security group for the master node.
*
*
* @return The identifier of the Amazon EC2 security group for the master node.
*/
public String getEmrManagedMasterSecurityGroup() {
return this.emrManagedMasterSecurityGroup;
}
/**
*
* The identifier of the Amazon EC2 security group for the master node.
*
*
* @param emrManagedMasterSecurityGroup
* The identifier of the Amazon EC2 security group for the master node.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Ec2InstanceAttributes withEmrManagedMasterSecurityGroup(String emrManagedMasterSecurityGroup) {
setEmrManagedMasterSecurityGroup(emrManagedMasterSecurityGroup);
return this;
}
/**
*
* The identifier of the Amazon EC2 security group for the core and task nodes.
*
*
* @param emrManagedSlaveSecurityGroup
* The identifier of the Amazon EC2 security group for the core and task nodes.
*/
public void setEmrManagedSlaveSecurityGroup(String emrManagedSlaveSecurityGroup) {
this.emrManagedSlaveSecurityGroup = emrManagedSlaveSecurityGroup;
}
/**
*
* The identifier of the Amazon EC2 security group for the core and task nodes.
*
*
* @return The identifier of the Amazon EC2 security group for the core and task nodes.
*/
public String getEmrManagedSlaveSecurityGroup() {
return this.emrManagedSlaveSecurityGroup;
}
/**
*
* The identifier of the Amazon EC2 security group for the core and task nodes.
*
*
* @param emrManagedSlaveSecurityGroup
* The identifier of the Amazon EC2 security group for the core and task nodes.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Ec2InstanceAttributes withEmrManagedSlaveSecurityGroup(String emrManagedSlaveSecurityGroup) {
setEmrManagedSlaveSecurityGroup(emrManagedSlaveSecurityGroup);
return this;
}
/**
*
* The identifier of the Amazon EC2 security group for the Amazon EMR service to access clusters in VPC private
* subnets.
*
*
* @param serviceAccessSecurityGroup
* The identifier of the Amazon EC2 security group for the Amazon EMR service to access clusters in VPC
* private subnets.
*/
public void setServiceAccessSecurityGroup(String serviceAccessSecurityGroup) {
this.serviceAccessSecurityGroup = serviceAccessSecurityGroup;
}
/**
*
* The identifier of the Amazon EC2 security group for the Amazon EMR service to access clusters in VPC private
* subnets.
*
*
* @return The identifier of the Amazon EC2 security group for the Amazon EMR service to access clusters in VPC
* private subnets.
*/
public String getServiceAccessSecurityGroup() {
return this.serviceAccessSecurityGroup;
}
/**
*
* The identifier of the Amazon EC2 security group for the Amazon EMR service to access clusters in VPC private
* subnets.
*
*
* @param serviceAccessSecurityGroup
* The identifier of the Amazon EC2 security group for the Amazon EMR service to access clusters in VPC
* private subnets.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Ec2InstanceAttributes withServiceAccessSecurityGroup(String serviceAccessSecurityGroup) {
setServiceAccessSecurityGroup(serviceAccessSecurityGroup);
return this;
}
/**
*
* A list of additional Amazon EC2 security group IDs for the master node.
*
*
* @return A list of additional Amazon EC2 security group IDs for the master node.
*/
public java.util.List getAdditionalMasterSecurityGroups() {
if (additionalMasterSecurityGroups == null) {
additionalMasterSecurityGroups = new com.amazonaws.internal.SdkInternalList();
}
return additionalMasterSecurityGroups;
}
/**
*
* A list of additional Amazon EC2 security group IDs for the master node.
*
*
* @param additionalMasterSecurityGroups
* A list of additional Amazon EC2 security group IDs for the master node.
*/
public void setAdditionalMasterSecurityGroups(java.util.Collection additionalMasterSecurityGroups) {
if (additionalMasterSecurityGroups == null) {
this.additionalMasterSecurityGroups = null;
return;
}
this.additionalMasterSecurityGroups = new com.amazonaws.internal.SdkInternalList(additionalMasterSecurityGroups);
}
/**
*
* A list of additional Amazon EC2 security group IDs for the master node.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setAdditionalMasterSecurityGroups(java.util.Collection)} or
* {@link #withAdditionalMasterSecurityGroups(java.util.Collection)} if you want to override the existing values.
*
*
* @param additionalMasterSecurityGroups
* A list of additional Amazon EC2 security group IDs for the master node.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Ec2InstanceAttributes withAdditionalMasterSecurityGroups(String... additionalMasterSecurityGroups) {
if (this.additionalMasterSecurityGroups == null) {
setAdditionalMasterSecurityGroups(new com.amazonaws.internal.SdkInternalList(additionalMasterSecurityGroups.length));
}
for (String ele : additionalMasterSecurityGroups) {
this.additionalMasterSecurityGroups.add(ele);
}
return this;
}
/**
*
* A list of additional Amazon EC2 security group IDs for the master node.
*
*
* @param additionalMasterSecurityGroups
* A list of additional Amazon EC2 security group IDs for the master node.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Ec2InstanceAttributes withAdditionalMasterSecurityGroups(java.util.Collection additionalMasterSecurityGroups) {
setAdditionalMasterSecurityGroups(additionalMasterSecurityGroups);
return this;
}
/**
*
* A list of additional Amazon EC2 security group IDs for the core and task nodes.
*
*
* @return A list of additional Amazon EC2 security group IDs for the core and task nodes.
*/
public java.util.List getAdditionalSlaveSecurityGroups() {
if (additionalSlaveSecurityGroups == null) {
additionalSlaveSecurityGroups = new com.amazonaws.internal.SdkInternalList();
}
return additionalSlaveSecurityGroups;
}
/**
*
* A list of additional Amazon EC2 security group IDs for the core and task nodes.
*
*
* @param additionalSlaveSecurityGroups
* A list of additional Amazon EC2 security group IDs for the core and task nodes.
*/
public void setAdditionalSlaveSecurityGroups(java.util.Collection additionalSlaveSecurityGroups) {
if (additionalSlaveSecurityGroups == null) {
this.additionalSlaveSecurityGroups = null;
return;
}
this.additionalSlaveSecurityGroups = new com.amazonaws.internal.SdkInternalList(additionalSlaveSecurityGroups);
}
/**
*
* A list of additional Amazon EC2 security group IDs for the core and task nodes.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setAdditionalSlaveSecurityGroups(java.util.Collection)} or
* {@link #withAdditionalSlaveSecurityGroups(java.util.Collection)} if you want to override the existing values.
*
*
* @param additionalSlaveSecurityGroups
* A list of additional Amazon EC2 security group IDs for the core and task nodes.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Ec2InstanceAttributes withAdditionalSlaveSecurityGroups(String... additionalSlaveSecurityGroups) {
if (this.additionalSlaveSecurityGroups == null) {
setAdditionalSlaveSecurityGroups(new com.amazonaws.internal.SdkInternalList(additionalSlaveSecurityGroups.length));
}
for (String ele : additionalSlaveSecurityGroups) {
this.additionalSlaveSecurityGroups.add(ele);
}
return this;
}
/**
*
* A list of additional Amazon EC2 security group IDs for the core and task nodes.
*
*
* @param additionalSlaveSecurityGroups
* A list of additional Amazon EC2 security group IDs for the core and task nodes.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Ec2InstanceAttributes withAdditionalSlaveSecurityGroups(java.util.Collection additionalSlaveSecurityGroups) {
setAdditionalSlaveSecurityGroups(additionalSlaveSecurityGroups);
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 (getEc2KeyName() != null)
sb.append("Ec2KeyName: ").append(getEc2KeyName()).append(",");
if (getEc2SubnetId() != null)
sb.append("Ec2SubnetId: ").append(getEc2SubnetId()).append(",");
if (getRequestedEc2SubnetIds() != null)
sb.append("RequestedEc2SubnetIds: ").append(getRequestedEc2SubnetIds()).append(",");
if (getEc2AvailabilityZone() != null)
sb.append("Ec2AvailabilityZone: ").append(getEc2AvailabilityZone()).append(",");
if (getRequestedEc2AvailabilityZones() != null)
sb.append("RequestedEc2AvailabilityZones: ").append(getRequestedEc2AvailabilityZones()).append(",");
if (getIamInstanceProfile() != null)
sb.append("IamInstanceProfile: ").append(getIamInstanceProfile()).append(",");
if (getEmrManagedMasterSecurityGroup() != null)
sb.append("EmrManagedMasterSecurityGroup: ").append(getEmrManagedMasterSecurityGroup()).append(",");
if (getEmrManagedSlaveSecurityGroup() != null)
sb.append("EmrManagedSlaveSecurityGroup: ").append(getEmrManagedSlaveSecurityGroup()).append(",");
if (getServiceAccessSecurityGroup() != null)
sb.append("ServiceAccessSecurityGroup: ").append(getServiceAccessSecurityGroup()).append(",");
if (getAdditionalMasterSecurityGroups() != null)
sb.append("AdditionalMasterSecurityGroups: ").append(getAdditionalMasterSecurityGroups()).append(",");
if (getAdditionalSlaveSecurityGroups() != null)
sb.append("AdditionalSlaveSecurityGroups: ").append(getAdditionalSlaveSecurityGroups());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof Ec2InstanceAttributes == false)
return false;
Ec2InstanceAttributes other = (Ec2InstanceAttributes) obj;
if (other.getEc2KeyName() == null ^ this.getEc2KeyName() == null)
return false;
if (other.getEc2KeyName() != null && other.getEc2KeyName().equals(this.getEc2KeyName()) == false)
return false;
if (other.getEc2SubnetId() == null ^ this.getEc2SubnetId() == null)
return false;
if (other.getEc2SubnetId() != null && other.getEc2SubnetId().equals(this.getEc2SubnetId()) == false)
return false;
if (other.getRequestedEc2SubnetIds() == null ^ this.getRequestedEc2SubnetIds() == null)
return false;
if (other.getRequestedEc2SubnetIds() != null && other.getRequestedEc2SubnetIds().equals(this.getRequestedEc2SubnetIds()) == false)
return false;
if (other.getEc2AvailabilityZone() == null ^ this.getEc2AvailabilityZone() == null)
return false;
if (other.getEc2AvailabilityZone() != null && other.getEc2AvailabilityZone().equals(this.getEc2AvailabilityZone()) == false)
return false;
if (other.getRequestedEc2AvailabilityZones() == null ^ this.getRequestedEc2AvailabilityZones() == null)
return false;
if (other.getRequestedEc2AvailabilityZones() != null
&& other.getRequestedEc2AvailabilityZones().equals(this.getRequestedEc2AvailabilityZones()) == false)
return false;
if (other.getIamInstanceProfile() == null ^ this.getIamInstanceProfile() == null)
return false;
if (other.getIamInstanceProfile() != null && other.getIamInstanceProfile().equals(this.getIamInstanceProfile()) == false)
return false;
if (other.getEmrManagedMasterSecurityGroup() == null ^ this.getEmrManagedMasterSecurityGroup() == null)
return false;
if (other.getEmrManagedMasterSecurityGroup() != null
&& other.getEmrManagedMasterSecurityGroup().equals(this.getEmrManagedMasterSecurityGroup()) == false)
return false;
if (other.getEmrManagedSlaveSecurityGroup() == null ^ this.getEmrManagedSlaveSecurityGroup() == null)
return false;
if (other.getEmrManagedSlaveSecurityGroup() != null && other.getEmrManagedSlaveSecurityGroup().equals(this.getEmrManagedSlaveSecurityGroup()) == false)
return false;
if (other.getServiceAccessSecurityGroup() == null ^ this.getServiceAccessSecurityGroup() == null)
return false;
if (other.getServiceAccessSecurityGroup() != null && other.getServiceAccessSecurityGroup().equals(this.getServiceAccessSecurityGroup()) == false)
return false;
if (other.getAdditionalMasterSecurityGroups() == null ^ this.getAdditionalMasterSecurityGroups() == null)
return false;
if (other.getAdditionalMasterSecurityGroups() != null
&& other.getAdditionalMasterSecurityGroups().equals(this.getAdditionalMasterSecurityGroups()) == false)
return false;
if (other.getAdditionalSlaveSecurityGroups() == null ^ this.getAdditionalSlaveSecurityGroups() == null)
return false;
if (other.getAdditionalSlaveSecurityGroups() != null
&& other.getAdditionalSlaveSecurityGroups().equals(this.getAdditionalSlaveSecurityGroups()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getEc2KeyName() == null) ? 0 : getEc2KeyName().hashCode());
hashCode = prime * hashCode + ((getEc2SubnetId() == null) ? 0 : getEc2SubnetId().hashCode());
hashCode = prime * hashCode + ((getRequestedEc2SubnetIds() == null) ? 0 : getRequestedEc2SubnetIds().hashCode());
hashCode = prime * hashCode + ((getEc2AvailabilityZone() == null) ? 0 : getEc2AvailabilityZone().hashCode());
hashCode = prime * hashCode + ((getRequestedEc2AvailabilityZones() == null) ? 0 : getRequestedEc2AvailabilityZones().hashCode());
hashCode = prime * hashCode + ((getIamInstanceProfile() == null) ? 0 : getIamInstanceProfile().hashCode());
hashCode = prime * hashCode + ((getEmrManagedMasterSecurityGroup() == null) ? 0 : getEmrManagedMasterSecurityGroup().hashCode());
hashCode = prime * hashCode + ((getEmrManagedSlaveSecurityGroup() == null) ? 0 : getEmrManagedSlaveSecurityGroup().hashCode());
hashCode = prime * hashCode + ((getServiceAccessSecurityGroup() == null) ? 0 : getServiceAccessSecurityGroup().hashCode());
hashCode = prime * hashCode + ((getAdditionalMasterSecurityGroups() == null) ? 0 : getAdditionalMasterSecurityGroups().hashCode());
hashCode = prime * hashCode + ((getAdditionalSlaveSecurityGroups() == null) ? 0 : getAdditionalSlaveSecurityGroups().hashCode());
return hashCode;
}
@Override
public Ec2InstanceAttributes clone() {
try {
return (Ec2InstanceAttributes) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
@com.amazonaws.annotation.SdkInternalApi
@Override
public void marshall(ProtocolMarshaller protocolMarshaller) {
com.amazonaws.services.elasticmapreduce.model.transform.Ec2InstanceAttributesMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}