com.amazonaws.services.autoscaling.model.CreateLaunchConfigurationRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-autoscaling Show documentation
/*
* Copyright 2015-2020 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.autoscaling.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.AmazonWebServiceRequest;
/**
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CreateLaunchConfigurationRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The name of the launch configuration. This name must be unique per Region per account.
*
*/
private String launchConfigurationName;
/**
*
* The ID of the Amazon Machine Image (AMI) that was assigned during registration. For more information, see Finding an AMI in the
* Amazon EC2 User Guide for Linux Instances.
*
*
* If you do not specify InstanceId
, you must specify ImageId
.
*
*/
private String imageId;
/**
*
* The name of the key pair. For more information, see Amazon EC2 Key Pairs in the
* Amazon EC2 User Guide for Linux Instances.
*
*/
private String keyName;
/**
*
* A list that contains the security groups to assign to the instances in the Auto Scaling group.
*
*
* [EC2-VPC] Specify the security group IDs. For more information, see Security Groups for Your
* VPC in the Amazon Virtual Private Cloud User Guide.
*
*
* [EC2-Classic] Specify either the security group names or the security group IDs. For more information, see Amazon EC2 Security
* Groups in the Amazon EC2 User Guide for Linux Instances.
*
*/
private com.amazonaws.internal.SdkInternalList securityGroups;
/**
*
* The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances to. For more information, see ClassicLink in the Amazon
* EC2 User Guide for Linux Instances and Linking EC2-Classic
* Instances to a VPC in the Amazon EC2 Auto Scaling User Guide.
*
*
* This parameter can only be used if you are launching EC2-Classic instances.
*
*/
private String classicLinkVPCId;
/**
*
* The IDs of one or more security groups for the specified ClassicLink-enabled VPC. For more information, see ClassicLink in the Amazon
* EC2 User Guide for Linux Instances and Linking EC2-Classic
* Instances to a VPC in the Amazon EC2 Auto Scaling User Guide.
*
*
* If you specify the ClassicLinkVPCId
parameter, you must specify this parameter.
*
*/
private com.amazonaws.internal.SdkInternalList classicLinkVPCSecurityGroups;
/**
*
* The Base64-encoded user data to make available to the launched EC2 instances. For more information, see Instance Metadata and User
* Data in the Amazon EC2 User Guide for Linux Instances.
*
*/
private String userData;
/**
*
* The ID of the instance to use to create the launch configuration. The new launch configuration derives attributes
* from the instance, except for the block device mapping.
*
*
* To create a launch configuration with a block device mapping or override any other instance attributes, specify
* them as part of the same request.
*
*
* For more information, see Create a Launch
* Configuration Using an EC2 Instance in the Amazon EC2 Auto Scaling User Guide.
*
*
* If you do not specify InstanceId
, you must specify both ImageId
and
* InstanceType
.
*
*/
private String instanceId;
/**
*
* Specifies the instance type of the EC2 instance.
*
*
* For information about available instance types, see Available
* Instance Types in the Amazon EC2 User Guide for Linux Instances.
*
*
* If you do not specify InstanceId
, you must specify InstanceType
.
*
*/
private String instanceType;
/**
*
* The ID of the kernel associated with the AMI.
*
*/
private String kernelId;
/**
*
* The ID of the RAM disk to select.
*
*/
private String ramdiskId;
/**
*
* A block device mapping, which specifies the block devices for the instance. You can specify virtual devices and
* EBS volumes. For more information, see Block Device
* Mapping in the Amazon EC2 User Guide for Linux Instances.
*
*/
private com.amazonaws.internal.SdkInternalList blockDeviceMappings;
/**
*
* Controls whether instances in this group are launched with detailed (true
) or basic (
* false
) monitoring.
*
*
* The default value is true
(enabled).
*
*
*
* When detailed monitoring is enabled, Amazon CloudWatch generates metrics every minute and your account is charged
* a fee. When you disable detailed monitoring, CloudWatch generates metrics every 5 minutes. For more information,
* see Configure Monitoring for Auto Scaling Instances in the Amazon EC2 Auto Scaling User Guide.
*
*
*/
private InstanceMonitoring instanceMonitoring;
/**
*
* The maximum hourly price to be paid for any Spot Instance launched to fulfill the request. Spot Instances are
* launched when the price you specify exceeds the current Spot price. For more information, see Launching Spot
* Instances in Your Auto Scaling Group in the Amazon EC2 Auto Scaling User Guide.
*
*
*
* When you change your maximum price by creating a new launch configuration, running instances will continue to run
* as long as the maximum price for those running instances is higher than the current Spot price.
*
*
*/
private String spotPrice;
/**
*
* The name or the Amazon Resource Name (ARN) of the instance profile associated with the IAM role for the instance.
* The instance profile contains the IAM role.
*
*
* For more information, see IAM
* Role for Applications That Run on Amazon EC2 Instances in the Amazon EC2 Auto Scaling User Guide.
*
*/
private String iamInstanceProfile;
/**
*
* Specifies whether the launch configuration is optimized for EBS I/O (true
) or not (
* false
). The optimization provides dedicated throughput to Amazon EBS and an optimized configuration
* stack to provide optimal I/O performance. This optimization is not available with all instance types. Additional
* fees are incurred when you enable EBS optimization for an instance type that is not EBS-optimized by default. For
* more information, see Amazon
* EBS-Optimized Instances in the Amazon EC2 User Guide for Linux Instances.
*
*
* The default value is false
.
*
*/
private Boolean ebsOptimized;
/**
*
* For Auto Scaling groups that are running in a virtual private cloud (VPC), specifies whether to assign a public
* IP address to the group's instances. If you specify true
, each instance in the Auto Scaling group
* receives a unique public IP address. For more information, see Launching Auto Scaling Instances in
* a VPC in the Amazon EC2 Auto Scaling User Guide.
*
*
* If you specify this parameter, you must specify at least one subnet for VPCZoneIdentifier
when you
* create your group.
*
*
*
* If the instance is launched into a default subnet, the default is to assign a public IP address, unless you
* disabled the option to assign a public IP address on the subnet. If the instance is launched into a nondefault
* subnet, the default is not to assign a public IP address, unless you enabled the option to assign a public IP
* address on the subnet.
*
*
*/
private Boolean associatePublicIpAddress;
/**
*
* The tenancy of the instance. An instance with dedicated
tenancy runs on isolated, single-tenant
* hardware and can only be launched into a VPC.
*
*
* To launch dedicated instances into a shared tenancy VPC (a VPC with the instance placement tenancy attribute set
* to default
), you must set the value of this parameter to dedicated
.
*
*
* If you specify PlacementTenancy
, you must specify at least one subnet for
* VPCZoneIdentifier
when you create your group.
*
*
* For more information, see Instance Placement
* Tenancy in the Amazon EC2 Auto Scaling User Guide.
*
*
* Valid Values: default
| dedicated
*
*/
private String placementTenancy;
/**
*
* The name of the launch configuration. This name must be unique per Region per account.
*
*
* @param launchConfigurationName
* The name of the launch configuration. This name must be unique per Region per account.
*/
public void setLaunchConfigurationName(String launchConfigurationName) {
this.launchConfigurationName = launchConfigurationName;
}
/**
*
* The name of the launch configuration. This name must be unique per Region per account.
*
*
* @return The name of the launch configuration. This name must be unique per Region per account.
*/
public String getLaunchConfigurationName() {
return this.launchConfigurationName;
}
/**
*
* The name of the launch configuration. This name must be unique per Region per account.
*
*
* @param launchConfigurationName
* The name of the launch configuration. This name must be unique per Region per account.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateLaunchConfigurationRequest withLaunchConfigurationName(String launchConfigurationName) {
setLaunchConfigurationName(launchConfigurationName);
return this;
}
/**
*
* The ID of the Amazon Machine Image (AMI) that was assigned during registration. For more information, see Finding an AMI in the
* Amazon EC2 User Guide for Linux Instances.
*
*
* If you do not specify InstanceId
, you must specify ImageId
.
*
*
* @param imageId
* The ID of the Amazon Machine Image (AMI) that was assigned during registration. For more information, see
* Finding an AMI in
* the Amazon EC2 User Guide for Linux Instances.
*
* If you do not specify InstanceId
, you must specify ImageId
.
*/
public void setImageId(String imageId) {
this.imageId = imageId;
}
/**
*
* The ID of the Amazon Machine Image (AMI) that was assigned during registration. For more information, see Finding an AMI in the
* Amazon EC2 User Guide for Linux Instances.
*
*
* If you do not specify InstanceId
, you must specify ImageId
.
*
*
* @return The ID of the Amazon Machine Image (AMI) that was assigned during registration. For more information, see
* Finding an AMI in
* the Amazon EC2 User Guide for Linux Instances.
*
* If you do not specify InstanceId
, you must specify ImageId
.
*/
public String getImageId() {
return this.imageId;
}
/**
*
* The ID of the Amazon Machine Image (AMI) that was assigned during registration. For more information, see Finding an AMI in the
* Amazon EC2 User Guide for Linux Instances.
*
*
* If you do not specify InstanceId
, you must specify ImageId
.
*
*
* @param imageId
* The ID of the Amazon Machine Image (AMI) that was assigned during registration. For more information, see
* Finding an AMI in
* the Amazon EC2 User Guide for Linux Instances.
*
* If you do not specify InstanceId
, you must specify ImageId
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateLaunchConfigurationRequest withImageId(String imageId) {
setImageId(imageId);
return this;
}
/**
*
* The name of the key pair. For more information, see Amazon EC2 Key Pairs in the
* Amazon EC2 User Guide for Linux Instances.
*
*
* @param keyName
* The name of the key pair. For more information, see Amazon EC2 Key Pairs in
* the Amazon EC2 User Guide for Linux Instances.
*/
public void setKeyName(String keyName) {
this.keyName = keyName;
}
/**
*
* The name of the key pair. For more information, see Amazon EC2 Key Pairs in the
* Amazon EC2 User Guide for Linux Instances.
*
*
* @return The name of the key pair. For more information, see Amazon EC2 Key Pairs in
* the Amazon EC2 User Guide for Linux Instances.
*/
public String getKeyName() {
return this.keyName;
}
/**
*
* The name of the key pair. For more information, see Amazon EC2 Key Pairs in the
* Amazon EC2 User Guide for Linux Instances.
*
*
* @param keyName
* The name of the key pair. For more information, see Amazon EC2 Key Pairs in
* the Amazon EC2 User Guide for Linux Instances.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateLaunchConfigurationRequest withKeyName(String keyName) {
setKeyName(keyName);
return this;
}
/**
*
* A list that contains the security groups to assign to the instances in the Auto Scaling group.
*
*
* [EC2-VPC] Specify the security group IDs. For more information, see Security Groups for Your
* VPC in the Amazon Virtual Private Cloud User Guide.
*
*
* [EC2-Classic] Specify either the security group names or the security group IDs. For more information, see Amazon EC2 Security
* Groups in the Amazon EC2 User Guide for Linux Instances.
*
*
* @return A list that contains the security groups to assign to the instances in the Auto Scaling group.
*
* [EC2-VPC] Specify the security group IDs. For more information, see Security Groups for
* Your VPC in the Amazon Virtual Private Cloud User Guide.
*
*
* [EC2-Classic] Specify either the security group names or the security group IDs. For more information,
* see Amazon EC2
* Security Groups in the Amazon EC2 User Guide for Linux Instances.
*/
public java.util.List getSecurityGroups() {
if (securityGroups == null) {
securityGroups = new com.amazonaws.internal.SdkInternalList();
}
return securityGroups;
}
/**
*
* A list that contains the security groups to assign to the instances in the Auto Scaling group.
*
*
* [EC2-VPC] Specify the security group IDs. For more information, see Security Groups for Your
* VPC in the Amazon Virtual Private Cloud User Guide.
*
*
* [EC2-Classic] Specify either the security group names or the security group IDs. For more information, see Amazon EC2 Security
* Groups in the Amazon EC2 User Guide for Linux Instances.
*
*
* @param securityGroups
* A list that contains the security groups to assign to the instances in the Auto Scaling group.
*
* [EC2-VPC] Specify the security group IDs. For more information, see Security Groups for
* Your VPC in the Amazon Virtual Private Cloud User Guide.
*
*
* [EC2-Classic] Specify either the security group names or the security group IDs. For more information, see
* Amazon EC2
* Security Groups in the Amazon EC2 User Guide for Linux Instances.
*/
public void setSecurityGroups(java.util.Collection securityGroups) {
if (securityGroups == null) {
this.securityGroups = null;
return;
}
this.securityGroups = new com.amazonaws.internal.SdkInternalList(securityGroups);
}
/**
*
* A list that contains the security groups to assign to the instances in the Auto Scaling group.
*
*
* [EC2-VPC] Specify the security group IDs. For more information, see Security Groups for Your
* VPC in the Amazon Virtual Private Cloud User Guide.
*
*
* [EC2-Classic] Specify either the security group names or the security group IDs. For more information, see Amazon EC2 Security
* Groups in the Amazon EC2 User Guide for Linux Instances.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setSecurityGroups(java.util.Collection)} or {@link #withSecurityGroups(java.util.Collection)} if you want
* to override the existing values.
*
*
* @param securityGroups
* A list that contains the security groups to assign to the instances in the Auto Scaling group.
*
* [EC2-VPC] Specify the security group IDs. For more information, see Security Groups for
* Your VPC in the Amazon Virtual Private Cloud User Guide.
*
*
* [EC2-Classic] Specify either the security group names or the security group IDs. For more information, see
* Amazon EC2
* Security Groups in the Amazon EC2 User Guide for Linux Instances.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateLaunchConfigurationRequest withSecurityGroups(String... securityGroups) {
if (this.securityGroups == null) {
setSecurityGroups(new com.amazonaws.internal.SdkInternalList(securityGroups.length));
}
for (String ele : securityGroups) {
this.securityGroups.add(ele);
}
return this;
}
/**
*
* A list that contains the security groups to assign to the instances in the Auto Scaling group.
*
*
* [EC2-VPC] Specify the security group IDs. For more information, see Security Groups for Your
* VPC in the Amazon Virtual Private Cloud User Guide.
*
*
* [EC2-Classic] Specify either the security group names or the security group IDs. For more information, see Amazon EC2 Security
* Groups in the Amazon EC2 User Guide for Linux Instances.
*
*
* @param securityGroups
* A list that contains the security groups to assign to the instances in the Auto Scaling group.
*
* [EC2-VPC] Specify the security group IDs. For more information, see Security Groups for
* Your VPC in the Amazon Virtual Private Cloud User Guide.
*
*
* [EC2-Classic] Specify either the security group names or the security group IDs. For more information, see
* Amazon EC2
* Security Groups in the Amazon EC2 User Guide for Linux Instances.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateLaunchConfigurationRequest withSecurityGroups(java.util.Collection securityGroups) {
setSecurityGroups(securityGroups);
return this;
}
/**
*
* The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances to. For more information, see ClassicLink in the Amazon
* EC2 User Guide for Linux Instances and Linking EC2-Classic
* Instances to a VPC in the Amazon EC2 Auto Scaling User Guide.
*
*
* This parameter can only be used if you are launching EC2-Classic instances.
*
*
* @param classicLinkVPCId
* The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances to. For more information, see ClassicLink in the
* Amazon EC2 User Guide for Linux Instances and Linking
* EC2-Classic Instances to a VPC in the Amazon EC2 Auto Scaling User Guide.
*
* This parameter can only be used if you are launching EC2-Classic instances.
*/
public void setClassicLinkVPCId(String classicLinkVPCId) {
this.classicLinkVPCId = classicLinkVPCId;
}
/**
*
* The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances to. For more information, see ClassicLink in the Amazon
* EC2 User Guide for Linux Instances and Linking EC2-Classic
* Instances to a VPC in the Amazon EC2 Auto Scaling User Guide.
*
*
* This parameter can only be used if you are launching EC2-Classic instances.
*
*
* @return The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances to. For more information, see ClassicLink in the
* Amazon EC2 User Guide for Linux Instances and Linking
* EC2-Classic Instances to a VPC in the Amazon EC2 Auto Scaling User Guide.
*
* This parameter can only be used if you are launching EC2-Classic instances.
*/
public String getClassicLinkVPCId() {
return this.classicLinkVPCId;
}
/**
*
* The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances to. For more information, see ClassicLink in the Amazon
* EC2 User Guide for Linux Instances and Linking EC2-Classic
* Instances to a VPC in the Amazon EC2 Auto Scaling User Guide.
*
*
* This parameter can only be used if you are launching EC2-Classic instances.
*
*
* @param classicLinkVPCId
* The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances to. For more information, see ClassicLink in the
* Amazon EC2 User Guide for Linux Instances and Linking
* EC2-Classic Instances to a VPC in the Amazon EC2 Auto Scaling User Guide.
*
* This parameter can only be used if you are launching EC2-Classic instances.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateLaunchConfigurationRequest withClassicLinkVPCId(String classicLinkVPCId) {
setClassicLinkVPCId(classicLinkVPCId);
return this;
}
/**
*
* The IDs of one or more security groups for the specified ClassicLink-enabled VPC. For more information, see ClassicLink in the Amazon
* EC2 User Guide for Linux Instances and Linking EC2-Classic
* Instances to a VPC in the Amazon EC2 Auto Scaling User Guide.
*
*
* If you specify the ClassicLinkVPCId
parameter, you must specify this parameter.
*
*
* @return The IDs of one or more security groups for the specified ClassicLink-enabled VPC. For more information,
* see ClassicLink in
* the Amazon EC2 User Guide for Linux Instances and Linking
* EC2-Classic Instances to a VPC in the Amazon EC2 Auto Scaling User Guide.
*
* If you specify the ClassicLinkVPCId
parameter, you must specify this parameter.
*/
public java.util.List getClassicLinkVPCSecurityGroups() {
if (classicLinkVPCSecurityGroups == null) {
classicLinkVPCSecurityGroups = new com.amazonaws.internal.SdkInternalList();
}
return classicLinkVPCSecurityGroups;
}
/**
*
* The IDs of one or more security groups for the specified ClassicLink-enabled VPC. For more information, see ClassicLink in the Amazon
* EC2 User Guide for Linux Instances and Linking EC2-Classic
* Instances to a VPC in the Amazon EC2 Auto Scaling User Guide.
*
*
* If you specify the ClassicLinkVPCId
parameter, you must specify this parameter.
*
*
* @param classicLinkVPCSecurityGroups
* The IDs of one or more security groups for the specified ClassicLink-enabled VPC. For more information,
* see ClassicLink in
* the Amazon EC2 User Guide for Linux Instances and Linking
* EC2-Classic Instances to a VPC in the Amazon EC2 Auto Scaling User Guide.
*
* If you specify the ClassicLinkVPCId
parameter, you must specify this parameter.
*/
public void setClassicLinkVPCSecurityGroups(java.util.Collection classicLinkVPCSecurityGroups) {
if (classicLinkVPCSecurityGroups == null) {
this.classicLinkVPCSecurityGroups = null;
return;
}
this.classicLinkVPCSecurityGroups = new com.amazonaws.internal.SdkInternalList(classicLinkVPCSecurityGroups);
}
/**
*
* The IDs of one or more security groups for the specified ClassicLink-enabled VPC. For more information, see ClassicLink in the Amazon
* EC2 User Guide for Linux Instances and Linking EC2-Classic
* Instances to a VPC in the Amazon EC2 Auto Scaling User Guide.
*
*
* If you specify the ClassicLinkVPCId
parameter, you must specify this parameter.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setClassicLinkVPCSecurityGroups(java.util.Collection)} or
* {@link #withClassicLinkVPCSecurityGroups(java.util.Collection)} if you want to override the existing values.
*
*
* @param classicLinkVPCSecurityGroups
* The IDs of one or more security groups for the specified ClassicLink-enabled VPC. For more information,
* see ClassicLink in
* the Amazon EC2 User Guide for Linux Instances and Linking
* EC2-Classic Instances to a VPC in the Amazon EC2 Auto Scaling User Guide.
*
* If you specify the ClassicLinkVPCId
parameter, you must specify this parameter.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateLaunchConfigurationRequest withClassicLinkVPCSecurityGroups(String... classicLinkVPCSecurityGroups) {
if (this.classicLinkVPCSecurityGroups == null) {
setClassicLinkVPCSecurityGroups(new com.amazonaws.internal.SdkInternalList(classicLinkVPCSecurityGroups.length));
}
for (String ele : classicLinkVPCSecurityGroups) {
this.classicLinkVPCSecurityGroups.add(ele);
}
return this;
}
/**
*
* The IDs of one or more security groups for the specified ClassicLink-enabled VPC. For more information, see ClassicLink in the Amazon
* EC2 User Guide for Linux Instances and Linking EC2-Classic
* Instances to a VPC in the Amazon EC2 Auto Scaling User Guide.
*
*
* If you specify the ClassicLinkVPCId
parameter, you must specify this parameter.
*
*
* @param classicLinkVPCSecurityGroups
* The IDs of one or more security groups for the specified ClassicLink-enabled VPC. For more information,
* see ClassicLink in
* the Amazon EC2 User Guide for Linux Instances and Linking
* EC2-Classic Instances to a VPC in the Amazon EC2 Auto Scaling User Guide.
*
* If you specify the ClassicLinkVPCId
parameter, you must specify this parameter.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateLaunchConfigurationRequest withClassicLinkVPCSecurityGroups(java.util.Collection classicLinkVPCSecurityGroups) {
setClassicLinkVPCSecurityGroups(classicLinkVPCSecurityGroups);
return this;
}
/**
*
* The Base64-encoded user data to make available to the launched EC2 instances. For more information, see Instance Metadata and User
* Data in the Amazon EC2 User Guide for Linux Instances.
*
*
* @param userData
* The Base64-encoded user data to make available to the launched EC2 instances. For more information, see Instance Metadata
* and User Data in the Amazon EC2 User Guide for Linux Instances.
*/
public void setUserData(String userData) {
this.userData = userData;
}
/**
*
* The Base64-encoded user data to make available to the launched EC2 instances. For more information, see Instance Metadata and User
* Data in the Amazon EC2 User Guide for Linux Instances.
*
*
* @return The Base64-encoded user data to make available to the launched EC2 instances. For more information, see
* Instance
* Metadata and User Data in the Amazon EC2 User Guide for Linux Instances.
*/
public String getUserData() {
return this.userData;
}
/**
*
* The Base64-encoded user data to make available to the launched EC2 instances. For more information, see Instance Metadata and User
* Data in the Amazon EC2 User Guide for Linux Instances.
*
*
* @param userData
* The Base64-encoded user data to make available to the launched EC2 instances. For more information, see Instance Metadata
* and User Data in the Amazon EC2 User Guide for Linux Instances.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateLaunchConfigurationRequest withUserData(String userData) {
setUserData(userData);
return this;
}
/**
*
* The ID of the instance to use to create the launch configuration. The new launch configuration derives attributes
* from the instance, except for the block device mapping.
*
*
* To create a launch configuration with a block device mapping or override any other instance attributes, specify
* them as part of the same request.
*
*
* For more information, see Create a Launch
* Configuration Using an EC2 Instance in the Amazon EC2 Auto Scaling User Guide.
*
*
* If you do not specify InstanceId
, you must specify both ImageId
and
* InstanceType
.
*
*
* @param instanceId
* The ID of the instance to use to create the launch configuration. The new launch configuration derives
* attributes from the instance, except for the block device mapping.
*
* To create a launch configuration with a block device mapping or override any other instance attributes,
* specify them as part of the same request.
*
*
* For more information, see Create a
* Launch Configuration Using an EC2 Instance in the Amazon EC2 Auto Scaling User Guide.
*
*
* If you do not specify InstanceId
, you must specify both ImageId
and
* InstanceType
.
*/
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
/**
*
* The ID of the instance to use to create the launch configuration. The new launch configuration derives attributes
* from the instance, except for the block device mapping.
*
*
* To create a launch configuration with a block device mapping or override any other instance attributes, specify
* them as part of the same request.
*
*
* For more information, see Create a Launch
* Configuration Using an EC2 Instance in the Amazon EC2 Auto Scaling User Guide.
*
*
* If you do not specify InstanceId
, you must specify both ImageId
and
* InstanceType
.
*
*
* @return The ID of the instance to use to create the launch configuration. The new launch configuration derives
* attributes from the instance, except for the block device mapping.
*
* To create a launch configuration with a block device mapping or override any other instance attributes,
* specify them as part of the same request.
*
*
* For more information, see Create a
* Launch Configuration Using an EC2 Instance in the Amazon EC2 Auto Scaling User Guide.
*
*
* If you do not specify InstanceId
, you must specify both ImageId
and
* InstanceType
.
*/
public String getInstanceId() {
return this.instanceId;
}
/**
*
* The ID of the instance to use to create the launch configuration. The new launch configuration derives attributes
* from the instance, except for the block device mapping.
*
*
* To create a launch configuration with a block device mapping or override any other instance attributes, specify
* them as part of the same request.
*
*
* For more information, see Create a Launch
* Configuration Using an EC2 Instance in the Amazon EC2 Auto Scaling User Guide.
*
*
* If you do not specify InstanceId
, you must specify both ImageId
and
* InstanceType
.
*
*
* @param instanceId
* The ID of the instance to use to create the launch configuration. The new launch configuration derives
* attributes from the instance, except for the block device mapping.
*
* To create a launch configuration with a block device mapping or override any other instance attributes,
* specify them as part of the same request.
*
*
* For more information, see Create a
* Launch Configuration Using an EC2 Instance in the Amazon EC2 Auto Scaling User Guide.
*
*
* If you do not specify InstanceId
, you must specify both ImageId
and
* InstanceType
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateLaunchConfigurationRequest withInstanceId(String instanceId) {
setInstanceId(instanceId);
return this;
}
/**
*
* Specifies the instance type of the EC2 instance.
*
*
* For information about available instance types, see Available
* Instance Types in the Amazon EC2 User Guide for Linux Instances.
*
*
* If you do not specify InstanceId
, you must specify InstanceType
.
*
*
* @param instanceType
* Specifies the instance type of the EC2 instance.
*
* For information about available instance types, see Available Instance Types in the Amazon EC2 User Guide for Linux Instances.
*
*
* If you do not specify InstanceId
, you must specify InstanceType
.
*/
public void setInstanceType(String instanceType) {
this.instanceType = instanceType;
}
/**
*
* Specifies the instance type of the EC2 instance.
*
*
* For information about available instance types, see Available
* Instance Types in the Amazon EC2 User Guide for Linux Instances.
*
*
* If you do not specify InstanceId
, you must specify InstanceType
.
*
*
* @return Specifies the instance type of the EC2 instance.
*
* For information about available instance types, see Available Instance Types in the Amazon EC2 User Guide for Linux Instances.
*
*
* If you do not specify InstanceId
, you must specify InstanceType
.
*/
public String getInstanceType() {
return this.instanceType;
}
/**
*
* Specifies the instance type of the EC2 instance.
*
*
* For information about available instance types, see Available
* Instance Types in the Amazon EC2 User Guide for Linux Instances.
*
*
* If you do not specify InstanceId
, you must specify InstanceType
.
*
*
* @param instanceType
* Specifies the instance type of the EC2 instance.
*
* For information about available instance types, see Available Instance Types in the Amazon EC2 User Guide for Linux Instances.
*
*
* If you do not specify InstanceId
, you must specify InstanceType
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateLaunchConfigurationRequest withInstanceType(String instanceType) {
setInstanceType(instanceType);
return this;
}
/**
*
* The ID of the kernel associated with the AMI.
*
*
* @param kernelId
* The ID of the kernel associated with the AMI.
*/
public void setKernelId(String kernelId) {
this.kernelId = kernelId;
}
/**
*
* The ID of the kernel associated with the AMI.
*
*
* @return The ID of the kernel associated with the AMI.
*/
public String getKernelId() {
return this.kernelId;
}
/**
*
* The ID of the kernel associated with the AMI.
*
*
* @param kernelId
* The ID of the kernel associated with the AMI.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateLaunchConfigurationRequest withKernelId(String kernelId) {
setKernelId(kernelId);
return this;
}
/**
*
* The ID of the RAM disk to select.
*
*
* @param ramdiskId
* The ID of the RAM disk to select.
*/
public void setRamdiskId(String ramdiskId) {
this.ramdiskId = ramdiskId;
}
/**
*
* The ID of the RAM disk to select.
*
*
* @return The ID of the RAM disk to select.
*/
public String getRamdiskId() {
return this.ramdiskId;
}
/**
*
* The ID of the RAM disk to select.
*
*
* @param ramdiskId
* The ID of the RAM disk to select.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateLaunchConfigurationRequest withRamdiskId(String ramdiskId) {
setRamdiskId(ramdiskId);
return this;
}
/**
*
* A block device mapping, which specifies the block devices for the instance. You can specify virtual devices and
* EBS volumes. For more information, see Block Device
* Mapping in the Amazon EC2 User Guide for Linux Instances.
*
*
* @return A block device mapping, which specifies the block devices for the instance. You can specify virtual
* devices and EBS volumes. For more information, see Block
* Device Mapping in the Amazon EC2 User Guide for Linux Instances.
*/
public java.util.List getBlockDeviceMappings() {
if (blockDeviceMappings == null) {
blockDeviceMappings = new com.amazonaws.internal.SdkInternalList();
}
return blockDeviceMappings;
}
/**
*
* A block device mapping, which specifies the block devices for the instance. You can specify virtual devices and
* EBS volumes. For more information, see Block Device
* Mapping in the Amazon EC2 User Guide for Linux Instances.
*
*
* @param blockDeviceMappings
* A block device mapping, which specifies the block devices for the instance. You can specify virtual
* devices and EBS volumes. For more information, see Block Device
* Mapping in the Amazon EC2 User Guide for Linux Instances.
*/
public void setBlockDeviceMappings(java.util.Collection blockDeviceMappings) {
if (blockDeviceMappings == null) {
this.blockDeviceMappings = null;
return;
}
this.blockDeviceMappings = new com.amazonaws.internal.SdkInternalList(blockDeviceMappings);
}
/**
*
* A block device mapping, which specifies the block devices for the instance. You can specify virtual devices and
* EBS volumes. For more information, see Block Device
* Mapping in the Amazon EC2 User Guide for Linux Instances.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setBlockDeviceMappings(java.util.Collection)} or {@link #withBlockDeviceMappings(java.util.Collection)}
* if you want to override the existing values.
*
*
* @param blockDeviceMappings
* A block device mapping, which specifies the block devices for the instance. You can specify virtual
* devices and EBS volumes. For more information, see Block Device
* Mapping in the Amazon EC2 User Guide for Linux Instances.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateLaunchConfigurationRequest withBlockDeviceMappings(BlockDeviceMapping... blockDeviceMappings) {
if (this.blockDeviceMappings == null) {
setBlockDeviceMappings(new com.amazonaws.internal.SdkInternalList(blockDeviceMappings.length));
}
for (BlockDeviceMapping ele : blockDeviceMappings) {
this.blockDeviceMappings.add(ele);
}
return this;
}
/**
*
* A block device mapping, which specifies the block devices for the instance. You can specify virtual devices and
* EBS volumes. For more information, see Block Device
* Mapping in the Amazon EC2 User Guide for Linux Instances.
*
*
* @param blockDeviceMappings
* A block device mapping, which specifies the block devices for the instance. You can specify virtual
* devices and EBS volumes. For more information, see Block Device
* Mapping in the Amazon EC2 User Guide for Linux Instances.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateLaunchConfigurationRequest withBlockDeviceMappings(java.util.Collection blockDeviceMappings) {
setBlockDeviceMappings(blockDeviceMappings);
return this;
}
/**
*
* Controls whether instances in this group are launched with detailed (true
) or basic (
* false
) monitoring.
*
*
* The default value is true
(enabled).
*
*
*
* When detailed monitoring is enabled, Amazon CloudWatch generates metrics every minute and your account is charged
* a fee. When you disable detailed monitoring, CloudWatch generates metrics every 5 minutes. For more information,
* see Configure Monitoring for Auto Scaling Instances in the Amazon EC2 Auto Scaling User Guide.
*
*
*
* @param instanceMonitoring
* Controls whether instances in this group are launched with detailed (true
) or basic (
* false
) monitoring.
*
* The default value is true
(enabled).
*
*
*
* When detailed monitoring is enabled, Amazon CloudWatch generates metrics every minute and your account is
* charged a fee. When you disable detailed monitoring, CloudWatch generates metrics every 5 minutes. For
* more information, see Configure Monitoring for Auto Scaling Instances in the Amazon EC2 Auto Scaling User Guide.
*
*/
public void setInstanceMonitoring(InstanceMonitoring instanceMonitoring) {
this.instanceMonitoring = instanceMonitoring;
}
/**
*
* Controls whether instances in this group are launched with detailed (true
) or basic (
* false
) monitoring.
*
*
* The default value is true
(enabled).
*
*
*
* When detailed monitoring is enabled, Amazon CloudWatch generates metrics every minute and your account is charged
* a fee. When you disable detailed monitoring, CloudWatch generates metrics every 5 minutes. For more information,
* see Configure Monitoring for Auto Scaling Instances in the Amazon EC2 Auto Scaling User Guide.
*
*
*
* @return Controls whether instances in this group are launched with detailed (true
) or basic (
* false
) monitoring.
*
* The default value is true
(enabled).
*
*
*
* When detailed monitoring is enabled, Amazon CloudWatch generates metrics every minute and your account is
* charged a fee. When you disable detailed monitoring, CloudWatch generates metrics every 5 minutes. For
* more information, see Configure Monitoring for Auto Scaling Instances in the Amazon EC2 Auto Scaling User Guide.
*
*/
public InstanceMonitoring getInstanceMonitoring() {
return this.instanceMonitoring;
}
/**
*
* Controls whether instances in this group are launched with detailed (true
) or basic (
* false
) monitoring.
*
*
* The default value is true
(enabled).
*
*
*
* When detailed monitoring is enabled, Amazon CloudWatch generates metrics every minute and your account is charged
* a fee. When you disable detailed monitoring, CloudWatch generates metrics every 5 minutes. For more information,
* see Configure Monitoring for Auto Scaling Instances in the Amazon EC2 Auto Scaling User Guide.
*
*
*
* @param instanceMonitoring
* Controls whether instances in this group are launched with detailed (true
) or basic (
* false
) monitoring.
*
* The default value is true
(enabled).
*
*
*
* When detailed monitoring is enabled, Amazon CloudWatch generates metrics every minute and your account is
* charged a fee. When you disable detailed monitoring, CloudWatch generates metrics every 5 minutes. For
* more information, see Configure Monitoring for Auto Scaling Instances in the Amazon EC2 Auto Scaling User Guide.
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateLaunchConfigurationRequest withInstanceMonitoring(InstanceMonitoring instanceMonitoring) {
setInstanceMonitoring(instanceMonitoring);
return this;
}
/**
*
* The maximum hourly price to be paid for any Spot Instance launched to fulfill the request. Spot Instances are
* launched when the price you specify exceeds the current Spot price. For more information, see Launching Spot
* Instances in Your Auto Scaling Group in the Amazon EC2 Auto Scaling User Guide.
*
*
*
* When you change your maximum price by creating a new launch configuration, running instances will continue to run
* as long as the maximum price for those running instances is higher than the current Spot price.
*
*
*
* @param spotPrice
* The maximum hourly price to be paid for any Spot Instance launched to fulfill the request. Spot Instances
* are launched when the price you specify exceeds the current Spot price. For more information, see Launching Spot
* Instances in Your Auto Scaling Group in the Amazon EC2 Auto Scaling User Guide.
*
* When you change your maximum price by creating a new launch configuration, running instances will continue
* to run as long as the maximum price for those running instances is higher than the current Spot price.
*
*/
public void setSpotPrice(String spotPrice) {
this.spotPrice = spotPrice;
}
/**
*
* The maximum hourly price to be paid for any Spot Instance launched to fulfill the request. Spot Instances are
* launched when the price you specify exceeds the current Spot price. For more information, see Launching Spot
* Instances in Your Auto Scaling Group in the Amazon EC2 Auto Scaling User Guide.
*
*
*
* When you change your maximum price by creating a new launch configuration, running instances will continue to run
* as long as the maximum price for those running instances is higher than the current Spot price.
*
*
*
* @return The maximum hourly price to be paid for any Spot Instance launched to fulfill the request. Spot Instances
* are launched when the price you specify exceeds the current Spot price. For more information, see Launching
* Spot Instances in Your Auto Scaling Group in the Amazon EC2 Auto Scaling User Guide.
*
*
* When you change your maximum price by creating a new launch configuration, running instances will
* continue to run as long as the maximum price for those running instances is higher than the current Spot
* price.
*
*/
public String getSpotPrice() {
return this.spotPrice;
}
/**
*
* The maximum hourly price to be paid for any Spot Instance launched to fulfill the request. Spot Instances are
* launched when the price you specify exceeds the current Spot price. For more information, see Launching Spot
* Instances in Your Auto Scaling Group in the Amazon EC2 Auto Scaling User Guide.
*
*
*
* When you change your maximum price by creating a new launch configuration, running instances will continue to run
* as long as the maximum price for those running instances is higher than the current Spot price.
*
*
*
* @param spotPrice
* The maximum hourly price to be paid for any Spot Instance launched to fulfill the request. Spot Instances
* are launched when the price you specify exceeds the current Spot price. For more information, see Launching Spot
* Instances in Your Auto Scaling Group in the Amazon EC2 Auto Scaling User Guide.
*
* When you change your maximum price by creating a new launch configuration, running instances will continue
* to run as long as the maximum price for those running instances is higher than the current Spot price.
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateLaunchConfigurationRequest withSpotPrice(String spotPrice) {
setSpotPrice(spotPrice);
return this;
}
/**
*
* The name or the Amazon Resource Name (ARN) of the instance profile associated with the IAM role for the instance.
* The instance profile contains the IAM role.
*
*
* For more information, see IAM
* Role for Applications That Run on Amazon EC2 Instances in the Amazon EC2 Auto Scaling User Guide.
*
*
* @param iamInstanceProfile
* The name or the Amazon Resource Name (ARN) of the instance profile associated with the IAM role for the
* instance. The instance profile contains the IAM role.
*
* For more information, see IAM Role for Applications
* That Run on Amazon EC2 Instances in the Amazon EC2 Auto Scaling User Guide.
*/
public void setIamInstanceProfile(String iamInstanceProfile) {
this.iamInstanceProfile = iamInstanceProfile;
}
/**
*
* The name or the Amazon Resource Name (ARN) of the instance profile associated with the IAM role for the instance.
* The instance profile contains the IAM role.
*
*
* For more information, see IAM
* Role for Applications That Run on Amazon EC2 Instances in the Amazon EC2 Auto Scaling User Guide.
*
*
* @return The name or the Amazon Resource Name (ARN) of the instance profile associated with the IAM role for the
* instance. The instance profile contains the IAM role.
*
* For more information, see IAM Role for Applications
* That Run on Amazon EC2 Instances in the Amazon EC2 Auto Scaling User Guide.
*/
public String getIamInstanceProfile() {
return this.iamInstanceProfile;
}
/**
*
* The name or the Amazon Resource Name (ARN) of the instance profile associated with the IAM role for the instance.
* The instance profile contains the IAM role.
*
*
* For more information, see IAM
* Role for Applications That Run on Amazon EC2 Instances in the Amazon EC2 Auto Scaling User Guide.
*
*
* @param iamInstanceProfile
* The name or the Amazon Resource Name (ARN) of the instance profile associated with the IAM role for the
* instance. The instance profile contains the IAM role.
*
* For more information, see IAM Role for Applications
* That Run on Amazon EC2 Instances in the Amazon EC2 Auto Scaling User Guide.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateLaunchConfigurationRequest withIamInstanceProfile(String iamInstanceProfile) {
setIamInstanceProfile(iamInstanceProfile);
return this;
}
/**
*
* Specifies whether the launch configuration is optimized for EBS I/O (true
) or not (
* false
). The optimization provides dedicated throughput to Amazon EBS and an optimized configuration
* stack to provide optimal I/O performance. This optimization is not available with all instance types. Additional
* fees are incurred when you enable EBS optimization for an instance type that is not EBS-optimized by default. For
* more information, see Amazon
* EBS-Optimized Instances in the Amazon EC2 User Guide for Linux Instances.
*
*
* The default value is false
.
*
*
* @param ebsOptimized
* Specifies whether the launch configuration is optimized for EBS I/O (true
) or not (
* false
). The optimization provides dedicated throughput to Amazon EBS and an optimized
* configuration stack to provide optimal I/O performance. This optimization is not available with all
* instance types. Additional fees are incurred when you enable EBS optimization for an instance type that is
* not EBS-optimized by default. For more information, see Amazon EBS-Optimized
* Instances in the Amazon EC2 User Guide for Linux Instances.
*
* The default value is false
.
*/
public void setEbsOptimized(Boolean ebsOptimized) {
this.ebsOptimized = ebsOptimized;
}
/**
*
* Specifies whether the launch configuration is optimized for EBS I/O (true
) or not (
* false
). The optimization provides dedicated throughput to Amazon EBS and an optimized configuration
* stack to provide optimal I/O performance. This optimization is not available with all instance types. Additional
* fees are incurred when you enable EBS optimization for an instance type that is not EBS-optimized by default. For
* more information, see Amazon
* EBS-Optimized Instances in the Amazon EC2 User Guide for Linux Instances.
*
*
* The default value is false
.
*
*
* @return Specifies whether the launch configuration is optimized for EBS I/O (true
) or not (
* false
). The optimization provides dedicated throughput to Amazon EBS and an optimized
* configuration stack to provide optimal I/O performance. This optimization is not available with all
* instance types. Additional fees are incurred when you enable EBS optimization for an instance type that
* is not EBS-optimized by default. For more information, see Amazon EBS-Optimized
* Instances in the Amazon EC2 User Guide for Linux Instances.
*
* The default value is false
.
*/
public Boolean getEbsOptimized() {
return this.ebsOptimized;
}
/**
*
* Specifies whether the launch configuration is optimized for EBS I/O (true
) or not (
* false
). The optimization provides dedicated throughput to Amazon EBS and an optimized configuration
* stack to provide optimal I/O performance. This optimization is not available with all instance types. Additional
* fees are incurred when you enable EBS optimization for an instance type that is not EBS-optimized by default. For
* more information, see Amazon
* EBS-Optimized Instances in the Amazon EC2 User Guide for Linux Instances.
*
*
* The default value is false
.
*
*
* @param ebsOptimized
* Specifies whether the launch configuration is optimized for EBS I/O (true
) or not (
* false
). The optimization provides dedicated throughput to Amazon EBS and an optimized
* configuration stack to provide optimal I/O performance. This optimization is not available with all
* instance types. Additional fees are incurred when you enable EBS optimization for an instance type that is
* not EBS-optimized by default. For more information, see Amazon EBS-Optimized
* Instances in the Amazon EC2 User Guide for Linux Instances.
*
* The default value is false
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateLaunchConfigurationRequest withEbsOptimized(Boolean ebsOptimized) {
setEbsOptimized(ebsOptimized);
return this;
}
/**
*
* Specifies whether the launch configuration is optimized for EBS I/O (true
) or not (
* false
). The optimization provides dedicated throughput to Amazon EBS and an optimized configuration
* stack to provide optimal I/O performance. This optimization is not available with all instance types. Additional
* fees are incurred when you enable EBS optimization for an instance type that is not EBS-optimized by default. For
* more information, see Amazon
* EBS-Optimized Instances in the Amazon EC2 User Guide for Linux Instances.
*
*
* The default value is false
.
*
*
* @return Specifies whether the launch configuration is optimized for EBS I/O (true
) or not (
* false
). The optimization provides dedicated throughput to Amazon EBS and an optimized
* configuration stack to provide optimal I/O performance. This optimization is not available with all
* instance types. Additional fees are incurred when you enable EBS optimization for an instance type that
* is not EBS-optimized by default. For more information, see Amazon EBS-Optimized
* Instances in the Amazon EC2 User Guide for Linux Instances.
*
* The default value is false
.
*/
public Boolean isEbsOptimized() {
return this.ebsOptimized;
}
/**
*
* For Auto Scaling groups that are running in a virtual private cloud (VPC), specifies whether to assign a public
* IP address to the group's instances. If you specify true
, each instance in the Auto Scaling group
* receives a unique public IP address. For more information, see Launching Auto Scaling Instances in
* a VPC in the Amazon EC2 Auto Scaling User Guide.
*
*
* If you specify this parameter, you must specify at least one subnet for VPCZoneIdentifier
when you
* create your group.
*
*
*
* If the instance is launched into a default subnet, the default is to assign a public IP address, unless you
* disabled the option to assign a public IP address on the subnet. If the instance is launched into a nondefault
* subnet, the default is not to assign a public IP address, unless you enabled the option to assign a public IP
* address on the subnet.
*
*
*
* @param associatePublicIpAddress
* For Auto Scaling groups that are running in a virtual private cloud (VPC), specifies whether to assign a
* public IP address to the group's instances. If you specify true
, each instance in the Auto
* Scaling group receives a unique public IP address. For more information, see Launching Auto Scaling
* Instances in a VPC in the Amazon EC2 Auto Scaling User Guide.
*
* If you specify this parameter, you must specify at least one subnet for VPCZoneIdentifier
* when you create your group.
*
*
*
* If the instance is launched into a default subnet, the default is to assign a public IP address, unless
* you disabled the option to assign a public IP address on the subnet. If the instance is launched into a
* nondefault subnet, the default is not to assign a public IP address, unless you enabled the option to
* assign a public IP address on the subnet.
*
*/
public void setAssociatePublicIpAddress(Boolean associatePublicIpAddress) {
this.associatePublicIpAddress = associatePublicIpAddress;
}
/**
*
* For Auto Scaling groups that are running in a virtual private cloud (VPC), specifies whether to assign a public
* IP address to the group's instances. If you specify true
, each instance in the Auto Scaling group
* receives a unique public IP address. For more information, see Launching Auto Scaling Instances in
* a VPC in the Amazon EC2 Auto Scaling User Guide.
*
*
* If you specify this parameter, you must specify at least one subnet for VPCZoneIdentifier
when you
* create your group.
*
*
*
* If the instance is launched into a default subnet, the default is to assign a public IP address, unless you
* disabled the option to assign a public IP address on the subnet. If the instance is launched into a nondefault
* subnet, the default is not to assign a public IP address, unless you enabled the option to assign a public IP
* address on the subnet.
*
*
*
* @return For Auto Scaling groups that are running in a virtual private cloud (VPC), specifies whether to assign a
* public IP address to the group's instances. If you specify true
, each instance in the Auto
* Scaling group receives a unique public IP address. For more information, see Launching Auto Scaling
* Instances in a VPC in the Amazon EC2 Auto Scaling User Guide.
*
* If you specify this parameter, you must specify at least one subnet for VPCZoneIdentifier
* when you create your group.
*
*
*
* If the instance is launched into a default subnet, the default is to assign a public IP address, unless
* you disabled the option to assign a public IP address on the subnet. If the instance is launched into a
* nondefault subnet, the default is not to assign a public IP address, unless you enabled the option to
* assign a public IP address on the subnet.
*
*/
public Boolean getAssociatePublicIpAddress() {
return this.associatePublicIpAddress;
}
/**
*
* For Auto Scaling groups that are running in a virtual private cloud (VPC), specifies whether to assign a public
* IP address to the group's instances. If you specify true
, each instance in the Auto Scaling group
* receives a unique public IP address. For more information, see Launching Auto Scaling Instances in
* a VPC in the Amazon EC2 Auto Scaling User Guide.
*
*
* If you specify this parameter, you must specify at least one subnet for VPCZoneIdentifier
when you
* create your group.
*
*
*
* If the instance is launched into a default subnet, the default is to assign a public IP address, unless you
* disabled the option to assign a public IP address on the subnet. If the instance is launched into a nondefault
* subnet, the default is not to assign a public IP address, unless you enabled the option to assign a public IP
* address on the subnet.
*
*
*
* @param associatePublicIpAddress
* For Auto Scaling groups that are running in a virtual private cloud (VPC), specifies whether to assign a
* public IP address to the group's instances. If you specify true
, each instance in the Auto
* Scaling group receives a unique public IP address. For more information, see Launching Auto Scaling
* Instances in a VPC in the Amazon EC2 Auto Scaling User Guide.
*
* If you specify this parameter, you must specify at least one subnet for VPCZoneIdentifier
* when you create your group.
*
*
*
* If the instance is launched into a default subnet, the default is to assign a public IP address, unless
* you disabled the option to assign a public IP address on the subnet. If the instance is launched into a
* nondefault subnet, the default is not to assign a public IP address, unless you enabled the option to
* assign a public IP address on the subnet.
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateLaunchConfigurationRequest withAssociatePublicIpAddress(Boolean associatePublicIpAddress) {
setAssociatePublicIpAddress(associatePublicIpAddress);
return this;
}
/**
*
* For Auto Scaling groups that are running in a virtual private cloud (VPC), specifies whether to assign a public
* IP address to the group's instances. If you specify true
, each instance in the Auto Scaling group
* receives a unique public IP address. For more information, see Launching Auto Scaling Instances in
* a VPC in the Amazon EC2 Auto Scaling User Guide.
*
*
* If you specify this parameter, you must specify at least one subnet for VPCZoneIdentifier
when you
* create your group.
*
*
*
* If the instance is launched into a default subnet, the default is to assign a public IP address, unless you
* disabled the option to assign a public IP address on the subnet. If the instance is launched into a nondefault
* subnet, the default is not to assign a public IP address, unless you enabled the option to assign a public IP
* address on the subnet.
*
*
*
* @return For Auto Scaling groups that are running in a virtual private cloud (VPC), specifies whether to assign a
* public IP address to the group's instances. If you specify true
, each instance in the Auto
* Scaling group receives a unique public IP address. For more information, see Launching Auto Scaling
* Instances in a VPC in the Amazon EC2 Auto Scaling User Guide.
*
* If you specify this parameter, you must specify at least one subnet for VPCZoneIdentifier
* when you create your group.
*
*
*
* If the instance is launched into a default subnet, the default is to assign a public IP address, unless
* you disabled the option to assign a public IP address on the subnet. If the instance is launched into a
* nondefault subnet, the default is not to assign a public IP address, unless you enabled the option to
* assign a public IP address on the subnet.
*
*/
public Boolean isAssociatePublicIpAddress() {
return this.associatePublicIpAddress;
}
/**
*
* The tenancy of the instance. An instance with dedicated
tenancy runs on isolated, single-tenant
* hardware and can only be launched into a VPC.
*
*
* To launch dedicated instances into a shared tenancy VPC (a VPC with the instance placement tenancy attribute set
* to default
), you must set the value of this parameter to dedicated
.
*
*
* If you specify PlacementTenancy
, you must specify at least one subnet for
* VPCZoneIdentifier
when you create your group.
*
*
* For more information, see Instance Placement
* Tenancy in the Amazon EC2 Auto Scaling User Guide.
*
*
* Valid Values: default
| dedicated
*
*
* @param placementTenancy
* The tenancy of the instance. An instance with dedicated
tenancy runs on isolated,
* single-tenant hardware and can only be launched into a VPC.
*
* To launch dedicated instances into a shared tenancy VPC (a VPC with the instance placement tenancy
* attribute set to default
), you must set the value of this parameter to dedicated
* .
*
*
* If you specify PlacementTenancy
, you must specify at least one subnet for
* VPCZoneIdentifier
when you create your group.
*
*
* For more information, see Instance
* Placement Tenancy in the Amazon EC2 Auto Scaling User Guide.
*
*
* Valid Values: default
| dedicated
*/
public void setPlacementTenancy(String placementTenancy) {
this.placementTenancy = placementTenancy;
}
/**
*
* The tenancy of the instance. An instance with dedicated
tenancy runs on isolated, single-tenant
* hardware and can only be launched into a VPC.
*
*
* To launch dedicated instances into a shared tenancy VPC (a VPC with the instance placement tenancy attribute set
* to default
), you must set the value of this parameter to dedicated
.
*
*
* If you specify PlacementTenancy
, you must specify at least one subnet for
* VPCZoneIdentifier
when you create your group.
*
*
* For more information, see Instance Placement
* Tenancy in the Amazon EC2 Auto Scaling User Guide.
*
*
* Valid Values: default
| dedicated
*
*
* @return The tenancy of the instance. An instance with dedicated
tenancy runs on isolated,
* single-tenant hardware and can only be launched into a VPC.
*
* To launch dedicated instances into a shared tenancy VPC (a VPC with the instance placement tenancy
* attribute set to default
), you must set the value of this parameter to
* dedicated
.
*
*
* If you specify PlacementTenancy
, you must specify at least one subnet for
* VPCZoneIdentifier
when you create your group.
*
*
* For more information, see Instance
* Placement Tenancy in the Amazon EC2 Auto Scaling User Guide.
*
*
* Valid Values: default
| dedicated
*/
public String getPlacementTenancy() {
return this.placementTenancy;
}
/**
*
* The tenancy of the instance. An instance with dedicated
tenancy runs on isolated, single-tenant
* hardware and can only be launched into a VPC.
*
*
* To launch dedicated instances into a shared tenancy VPC (a VPC with the instance placement tenancy attribute set
* to default
), you must set the value of this parameter to dedicated
.
*
*
* If you specify PlacementTenancy
, you must specify at least one subnet for
* VPCZoneIdentifier
when you create your group.
*
*
* For more information, see Instance Placement
* Tenancy in the Amazon EC2 Auto Scaling User Guide.
*
*
* Valid Values: default
| dedicated
*
*
* @param placementTenancy
* The tenancy of the instance. An instance with dedicated
tenancy runs on isolated,
* single-tenant hardware and can only be launched into a VPC.
*
* To launch dedicated instances into a shared tenancy VPC (a VPC with the instance placement tenancy
* attribute set to default
), you must set the value of this parameter to dedicated
* .
*
*
* If you specify PlacementTenancy
, you must specify at least one subnet for
* VPCZoneIdentifier
when you create your group.
*
*
* For more information, see Instance
* Placement Tenancy in the Amazon EC2 Auto Scaling User Guide.
*
*
* Valid Values: default
| dedicated
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateLaunchConfigurationRequest withPlacementTenancy(String placementTenancy) {
setPlacementTenancy(placementTenancy);
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 (getLaunchConfigurationName() != null)
sb.append("LaunchConfigurationName: ").append(getLaunchConfigurationName()).append(",");
if (getImageId() != null)
sb.append("ImageId: ").append(getImageId()).append(",");
if (getKeyName() != null)
sb.append("KeyName: ").append(getKeyName()).append(",");
if (getSecurityGroups() != null)
sb.append("SecurityGroups: ").append(getSecurityGroups()).append(",");
if (getClassicLinkVPCId() != null)
sb.append("ClassicLinkVPCId: ").append(getClassicLinkVPCId()).append(",");
if (getClassicLinkVPCSecurityGroups() != null)
sb.append("ClassicLinkVPCSecurityGroups: ").append(getClassicLinkVPCSecurityGroups()).append(",");
if (getUserData() != null)
sb.append("UserData: ").append(getUserData()).append(",");
if (getInstanceId() != null)
sb.append("InstanceId: ").append(getInstanceId()).append(",");
if (getInstanceType() != null)
sb.append("InstanceType: ").append(getInstanceType()).append(",");
if (getKernelId() != null)
sb.append("KernelId: ").append(getKernelId()).append(",");
if (getRamdiskId() != null)
sb.append("RamdiskId: ").append(getRamdiskId()).append(",");
if (getBlockDeviceMappings() != null)
sb.append("BlockDeviceMappings: ").append(getBlockDeviceMappings()).append(",");
if (getInstanceMonitoring() != null)
sb.append("InstanceMonitoring: ").append(getInstanceMonitoring()).append(",");
if (getSpotPrice() != null)
sb.append("SpotPrice: ").append(getSpotPrice()).append(",");
if (getIamInstanceProfile() != null)
sb.append("IamInstanceProfile: ").append(getIamInstanceProfile()).append(",");
if (getEbsOptimized() != null)
sb.append("EbsOptimized: ").append(getEbsOptimized()).append(",");
if (getAssociatePublicIpAddress() != null)
sb.append("AssociatePublicIpAddress: ").append(getAssociatePublicIpAddress()).append(",");
if (getPlacementTenancy() != null)
sb.append("PlacementTenancy: ").append(getPlacementTenancy());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CreateLaunchConfigurationRequest == false)
return false;
CreateLaunchConfigurationRequest other = (CreateLaunchConfigurationRequest) obj;
if (other.getLaunchConfigurationName() == null ^ this.getLaunchConfigurationName() == null)
return false;
if (other.getLaunchConfigurationName() != null && other.getLaunchConfigurationName().equals(this.getLaunchConfigurationName()) == false)
return false;
if (other.getImageId() == null ^ this.getImageId() == null)
return false;
if (other.getImageId() != null && other.getImageId().equals(this.getImageId()) == false)
return false;
if (other.getKeyName() == null ^ this.getKeyName() == null)
return false;
if (other.getKeyName() != null && other.getKeyName().equals(this.getKeyName()) == false)
return false;
if (other.getSecurityGroups() == null ^ this.getSecurityGroups() == null)
return false;
if (other.getSecurityGroups() != null && other.getSecurityGroups().equals(this.getSecurityGroups()) == false)
return false;
if (other.getClassicLinkVPCId() == null ^ this.getClassicLinkVPCId() == null)
return false;
if (other.getClassicLinkVPCId() != null && other.getClassicLinkVPCId().equals(this.getClassicLinkVPCId()) == false)
return false;
if (other.getClassicLinkVPCSecurityGroups() == null ^ this.getClassicLinkVPCSecurityGroups() == null)
return false;
if (other.getClassicLinkVPCSecurityGroups() != null && other.getClassicLinkVPCSecurityGroups().equals(this.getClassicLinkVPCSecurityGroups()) == false)
return false;
if (other.getUserData() == null ^ this.getUserData() == null)
return false;
if (other.getUserData() != null && other.getUserData().equals(this.getUserData()) == false)
return false;
if (other.getInstanceId() == null ^ this.getInstanceId() == null)
return false;
if (other.getInstanceId() != null && other.getInstanceId().equals(this.getInstanceId()) == false)
return false;
if (other.getInstanceType() == null ^ this.getInstanceType() == null)
return false;
if (other.getInstanceType() != null && other.getInstanceType().equals(this.getInstanceType()) == false)
return false;
if (other.getKernelId() == null ^ this.getKernelId() == null)
return false;
if (other.getKernelId() != null && other.getKernelId().equals(this.getKernelId()) == false)
return false;
if (other.getRamdiskId() == null ^ this.getRamdiskId() == null)
return false;
if (other.getRamdiskId() != null && other.getRamdiskId().equals(this.getRamdiskId()) == false)
return false;
if (other.getBlockDeviceMappings() == null ^ this.getBlockDeviceMappings() == null)
return false;
if (other.getBlockDeviceMappings() != null && other.getBlockDeviceMappings().equals(this.getBlockDeviceMappings()) == false)
return false;
if (other.getInstanceMonitoring() == null ^ this.getInstanceMonitoring() == null)
return false;
if (other.getInstanceMonitoring() != null && other.getInstanceMonitoring().equals(this.getInstanceMonitoring()) == false)
return false;
if (other.getSpotPrice() == null ^ this.getSpotPrice() == null)
return false;
if (other.getSpotPrice() != null && other.getSpotPrice().equals(this.getSpotPrice()) == 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.getEbsOptimized() == null ^ this.getEbsOptimized() == null)
return false;
if (other.getEbsOptimized() != null && other.getEbsOptimized().equals(this.getEbsOptimized()) == false)
return false;
if (other.getAssociatePublicIpAddress() == null ^ this.getAssociatePublicIpAddress() == null)
return false;
if (other.getAssociatePublicIpAddress() != null && other.getAssociatePublicIpAddress().equals(this.getAssociatePublicIpAddress()) == false)
return false;
if (other.getPlacementTenancy() == null ^ this.getPlacementTenancy() == null)
return false;
if (other.getPlacementTenancy() != null && other.getPlacementTenancy().equals(this.getPlacementTenancy()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getLaunchConfigurationName() == null) ? 0 : getLaunchConfigurationName().hashCode());
hashCode = prime * hashCode + ((getImageId() == null) ? 0 : getImageId().hashCode());
hashCode = prime * hashCode + ((getKeyName() == null) ? 0 : getKeyName().hashCode());
hashCode = prime * hashCode + ((getSecurityGroups() == null) ? 0 : getSecurityGroups().hashCode());
hashCode = prime * hashCode + ((getClassicLinkVPCId() == null) ? 0 : getClassicLinkVPCId().hashCode());
hashCode = prime * hashCode + ((getClassicLinkVPCSecurityGroups() == null) ? 0 : getClassicLinkVPCSecurityGroups().hashCode());
hashCode = prime * hashCode + ((getUserData() == null) ? 0 : getUserData().hashCode());
hashCode = prime * hashCode + ((getInstanceId() == null) ? 0 : getInstanceId().hashCode());
hashCode = prime * hashCode + ((getInstanceType() == null) ? 0 : getInstanceType().hashCode());
hashCode = prime * hashCode + ((getKernelId() == null) ? 0 : getKernelId().hashCode());
hashCode = prime * hashCode + ((getRamdiskId() == null) ? 0 : getRamdiskId().hashCode());
hashCode = prime * hashCode + ((getBlockDeviceMappings() == null) ? 0 : getBlockDeviceMappings().hashCode());
hashCode = prime * hashCode + ((getInstanceMonitoring() == null) ? 0 : getInstanceMonitoring().hashCode());
hashCode = prime * hashCode + ((getSpotPrice() == null) ? 0 : getSpotPrice().hashCode());
hashCode = prime * hashCode + ((getIamInstanceProfile() == null) ? 0 : getIamInstanceProfile().hashCode());
hashCode = prime * hashCode + ((getEbsOptimized() == null) ? 0 : getEbsOptimized().hashCode());
hashCode = prime * hashCode + ((getAssociatePublicIpAddress() == null) ? 0 : getAssociatePublicIpAddress().hashCode());
hashCode = prime * hashCode + ((getPlacementTenancy() == null) ? 0 : getPlacementTenancy().hashCode());
return hashCode;
}
@Override
public CreateLaunchConfigurationRequest clone() {
return (CreateLaunchConfigurationRequest) super.clone();
}
}