All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.autoscaling.model.LaunchTemplateOverrides Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Auto Scaling module holds the client classes that are used for communicating with Auto Scaling Service

There is a newer version: 1.12.772
Show newest version
/*
 * Copyright 2016-2021 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;

/**
 * 

* Describes an override for a launch template. The maximum number of instance types that can be associated with an Auto * Scaling group is 40. The maximum number of distinct launch templates you can define for an Auto Scaling group is 20. * For more information about configuring overrides, see Configuring overrides in * the Amazon EC2 Auto Scaling User Guide. *

* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class LaunchTemplateOverrides implements Serializable, Cloneable { /** *

* The instance type, such as m3.xlarge. You must use an instance type that is supported in your * requested Region and Availability Zones. For more information, see Instance types in the * Amazon Elastic Compute Cloud User Guide. *

*/ private String instanceType; /** *

* The number of capacity units provided by the specified instance type in terms of virtual CPUs, memory, storage, * throughput, or other relative performance characteristic. When a Spot or On-Demand Instance is provisioned, the * capacity units count toward the desired capacity. Amazon EC2 Auto Scaling provisions instances until the desired * capacity is totally fulfilled, even if this results in an overage. For example, if there are 2 units remaining to * fulfill capacity, and Amazon EC2 Auto Scaling can only provision an instance with a WeightedCapacity * of 5 units, the instance is provisioned, and the desired capacity is exceeded by 3 units. For more information, * see Instance * weighting for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide. Value must be in the * range of 1 to 999. *

*/ private String weightedCapacity; /** *

* Provides the launch template to be used when launching the instance type. For example, some instance types might * require a launch template with a different AMI. If not provided, Amazon EC2 Auto Scaling uses the launch template * that's defined for your mixed instances policy. For more information, see Specifying a * different launch template for an instance type in the Amazon EC2 Auto Scaling User Guide. *

*/ private LaunchTemplateSpecification launchTemplateSpecification; /** *

* The instance type, such as m3.xlarge. You must use an instance type that is supported in your * requested Region and Availability Zones. For more information, see Instance types in the * Amazon Elastic Compute Cloud User Guide. *

* * @param instanceType * The instance type, such as m3.xlarge. You must use an instance type that is supported in your * requested Region and Availability Zones. For more information, see Instance types in the * Amazon Elastic Compute Cloud User Guide. */ public void setInstanceType(String instanceType) { this.instanceType = instanceType; } /** *

* The instance type, such as m3.xlarge. You must use an instance type that is supported in your * requested Region and Availability Zones. For more information, see Instance types in the * Amazon Elastic Compute Cloud User Guide. *

* * @return The instance type, such as m3.xlarge. You must use an instance type that is supported in * your requested Region and Availability Zones. For more information, see Instance types in the * Amazon Elastic Compute Cloud User Guide. */ public String getInstanceType() { return this.instanceType; } /** *

* The instance type, such as m3.xlarge. You must use an instance type that is supported in your * requested Region and Availability Zones. For more information, see Instance types in the * Amazon Elastic Compute Cloud User Guide. *

* * @param instanceType * The instance type, such as m3.xlarge. You must use an instance type that is supported in your * requested Region and Availability Zones. For more information, see Instance types in the * Amazon Elastic Compute Cloud User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public LaunchTemplateOverrides withInstanceType(String instanceType) { setInstanceType(instanceType); return this; } /** *

* The number of capacity units provided by the specified instance type in terms of virtual CPUs, memory, storage, * throughput, or other relative performance characteristic. When a Spot or On-Demand Instance is provisioned, the * capacity units count toward the desired capacity. Amazon EC2 Auto Scaling provisions instances until the desired * capacity is totally fulfilled, even if this results in an overage. For example, if there are 2 units remaining to * fulfill capacity, and Amazon EC2 Auto Scaling can only provision an instance with a WeightedCapacity * of 5 units, the instance is provisioned, and the desired capacity is exceeded by 3 units. For more information, * see Instance * weighting for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide. Value must be in the * range of 1 to 999. *

* * @param weightedCapacity * The number of capacity units provided by the specified instance type in terms of virtual CPUs, memory, * storage, throughput, or other relative performance characteristic. When a Spot or On-Demand Instance is * provisioned, the capacity units count toward the desired capacity. Amazon EC2 Auto Scaling provisions * instances until the desired capacity is totally fulfilled, even if this results in an overage. For * example, if there are 2 units remaining to fulfill capacity, and Amazon EC2 Auto Scaling can only * provision an instance with a WeightedCapacity of 5 units, the instance is provisioned, and * the desired capacity is exceeded by 3 units. For more information, see Instance * weighting for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide. Value must be * in the range of 1 to 999. */ public void setWeightedCapacity(String weightedCapacity) { this.weightedCapacity = weightedCapacity; } /** *

* The number of capacity units provided by the specified instance type in terms of virtual CPUs, memory, storage, * throughput, or other relative performance characteristic. When a Spot or On-Demand Instance is provisioned, the * capacity units count toward the desired capacity. Amazon EC2 Auto Scaling provisions instances until the desired * capacity is totally fulfilled, even if this results in an overage. For example, if there are 2 units remaining to * fulfill capacity, and Amazon EC2 Auto Scaling can only provision an instance with a WeightedCapacity * of 5 units, the instance is provisioned, and the desired capacity is exceeded by 3 units. For more information, * see Instance * weighting for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide. Value must be in the * range of 1 to 999. *

* * @return The number of capacity units provided by the specified instance type in terms of virtual CPUs, memory, * storage, throughput, or other relative performance characteristic. When a Spot or On-Demand Instance is * provisioned, the capacity units count toward the desired capacity. Amazon EC2 Auto Scaling provisions * instances until the desired capacity is totally fulfilled, even if this results in an overage. For * example, if there are 2 units remaining to fulfill capacity, and Amazon EC2 Auto Scaling can only * provision an instance with a WeightedCapacity of 5 units, the instance is provisioned, and * the desired capacity is exceeded by 3 units. For more information, see Instance * weighting for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide. Value must be * in the range of 1 to 999. */ public String getWeightedCapacity() { return this.weightedCapacity; } /** *

* The number of capacity units provided by the specified instance type in terms of virtual CPUs, memory, storage, * throughput, or other relative performance characteristic. When a Spot or On-Demand Instance is provisioned, the * capacity units count toward the desired capacity. Amazon EC2 Auto Scaling provisions instances until the desired * capacity is totally fulfilled, even if this results in an overage. For example, if there are 2 units remaining to * fulfill capacity, and Amazon EC2 Auto Scaling can only provision an instance with a WeightedCapacity * of 5 units, the instance is provisioned, and the desired capacity is exceeded by 3 units. For more information, * see Instance * weighting for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide. Value must be in the * range of 1 to 999. *

* * @param weightedCapacity * The number of capacity units provided by the specified instance type in terms of virtual CPUs, memory, * storage, throughput, or other relative performance characteristic. When a Spot or On-Demand Instance is * provisioned, the capacity units count toward the desired capacity. Amazon EC2 Auto Scaling provisions * instances until the desired capacity is totally fulfilled, even if this results in an overage. For * example, if there are 2 units remaining to fulfill capacity, and Amazon EC2 Auto Scaling can only * provision an instance with a WeightedCapacity of 5 units, the instance is provisioned, and * the desired capacity is exceeded by 3 units. For more information, see Instance * weighting for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide. Value must be * in the range of 1 to 999. * @return Returns a reference to this object so that method calls can be chained together. */ public LaunchTemplateOverrides withWeightedCapacity(String weightedCapacity) { setWeightedCapacity(weightedCapacity); return this; } /** *

* Provides the launch template to be used when launching the instance type. For example, some instance types might * require a launch template with a different AMI. If not provided, Amazon EC2 Auto Scaling uses the launch template * that's defined for your mixed instances policy. For more information, see Specifying a * different launch template for an instance type in the Amazon EC2 Auto Scaling User Guide. *

* * @param launchTemplateSpecification * Provides the launch template to be used when launching the instance type. For example, some instance types * might require a launch template with a different AMI. If not provided, Amazon EC2 Auto Scaling uses the * launch template that's defined for your mixed instances policy. For more information, see Specifying * a different launch template for an instance type in the Amazon EC2 Auto Scaling User Guide. */ public void setLaunchTemplateSpecification(LaunchTemplateSpecification launchTemplateSpecification) { this.launchTemplateSpecification = launchTemplateSpecification; } /** *

* Provides the launch template to be used when launching the instance type. For example, some instance types might * require a launch template with a different AMI. If not provided, Amazon EC2 Auto Scaling uses the launch template * that's defined for your mixed instances policy. For more information, see Specifying a * different launch template for an instance type in the Amazon EC2 Auto Scaling User Guide. *

* * @return Provides the launch template to be used when launching the instance type. For example, some instance * types might require a launch template with a different AMI. If not provided, Amazon EC2 Auto Scaling uses * the launch template that's defined for your mixed instances policy. For more information, see Specifying a different launch template for an instance type in the Amazon EC2 Auto Scaling User * Guide. */ public LaunchTemplateSpecification getLaunchTemplateSpecification() { return this.launchTemplateSpecification; } /** *

* Provides the launch template to be used when launching the instance type. For example, some instance types might * require a launch template with a different AMI. If not provided, Amazon EC2 Auto Scaling uses the launch template * that's defined for your mixed instances policy. For more information, see Specifying a * different launch template for an instance type in the Amazon EC2 Auto Scaling User Guide. *

* * @param launchTemplateSpecification * Provides the launch template to be used when launching the instance type. For example, some instance types * might require a launch template with a different AMI. If not provided, Amazon EC2 Auto Scaling uses the * launch template that's defined for your mixed instances policy. For more information, see Specifying * a different launch template for an instance type in the Amazon EC2 Auto Scaling User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public LaunchTemplateOverrides withLaunchTemplateSpecification(LaunchTemplateSpecification launchTemplateSpecification) { setLaunchTemplateSpecification(launchTemplateSpecification); 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 (getInstanceType() != null) sb.append("InstanceType: ").append(getInstanceType()).append(","); if (getWeightedCapacity() != null) sb.append("WeightedCapacity: ").append(getWeightedCapacity()).append(","); if (getLaunchTemplateSpecification() != null) sb.append("LaunchTemplateSpecification: ").append(getLaunchTemplateSpecification()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof LaunchTemplateOverrides == false) return false; LaunchTemplateOverrides other = (LaunchTemplateOverrides) obj; if (other.getInstanceType() == null ^ this.getInstanceType() == null) return false; if (other.getInstanceType() != null && other.getInstanceType().equals(this.getInstanceType()) == false) return false; if (other.getWeightedCapacity() == null ^ this.getWeightedCapacity() == null) return false; if (other.getWeightedCapacity() != null && other.getWeightedCapacity().equals(this.getWeightedCapacity()) == false) return false; if (other.getLaunchTemplateSpecification() == null ^ this.getLaunchTemplateSpecification() == null) return false; if (other.getLaunchTemplateSpecification() != null && other.getLaunchTemplateSpecification().equals(this.getLaunchTemplateSpecification()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getInstanceType() == null) ? 0 : getInstanceType().hashCode()); hashCode = prime * hashCode + ((getWeightedCapacity() == null) ? 0 : getWeightedCapacity().hashCode()); hashCode = prime * hashCode + ((getLaunchTemplateSpecification() == null) ? 0 : getLaunchTemplateSpecification().hashCode()); return hashCode; } @Override public LaunchTemplateOverrides clone() { try { return (LaunchTemplateOverrides) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy