
com.amazonaws.services.autoscaling.model.LaunchConfiguration Maven / Gradle / Ivy
Show all versions of aws-android-sdk-autoscaling Show documentation
/*
* Copyright 2010-2016 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;
/**
*
* Describes a launch configuration.
*
*/
public class LaunchConfiguration implements Serializable {
/**
* The name of the launch configuration.
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*/
private String launchConfigurationName;
/**
* The Amazon Resource Name (ARN) of the launch configuration.
*
* Constraints:
* Length: 1 - 1600
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*/
private String launchConfigurationARN;
/**
* The ID of the Amazon Machine Image (AMI).
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*/
private String imageId;
/**
* The name of the key pair.
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*/
private String keyName;
/**
* The security groups to associate with the instances.
*/
private com.amazonaws.internal.ListWithAutoConstructFlag securityGroups;
/**
* The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances
* to. This parameter can only be used if you are launching EC2-Classic
* instances. For more information, see ClassicLink
* in the Amazon Elastic Compute Cloud User Guide.
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*/
private String classicLinkVPCId;
/**
* The IDs of one or more security groups for the VPC specified in
* ClassicLinkVPCId
. This parameter is required if
* ClassicLinkVPCId
is specified, and cannot be used
* otherwise. For more information, see ClassicLink
* in the Amazon Elastic Compute Cloud User Guide.
*/
private com.amazonaws.internal.ListWithAutoConstructFlag classicLinkVPCSecurityGroups;
/**
* The user data available to the instances.
*
* Constraints:
* Length: 0 - 21847
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*/
private String userData;
/**
* The instance type for the instances.
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*/
private String instanceType;
/**
* The ID of the kernel associated with the AMI.
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*/
private String kernelId;
/**
* The ID of the RAM disk associated with the AMI.
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*/
private String ramdiskId;
/**
* A block device mapping, which specifies the block devices for the
* instance.
*/
private com.amazonaws.internal.ListWithAutoConstructFlag blockDeviceMappings;
/**
* Controls whether instances in this group are launched with detailed
* monitoring.
*/
private InstanceMonitoring instanceMonitoring;
/**
* The price to bid when launching Spot Instances.
*
* Constraints:
* Length: 1 - 255
*/
private String spotPrice;
/**
* The name or Amazon Resource Name (ARN) of the instance profile
* associated with the IAM role for the instance.
*
* Constraints:
* Length: 1 - 1600
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*/
private String iamInstanceProfile;
/**
* The creation date and time for the launch configuration.
*/
private java.util.Date createdTime;
/**
* Controls whether the instance is optimized for EBS I/O
* (true
) or not (false
).
*/
private Boolean ebsOptimized;
/**
* [EC2-VPC] Indicates whether to assign a public IP address to each
* instance.
*/
private Boolean associatePublicIpAddress;
/**
* The tenancy of the instance, either default
or
* dedicated
. An instance with dedicated
* tenancy runs in an isolated, single-tenant hardware and can only be
* launched into a VPC.
*
* Constraints:
* Length: 1 - 64
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*/
private String placementTenancy;
/**
* The name of the launch configuration.
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @return The name of the launch configuration.
*/
public String getLaunchConfigurationName() {
return launchConfigurationName;
}
/**
* The name of the launch configuration.
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @param launchConfigurationName The name of the launch configuration.
*/
public void setLaunchConfigurationName(String launchConfigurationName) {
this.launchConfigurationName = launchConfigurationName;
}
/**
* The name of the launch configuration.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @param launchConfigurationName The name of the launch configuration.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public LaunchConfiguration withLaunchConfigurationName(String launchConfigurationName) {
this.launchConfigurationName = launchConfigurationName;
return this;
}
/**
* The Amazon Resource Name (ARN) of the launch configuration.
*
* Constraints:
* Length: 1 - 1600
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @return The Amazon Resource Name (ARN) of the launch configuration.
*/
public String getLaunchConfigurationARN() {
return launchConfigurationARN;
}
/**
* The Amazon Resource Name (ARN) of the launch configuration.
*
* Constraints:
* Length: 1 - 1600
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @param launchConfigurationARN The Amazon Resource Name (ARN) of the launch configuration.
*/
public void setLaunchConfigurationARN(String launchConfigurationARN) {
this.launchConfigurationARN = launchConfigurationARN;
}
/**
* The Amazon Resource Name (ARN) of the launch configuration.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Length: 1 - 1600
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @param launchConfigurationARN The Amazon Resource Name (ARN) of the launch configuration.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public LaunchConfiguration withLaunchConfigurationARN(String launchConfigurationARN) {
this.launchConfigurationARN = launchConfigurationARN;
return this;
}
/**
* The ID of the Amazon Machine Image (AMI).
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @return The ID of the Amazon Machine Image (AMI).
*/
public String getImageId() {
return imageId;
}
/**
* The ID of the Amazon Machine Image (AMI).
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @param imageId The ID of the Amazon Machine Image (AMI).
*/
public void setImageId(String imageId) {
this.imageId = imageId;
}
/**
* The ID of the Amazon Machine Image (AMI).
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @param imageId The ID of the Amazon Machine Image (AMI).
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public LaunchConfiguration withImageId(String imageId) {
this.imageId = imageId;
return this;
}
/**
* The name of the key pair.
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @return The name of the key pair.
*/
public String getKeyName() {
return keyName;
}
/**
* The name of the key pair.
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @param keyName The name of the key pair.
*/
public void setKeyName(String keyName) {
this.keyName = keyName;
}
/**
* The name of the key pair.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @param keyName The name of the key pair.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public LaunchConfiguration withKeyName(String keyName) {
this.keyName = keyName;
return this;
}
/**
* The security groups to associate with the instances.
*
* @return The security groups to associate with the instances.
*/
public java.util.List getSecurityGroups() {
if (securityGroups == null) {
securityGroups = new com.amazonaws.internal.ListWithAutoConstructFlag();
securityGroups.setAutoConstruct(true);
}
return securityGroups;
}
/**
* The security groups to associate with the instances.
*
* @param securityGroups The security groups to associate with the instances.
*/
public void setSecurityGroups(java.util.Collection securityGroups) {
if (securityGroups == null) {
this.securityGroups = null;
return;
}
com.amazonaws.internal.ListWithAutoConstructFlag securityGroupsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(securityGroups.size());
securityGroupsCopy.addAll(securityGroups);
this.securityGroups = securityGroupsCopy;
}
/**
* The security groups to associate with the instances.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param securityGroups The security groups to associate with the instances.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public LaunchConfiguration withSecurityGroups(String... securityGroups) {
if (getSecurityGroups() == null) setSecurityGroups(new java.util.ArrayList(securityGroups.length));
for (String value : securityGroups) {
getSecurityGroups().add(value);
}
return this;
}
/**
* The security groups to associate with the instances.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param securityGroups The security groups to associate with the instances.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public LaunchConfiguration withSecurityGroups(java.util.Collection securityGroups) {
if (securityGroups == null) {
this.securityGroups = null;
} else {
com.amazonaws.internal.ListWithAutoConstructFlag securityGroupsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(securityGroups.size());
securityGroupsCopy.addAll(securityGroups);
this.securityGroups = securityGroupsCopy;
}
return this;
}
/**
* The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances
* to. This parameter can only be used if you are launching EC2-Classic
* instances. For more information, see ClassicLink
* in the Amazon Elastic Compute Cloud User Guide.
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @return The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances
* to. This parameter can only be used if you are launching EC2-Classic
* instances. For more information, see ClassicLink
* in the Amazon Elastic Compute Cloud User Guide.
*/
public String getClassicLinkVPCId() {
return classicLinkVPCId;
}
/**
* The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances
* to. This parameter can only be used if you are launching EC2-Classic
* instances. For more information, see ClassicLink
* in the Amazon Elastic Compute Cloud User Guide.
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @param classicLinkVPCId The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances
* to. This parameter can only be used if you are launching EC2-Classic
* instances. For more information, see ClassicLink
* in the Amazon Elastic Compute Cloud User Guide.
*/
public void setClassicLinkVPCId(String classicLinkVPCId) {
this.classicLinkVPCId = classicLinkVPCId;
}
/**
* The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances
* to. This parameter can only be used if you are launching EC2-Classic
* instances. For more information, see ClassicLink
* in the Amazon Elastic Compute Cloud User Guide.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @param classicLinkVPCId The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances
* to. This parameter can only be used if you are launching EC2-Classic
* instances. For more information, see ClassicLink
* in the Amazon Elastic Compute Cloud User Guide.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public LaunchConfiguration withClassicLinkVPCId(String classicLinkVPCId) {
this.classicLinkVPCId = classicLinkVPCId;
return this;
}
/**
* The IDs of one or more security groups for the VPC specified in
* ClassicLinkVPCId
. This parameter is required if
* ClassicLinkVPCId
is specified, and cannot be used
* otherwise. For more information, see ClassicLink
* in the Amazon Elastic Compute Cloud User Guide.
*
* @return The IDs of one or more security groups for the VPC specified in
* ClassicLinkVPCId
. This parameter is required if
* ClassicLinkVPCId
is specified, and cannot be used
* otherwise. For more information, see ClassicLink
* in the Amazon Elastic Compute Cloud User Guide.
*/
public java.util.List getClassicLinkVPCSecurityGroups() {
if (classicLinkVPCSecurityGroups == null) {
classicLinkVPCSecurityGroups = new com.amazonaws.internal.ListWithAutoConstructFlag();
classicLinkVPCSecurityGroups.setAutoConstruct(true);
}
return classicLinkVPCSecurityGroups;
}
/**
* The IDs of one or more security groups for the VPC specified in
* ClassicLinkVPCId
. This parameter is required if
* ClassicLinkVPCId
is specified, and cannot be used
* otherwise. For more information, see ClassicLink
* in the Amazon Elastic Compute Cloud User Guide.
*
* @param classicLinkVPCSecurityGroups The IDs of one or more security groups for the VPC specified in
* ClassicLinkVPCId
. This parameter is required if
* ClassicLinkVPCId
is specified, and cannot be used
* otherwise. For more information, see ClassicLink
* in the Amazon Elastic Compute Cloud User Guide.
*/
public void setClassicLinkVPCSecurityGroups(java.util.Collection classicLinkVPCSecurityGroups) {
if (classicLinkVPCSecurityGroups == null) {
this.classicLinkVPCSecurityGroups = null;
return;
}
com.amazonaws.internal.ListWithAutoConstructFlag classicLinkVPCSecurityGroupsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(classicLinkVPCSecurityGroups.size());
classicLinkVPCSecurityGroupsCopy.addAll(classicLinkVPCSecurityGroups);
this.classicLinkVPCSecurityGroups = classicLinkVPCSecurityGroupsCopy;
}
/**
* The IDs of one or more security groups for the VPC specified in
* ClassicLinkVPCId
. This parameter is required if
* ClassicLinkVPCId
is specified, and cannot be used
* otherwise. For more information, see ClassicLink
* in the Amazon Elastic Compute Cloud User Guide.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param classicLinkVPCSecurityGroups The IDs of one or more security groups for the VPC specified in
* ClassicLinkVPCId
. This parameter is required if
* ClassicLinkVPCId
is specified, and cannot be used
* otherwise. For more information, see ClassicLink
* in the Amazon Elastic Compute Cloud User Guide.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public LaunchConfiguration withClassicLinkVPCSecurityGroups(String... classicLinkVPCSecurityGroups) {
if (getClassicLinkVPCSecurityGroups() == null) setClassicLinkVPCSecurityGroups(new java.util.ArrayList(classicLinkVPCSecurityGroups.length));
for (String value : classicLinkVPCSecurityGroups) {
getClassicLinkVPCSecurityGroups().add(value);
}
return this;
}
/**
* The IDs of one or more security groups for the VPC specified in
* ClassicLinkVPCId
. This parameter is required if
* ClassicLinkVPCId
is specified, and cannot be used
* otherwise. For more information, see ClassicLink
* in the Amazon Elastic Compute Cloud User Guide.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param classicLinkVPCSecurityGroups The IDs of one or more security groups for the VPC specified in
* ClassicLinkVPCId
. This parameter is required if
* ClassicLinkVPCId
is specified, and cannot be used
* otherwise. For more information, see ClassicLink
* in the Amazon Elastic Compute Cloud User Guide.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public LaunchConfiguration withClassicLinkVPCSecurityGroups(java.util.Collection classicLinkVPCSecurityGroups) {
if (classicLinkVPCSecurityGroups == null) {
this.classicLinkVPCSecurityGroups = null;
} else {
com.amazonaws.internal.ListWithAutoConstructFlag classicLinkVPCSecurityGroupsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(classicLinkVPCSecurityGroups.size());
classicLinkVPCSecurityGroupsCopy.addAll(classicLinkVPCSecurityGroups);
this.classicLinkVPCSecurityGroups = classicLinkVPCSecurityGroupsCopy;
}
return this;
}
/**
* The user data available to the instances.
*
* Constraints:
* Length: 0 - 21847
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @return The user data available to the instances.
*/
public String getUserData() {
return userData;
}
/**
* The user data available to the instances.
*
* Constraints:
* Length: 0 - 21847
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @param userData The user data available to the instances.
*/
public void setUserData(String userData) {
this.userData = userData;
}
/**
* The user data available to the instances.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Length: 0 - 21847
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @param userData The user data available to the instances.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public LaunchConfiguration withUserData(String userData) {
this.userData = userData;
return this;
}
/**
* The instance type for the instances.
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @return The instance type for the instances.
*/
public String getInstanceType() {
return instanceType;
}
/**
* The instance type for the instances.
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @param instanceType The instance type for the instances.
*/
public void setInstanceType(String instanceType) {
this.instanceType = instanceType;
}
/**
* The instance type for the instances.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @param instanceType The instance type for the instances.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public LaunchConfiguration withInstanceType(String instanceType) {
this.instanceType = instanceType;
return this;
}
/**
* The ID of the kernel associated with the AMI.
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @return The ID of the kernel associated with the AMI.
*/
public String getKernelId() {
return kernelId;
}
/**
* The ID of the kernel associated with the AMI.
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @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.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @param kernelId The ID of the kernel associated with the AMI.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public LaunchConfiguration withKernelId(String kernelId) {
this.kernelId = kernelId;
return this;
}
/**
* The ID of the RAM disk associated with the AMI.
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @return The ID of the RAM disk associated with the AMI.
*/
public String getRamdiskId() {
return ramdiskId;
}
/**
* The ID of the RAM disk associated with the AMI.
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @param ramdiskId The ID of the RAM disk associated with the AMI.
*/
public void setRamdiskId(String ramdiskId) {
this.ramdiskId = ramdiskId;
}
/**
* The ID of the RAM disk associated with the AMI.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @param ramdiskId The ID of the RAM disk associated with the AMI.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public LaunchConfiguration withRamdiskId(String ramdiskId) {
this.ramdiskId = ramdiskId;
return this;
}
/**
* A block device mapping, which specifies the block devices for the
* instance.
*
* @return A block device mapping, which specifies the block devices for the
* instance.
*/
public java.util.List getBlockDeviceMappings() {
if (blockDeviceMappings == null) {
blockDeviceMappings = new com.amazonaws.internal.ListWithAutoConstructFlag();
blockDeviceMappings.setAutoConstruct(true);
}
return blockDeviceMappings;
}
/**
* A block device mapping, which specifies the block devices for the
* instance.
*
* @param blockDeviceMappings A block device mapping, which specifies the block devices for the
* instance.
*/
public void setBlockDeviceMappings(java.util.Collection blockDeviceMappings) {
if (blockDeviceMappings == null) {
this.blockDeviceMappings = null;
return;
}
com.amazonaws.internal.ListWithAutoConstructFlag blockDeviceMappingsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(blockDeviceMappings.size());
blockDeviceMappingsCopy.addAll(blockDeviceMappings);
this.blockDeviceMappings = blockDeviceMappingsCopy;
}
/**
* A block device mapping, which specifies the block devices for the
* instance.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param blockDeviceMappings A block device mapping, which specifies the block devices for the
* instance.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public LaunchConfiguration withBlockDeviceMappings(BlockDeviceMapping... blockDeviceMappings) {
if (getBlockDeviceMappings() == null) setBlockDeviceMappings(new java.util.ArrayList(blockDeviceMappings.length));
for (BlockDeviceMapping value : blockDeviceMappings) {
getBlockDeviceMappings().add(value);
}
return this;
}
/**
* A block device mapping, which specifies the block devices for the
* instance.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param blockDeviceMappings A block device mapping, which specifies the block devices for the
* instance.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public LaunchConfiguration withBlockDeviceMappings(java.util.Collection blockDeviceMappings) {
if (blockDeviceMappings == null) {
this.blockDeviceMappings = null;
} else {
com.amazonaws.internal.ListWithAutoConstructFlag blockDeviceMappingsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(blockDeviceMappings.size());
blockDeviceMappingsCopy.addAll(blockDeviceMappings);
this.blockDeviceMappings = blockDeviceMappingsCopy;
}
return this;
}
/**
* Controls whether instances in this group are launched with detailed
* monitoring.
*
* @return Controls whether instances in this group are launched with detailed
* monitoring.
*/
public InstanceMonitoring getInstanceMonitoring() {
return instanceMonitoring;
}
/**
* Controls whether instances in this group are launched with detailed
* monitoring.
*
* @param instanceMonitoring Controls whether instances in this group are launched with detailed
* monitoring.
*/
public void setInstanceMonitoring(InstanceMonitoring instanceMonitoring) {
this.instanceMonitoring = instanceMonitoring;
}
/**
* Controls whether instances in this group are launched with detailed
* monitoring.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param instanceMonitoring Controls whether instances in this group are launched with detailed
* monitoring.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public LaunchConfiguration withInstanceMonitoring(InstanceMonitoring instanceMonitoring) {
this.instanceMonitoring = instanceMonitoring;
return this;
}
/**
* The price to bid when launching Spot Instances.
*
* Constraints:
* Length: 1 - 255
*
* @return The price to bid when launching Spot Instances.
*/
public String getSpotPrice() {
return spotPrice;
}
/**
* The price to bid when launching Spot Instances.
*
* Constraints:
* Length: 1 - 255
*
* @param spotPrice The price to bid when launching Spot Instances.
*/
public void setSpotPrice(String spotPrice) {
this.spotPrice = spotPrice;
}
/**
* The price to bid when launching Spot Instances.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Length: 1 - 255
*
* @param spotPrice The price to bid when launching Spot Instances.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public LaunchConfiguration withSpotPrice(String spotPrice) {
this.spotPrice = spotPrice;
return this;
}
/**
* The name or Amazon Resource Name (ARN) of the instance profile
* associated with the IAM role for the instance.
*
* Constraints:
* Length: 1 - 1600
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @return The name or Amazon Resource Name (ARN) of the instance profile
* associated with the IAM role for the instance.
*/
public String getIamInstanceProfile() {
return iamInstanceProfile;
}
/**
* The name or Amazon Resource Name (ARN) of the instance profile
* associated with the IAM role for the instance.
*
* Constraints:
* Length: 1 - 1600
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @param iamInstanceProfile The name or Amazon Resource Name (ARN) of the instance profile
* associated with the IAM role for the instance.
*/
public void setIamInstanceProfile(String iamInstanceProfile) {
this.iamInstanceProfile = iamInstanceProfile;
}
/**
* The name or Amazon Resource Name (ARN) of the instance profile
* associated with the IAM role for the instance.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Length: 1 - 1600
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @param iamInstanceProfile The name or Amazon Resource Name (ARN) of the instance profile
* associated with the IAM role for the instance.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public LaunchConfiguration withIamInstanceProfile(String iamInstanceProfile) {
this.iamInstanceProfile = iamInstanceProfile;
return this;
}
/**
* The creation date and time for the launch configuration.
*
* @return The creation date and time for the launch configuration.
*/
public java.util.Date getCreatedTime() {
return createdTime;
}
/**
* The creation date and time for the launch configuration.
*
* @param createdTime The creation date and time for the launch configuration.
*/
public void setCreatedTime(java.util.Date createdTime) {
this.createdTime = createdTime;
}
/**
* The creation date and time for the launch configuration.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param createdTime The creation date and time for the launch configuration.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public LaunchConfiguration withCreatedTime(java.util.Date createdTime) {
this.createdTime = createdTime;
return this;
}
/**
* Controls whether the instance is optimized for EBS I/O
* (true
) or not (false
).
*
* @return Controls whether the instance is optimized for EBS I/O
* (true
) or not (false
).
*/
public Boolean isEbsOptimized() {
return ebsOptimized;
}
/**
* Controls whether the instance is optimized for EBS I/O
* (true
) or not (false
).
*
* @param ebsOptimized Controls whether the instance is optimized for EBS I/O
* (true
) or not (false
).
*/
public void setEbsOptimized(Boolean ebsOptimized) {
this.ebsOptimized = ebsOptimized;
}
/**
* Controls whether the instance is optimized for EBS I/O
* (true
) or not (false
).
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param ebsOptimized Controls whether the instance is optimized for EBS I/O
* (true
) or not (false
).
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public LaunchConfiguration withEbsOptimized(Boolean ebsOptimized) {
this.ebsOptimized = ebsOptimized;
return this;
}
/**
* Controls whether the instance is optimized for EBS I/O
* (true
) or not (false
).
*
* @return Controls whether the instance is optimized for EBS I/O
* (true
) or not (false
).
*/
public Boolean getEbsOptimized() {
return ebsOptimized;
}
/**
* [EC2-VPC] Indicates whether to assign a public IP address to each
* instance.
*
* @return [EC2-VPC] Indicates whether to assign a public IP address to each
* instance.
*/
public Boolean isAssociatePublicIpAddress() {
return associatePublicIpAddress;
}
/**
* [EC2-VPC] Indicates whether to assign a public IP address to each
* instance.
*
* @param associatePublicIpAddress [EC2-VPC] Indicates whether to assign a public IP address to each
* instance.
*/
public void setAssociatePublicIpAddress(Boolean associatePublicIpAddress) {
this.associatePublicIpAddress = associatePublicIpAddress;
}
/**
* [EC2-VPC] Indicates whether to assign a public IP address to each
* instance.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param associatePublicIpAddress [EC2-VPC] Indicates whether to assign a public IP address to each
* instance.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public LaunchConfiguration withAssociatePublicIpAddress(Boolean associatePublicIpAddress) {
this.associatePublicIpAddress = associatePublicIpAddress;
return this;
}
/**
* [EC2-VPC] Indicates whether to assign a public IP address to each
* instance.
*
* @return [EC2-VPC] Indicates whether to assign a public IP address to each
* instance.
*/
public Boolean getAssociatePublicIpAddress() {
return associatePublicIpAddress;
}
/**
* The tenancy of the instance, either default
or
* dedicated
. An instance with dedicated
* tenancy runs in an isolated, single-tenant hardware and can only be
* launched into a VPC.
*
* Constraints:
* Length: 1 - 64
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @return The tenancy of the instance, either default
or
* dedicated
. An instance with dedicated
* tenancy runs in an isolated, single-tenant hardware and can only be
* launched into a VPC.
*/
public String getPlacementTenancy() {
return placementTenancy;
}
/**
* The tenancy of the instance, either default
or
* dedicated
. An instance with dedicated
* tenancy runs in an isolated, single-tenant hardware and can only be
* launched into a VPC.
*
* Constraints:
* Length: 1 - 64
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @param placementTenancy The tenancy of the instance, either default
or
* dedicated
. An instance with dedicated
* tenancy runs in an isolated, single-tenant hardware and can only be
* launched into a VPC.
*/
public void setPlacementTenancy(String placementTenancy) {
this.placementTenancy = placementTenancy;
}
/**
* The tenancy of the instance, either default
or
* dedicated
. An instance with dedicated
* tenancy runs in an isolated, single-tenant hardware and can only be
* launched into a VPC.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Length: 1 - 64
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @param placementTenancy The tenancy of the instance, either default
or
* dedicated
. An instance with dedicated
* tenancy runs in an isolated, single-tenant hardware and can only be
* launched into a VPC.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public LaunchConfiguration withPlacementTenancy(String placementTenancy) {
this.placementTenancy = placementTenancy;
return this;
}
/**
* Returns a string representation of this object; useful for testing and
* debugging.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getLaunchConfigurationName() != null) sb.append("LaunchConfigurationName: " + getLaunchConfigurationName() + ",");
if (getLaunchConfigurationARN() != null) sb.append("LaunchConfigurationARN: " + getLaunchConfigurationARN() + ",");
if (getImageId() != null) sb.append("ImageId: " + getImageId() + ",");
if (getKeyName() != null) sb.append("KeyName: " + getKeyName() + ",");
if (getSecurityGroups() != null) sb.append("SecurityGroups: " + getSecurityGroups() + ",");
if (getClassicLinkVPCId() != null) sb.append("ClassicLinkVPCId: " + getClassicLinkVPCId() + ",");
if (getClassicLinkVPCSecurityGroups() != null) sb.append("ClassicLinkVPCSecurityGroups: " + getClassicLinkVPCSecurityGroups() + ",");
if (getUserData() != null) sb.append("UserData: " + getUserData() + ",");
if (getInstanceType() != null) sb.append("InstanceType: " + getInstanceType() + ",");
if (getKernelId() != null) sb.append("KernelId: " + getKernelId() + ",");
if (getRamdiskId() != null) sb.append("RamdiskId: " + getRamdiskId() + ",");
if (getBlockDeviceMappings() != null) sb.append("BlockDeviceMappings: " + getBlockDeviceMappings() + ",");
if (getInstanceMonitoring() != null) sb.append("InstanceMonitoring: " + getInstanceMonitoring() + ",");
if (getSpotPrice() != null) sb.append("SpotPrice: " + getSpotPrice() + ",");
if (getIamInstanceProfile() != null) sb.append("IamInstanceProfile: " + getIamInstanceProfile() + ",");
if (getCreatedTime() != null) sb.append("CreatedTime: " + getCreatedTime() + ",");
if (isEbsOptimized() != null) sb.append("EbsOptimized: " + isEbsOptimized() + ",");
if (isAssociatePublicIpAddress() != null) sb.append("AssociatePublicIpAddress: " + isAssociatePublicIpAddress() + ",");
if (getPlacementTenancy() != null) sb.append("PlacementTenancy: " + getPlacementTenancy() );
sb.append("}");
return sb.toString();
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getLaunchConfigurationName() == null) ? 0 : getLaunchConfigurationName().hashCode());
hashCode = prime * hashCode + ((getLaunchConfigurationARN() == null) ? 0 : getLaunchConfigurationARN().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 + ((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 + ((getCreatedTime() == null) ? 0 : getCreatedTime().hashCode());
hashCode = prime * hashCode + ((isEbsOptimized() == null) ? 0 : isEbsOptimized().hashCode());
hashCode = prime * hashCode + ((isAssociatePublicIpAddress() == null) ? 0 : isAssociatePublicIpAddress().hashCode());
hashCode = prime * hashCode + ((getPlacementTenancy() == null) ? 0 : getPlacementTenancy().hashCode());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (obj instanceof LaunchConfiguration == false) return false;
LaunchConfiguration other = (LaunchConfiguration)obj;
if (other.getLaunchConfigurationName() == null ^ this.getLaunchConfigurationName() == null) return false;
if (other.getLaunchConfigurationName() != null && other.getLaunchConfigurationName().equals(this.getLaunchConfigurationName()) == false) return false;
if (other.getLaunchConfigurationARN() == null ^ this.getLaunchConfigurationARN() == null) return false;
if (other.getLaunchConfigurationARN() != null && other.getLaunchConfigurationARN().equals(this.getLaunchConfigurationARN()) == 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.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.getCreatedTime() == null ^ this.getCreatedTime() == null) return false;
if (other.getCreatedTime() != null && other.getCreatedTime().equals(this.getCreatedTime()) == false) return false;
if (other.isEbsOptimized() == null ^ this.isEbsOptimized() == null) return false;
if (other.isEbsOptimized() != null && other.isEbsOptimized().equals(this.isEbsOptimized()) == false) return false;
if (other.isAssociatePublicIpAddress() == null ^ this.isAssociatePublicIpAddress() == null) return false;
if (other.isAssociatePublicIpAddress() != null && other.isAssociatePublicIpAddress().equals(this.isAssociatePublicIpAddress()) == 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;
}
}