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

com.amazonaws.services.ecs.model.ManagedScaling Maven / Gradle / Ivy

Go to download

The AWS Java SDK for the Amazon EC2 Container Service holds the client classes that are used for communicating with the Amazon EC2 Container Service

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package com.amazonaws.services.ecs.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* The managed scaling settings for the Auto Scaling group capacity provider. *

*

* When managed scaling is turned on, Amazon ECS manages the scale-in and scale-out actions of the Auto Scaling group. * Amazon ECS manages a target tracking scaling policy using an Amazon ECS managed CloudWatch metric with the specified * targetCapacity value as the target value for the metric. For more information, see Using managed scaling in the Amazon Elastic Container Service Developer Guide. *

*

* If managed scaling is off, the user must manage the scaling of the Auto Scaling group. *

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

* Determines whether to use managed scaling for the capacity provider. *

*/ private String status; /** *

* The target capacity utilization as a percentage for the capacity provider. The specified value must be greater * than 0 and less than or equal to 100. For example, if you want the capacity provider to * maintain 10% spare capacity, then that means the utilization is 90%, so use a targetCapacity of * 90. The default value of 100 percent results in the Amazon EC2 instances in your Auto * Scaling group being completely used. *

*/ private Integer targetCapacity; /** *

* The minimum number of Amazon EC2 instances that Amazon ECS will scale out at one time. The scale in process is * not affected by this parameter If this parameter is omitted, the default value of 1 is used. *

*

* When additional capacity is required, Amazon ECS will scale up the minimum scaling step size even if the actual * demand is less than the minimum scaling step size. *

*

* If you use a capacity provider with an Auto Scaling group configured with more than one Amazon EC2 instance type * or Availability Zone, Amazon ECS will scale up by the exact minimum scaling step size value and will ignore both * the maximum scaling step size as well as the capacity demand. *

*/ private Integer minimumScalingStepSize; /** *

* The maximum number of Amazon EC2 instances that Amazon ECS will scale out at one time. The scale in process is * not affected by this parameter. If this parameter is omitted, the default value of 10000 is used. *

*/ private Integer maximumScalingStepSize; /** *

* The period of time, in seconds, after a newly launched Amazon EC2 instance can contribute to CloudWatch metrics * for Auto Scaling group. If this parameter is omitted, the default value of 300 seconds is used. *

*/ private Integer instanceWarmupPeriod; /** *

* Determines whether to use managed scaling for the capacity provider. *

* * @param status * Determines whether to use managed scaling for the capacity provider. * @see ManagedScalingStatus */ public void setStatus(String status) { this.status = status; } /** *

* Determines whether to use managed scaling for the capacity provider. *

* * @return Determines whether to use managed scaling for the capacity provider. * @see ManagedScalingStatus */ public String getStatus() { return this.status; } /** *

* Determines whether to use managed scaling for the capacity provider. *

* * @param status * Determines whether to use managed scaling for the capacity provider. * @return Returns a reference to this object so that method calls can be chained together. * @see ManagedScalingStatus */ public ManagedScaling withStatus(String status) { setStatus(status); return this; } /** *

* Determines whether to use managed scaling for the capacity provider. *

* * @param status * Determines whether to use managed scaling for the capacity provider. * @return Returns a reference to this object so that method calls can be chained together. * @see ManagedScalingStatus */ public ManagedScaling withStatus(ManagedScalingStatus status) { this.status = status.toString(); return this; } /** *

* The target capacity utilization as a percentage for the capacity provider. The specified value must be greater * than 0 and less than or equal to 100. For example, if you want the capacity provider to * maintain 10% spare capacity, then that means the utilization is 90%, so use a targetCapacity of * 90. The default value of 100 percent results in the Amazon EC2 instances in your Auto * Scaling group being completely used. *

* * @param targetCapacity * The target capacity utilization as a percentage for the capacity provider. The specified value must be * greater than 0 and less than or equal to 100. For example, if you want the * capacity provider to maintain 10% spare capacity, then that means the utilization is 90%, so use a * targetCapacity of 90. The default value of 100 percent results in * the Amazon EC2 instances in your Auto Scaling group being completely used. */ public void setTargetCapacity(Integer targetCapacity) { this.targetCapacity = targetCapacity; } /** *

* The target capacity utilization as a percentage for the capacity provider. The specified value must be greater * than 0 and less than or equal to 100. For example, if you want the capacity provider to * maintain 10% spare capacity, then that means the utilization is 90%, so use a targetCapacity of * 90. The default value of 100 percent results in the Amazon EC2 instances in your Auto * Scaling group being completely used. *

* * @return The target capacity utilization as a percentage for the capacity provider. The specified value must be * greater than 0 and less than or equal to 100. For example, if you want the * capacity provider to maintain 10% spare capacity, then that means the utilization is 90%, so use a * targetCapacity of 90. The default value of 100 percent results in * the Amazon EC2 instances in your Auto Scaling group being completely used. */ public Integer getTargetCapacity() { return this.targetCapacity; } /** *

* The target capacity utilization as a percentage for the capacity provider. The specified value must be greater * than 0 and less than or equal to 100. For example, if you want the capacity provider to * maintain 10% spare capacity, then that means the utilization is 90%, so use a targetCapacity of * 90. The default value of 100 percent results in the Amazon EC2 instances in your Auto * Scaling group being completely used. *

* * @param targetCapacity * The target capacity utilization as a percentage for the capacity provider. The specified value must be * greater than 0 and less than or equal to 100. For example, if you want the * capacity provider to maintain 10% spare capacity, then that means the utilization is 90%, so use a * targetCapacity of 90. The default value of 100 percent results in * the Amazon EC2 instances in your Auto Scaling group being completely used. * @return Returns a reference to this object so that method calls can be chained together. */ public ManagedScaling withTargetCapacity(Integer targetCapacity) { setTargetCapacity(targetCapacity); return this; } /** *

* The minimum number of Amazon EC2 instances that Amazon ECS will scale out at one time. The scale in process is * not affected by this parameter If this parameter is omitted, the default value of 1 is used. *

*

* When additional capacity is required, Amazon ECS will scale up the minimum scaling step size even if the actual * demand is less than the minimum scaling step size. *

*

* If you use a capacity provider with an Auto Scaling group configured with more than one Amazon EC2 instance type * or Availability Zone, Amazon ECS will scale up by the exact minimum scaling step size value and will ignore both * the maximum scaling step size as well as the capacity demand. *

* * @param minimumScalingStepSize * The minimum number of Amazon EC2 instances that Amazon ECS will scale out at one time. The scale in * process is not affected by this parameter If this parameter is omitted, the default value of * 1 is used.

*

* When additional capacity is required, Amazon ECS will scale up the minimum scaling step size even if the * actual demand is less than the minimum scaling step size. *

*

* If you use a capacity provider with an Auto Scaling group configured with more than one Amazon EC2 * instance type or Availability Zone, Amazon ECS will scale up by the exact minimum scaling step size value * and will ignore both the maximum scaling step size as well as the capacity demand. */ public void setMinimumScalingStepSize(Integer minimumScalingStepSize) { this.minimumScalingStepSize = minimumScalingStepSize; } /** *

* The minimum number of Amazon EC2 instances that Amazon ECS will scale out at one time. The scale in process is * not affected by this parameter If this parameter is omitted, the default value of 1 is used. *

*

* When additional capacity is required, Amazon ECS will scale up the minimum scaling step size even if the actual * demand is less than the minimum scaling step size. *

*

* If you use a capacity provider with an Auto Scaling group configured with more than one Amazon EC2 instance type * or Availability Zone, Amazon ECS will scale up by the exact minimum scaling step size value and will ignore both * the maximum scaling step size as well as the capacity demand. *

* * @return The minimum number of Amazon EC2 instances that Amazon ECS will scale out at one time. The scale in * process is not affected by this parameter If this parameter is omitted, the default value of * 1 is used.

*

* When additional capacity is required, Amazon ECS will scale up the minimum scaling step size even if the * actual demand is less than the minimum scaling step size. *

*

* If you use a capacity provider with an Auto Scaling group configured with more than one Amazon EC2 * instance type or Availability Zone, Amazon ECS will scale up by the exact minimum scaling step size value * and will ignore both the maximum scaling step size as well as the capacity demand. */ public Integer getMinimumScalingStepSize() { return this.minimumScalingStepSize; } /** *

* The minimum number of Amazon EC2 instances that Amazon ECS will scale out at one time. The scale in process is * not affected by this parameter If this parameter is omitted, the default value of 1 is used. *

*

* When additional capacity is required, Amazon ECS will scale up the minimum scaling step size even if the actual * demand is less than the minimum scaling step size. *

*

* If you use a capacity provider with an Auto Scaling group configured with more than one Amazon EC2 instance type * or Availability Zone, Amazon ECS will scale up by the exact minimum scaling step size value and will ignore both * the maximum scaling step size as well as the capacity demand. *

* * @param minimumScalingStepSize * The minimum number of Amazon EC2 instances that Amazon ECS will scale out at one time. The scale in * process is not affected by this parameter If this parameter is omitted, the default value of * 1 is used.

*

* When additional capacity is required, Amazon ECS will scale up the minimum scaling step size even if the * actual demand is less than the minimum scaling step size. *

*

* If you use a capacity provider with an Auto Scaling group configured with more than one Amazon EC2 * instance type or Availability Zone, Amazon ECS will scale up by the exact minimum scaling step size value * and will ignore both the maximum scaling step size as well as the capacity demand. * @return Returns a reference to this object so that method calls can be chained together. */ public ManagedScaling withMinimumScalingStepSize(Integer minimumScalingStepSize) { setMinimumScalingStepSize(minimumScalingStepSize); return this; } /** *

* The maximum number of Amazon EC2 instances that Amazon ECS will scale out at one time. The scale in process is * not affected by this parameter. If this parameter is omitted, the default value of 10000 is used. *

* * @param maximumScalingStepSize * The maximum number of Amazon EC2 instances that Amazon ECS will scale out at one time. The scale in * process is not affected by this parameter. If this parameter is omitted, the default value of * 10000 is used. */ public void setMaximumScalingStepSize(Integer maximumScalingStepSize) { this.maximumScalingStepSize = maximumScalingStepSize; } /** *

* The maximum number of Amazon EC2 instances that Amazon ECS will scale out at one time. The scale in process is * not affected by this parameter. If this parameter is omitted, the default value of 10000 is used. *

* * @return The maximum number of Amazon EC2 instances that Amazon ECS will scale out at one time. The scale in * process is not affected by this parameter. If this parameter is omitted, the default value of * 10000 is used. */ public Integer getMaximumScalingStepSize() { return this.maximumScalingStepSize; } /** *

* The maximum number of Amazon EC2 instances that Amazon ECS will scale out at one time. The scale in process is * not affected by this parameter. If this parameter is omitted, the default value of 10000 is used. *

* * @param maximumScalingStepSize * The maximum number of Amazon EC2 instances that Amazon ECS will scale out at one time. The scale in * process is not affected by this parameter. If this parameter is omitted, the default value of * 10000 is used. * @return Returns a reference to this object so that method calls can be chained together. */ public ManagedScaling withMaximumScalingStepSize(Integer maximumScalingStepSize) { setMaximumScalingStepSize(maximumScalingStepSize); return this; } /** *

* The period of time, in seconds, after a newly launched Amazon EC2 instance can contribute to CloudWatch metrics * for Auto Scaling group. If this parameter is omitted, the default value of 300 seconds is used. *

* * @param instanceWarmupPeriod * The period of time, in seconds, after a newly launched Amazon EC2 instance can contribute to CloudWatch * metrics for Auto Scaling group. If this parameter is omitted, the default value of 300 * seconds is used. */ public void setInstanceWarmupPeriod(Integer instanceWarmupPeriod) { this.instanceWarmupPeriod = instanceWarmupPeriod; } /** *

* The period of time, in seconds, after a newly launched Amazon EC2 instance can contribute to CloudWatch metrics * for Auto Scaling group. If this parameter is omitted, the default value of 300 seconds is used. *

* * @return The period of time, in seconds, after a newly launched Amazon EC2 instance can contribute to CloudWatch * metrics for Auto Scaling group. If this parameter is omitted, the default value of 300 * seconds is used. */ public Integer getInstanceWarmupPeriod() { return this.instanceWarmupPeriod; } /** *

* The period of time, in seconds, after a newly launched Amazon EC2 instance can contribute to CloudWatch metrics * for Auto Scaling group. If this parameter is omitted, the default value of 300 seconds is used. *

* * @param instanceWarmupPeriod * The period of time, in seconds, after a newly launched Amazon EC2 instance can contribute to CloudWatch * metrics for Auto Scaling group. If this parameter is omitted, the default value of 300 * seconds is used. * @return Returns a reference to this object so that method calls can be chained together. */ public ManagedScaling withInstanceWarmupPeriod(Integer instanceWarmupPeriod) { setInstanceWarmupPeriod(instanceWarmupPeriod); 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 (getStatus() != null) sb.append("Status: ").append(getStatus()).append(","); if (getTargetCapacity() != null) sb.append("TargetCapacity: ").append(getTargetCapacity()).append(","); if (getMinimumScalingStepSize() != null) sb.append("MinimumScalingStepSize: ").append(getMinimumScalingStepSize()).append(","); if (getMaximumScalingStepSize() != null) sb.append("MaximumScalingStepSize: ").append(getMaximumScalingStepSize()).append(","); if (getInstanceWarmupPeriod() != null) sb.append("InstanceWarmupPeriod: ").append(getInstanceWarmupPeriod()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ManagedScaling == false) return false; ManagedScaling other = (ManagedScaling) obj; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false; if (other.getTargetCapacity() == null ^ this.getTargetCapacity() == null) return false; if (other.getTargetCapacity() != null && other.getTargetCapacity().equals(this.getTargetCapacity()) == false) return false; if (other.getMinimumScalingStepSize() == null ^ this.getMinimumScalingStepSize() == null) return false; if (other.getMinimumScalingStepSize() != null && other.getMinimumScalingStepSize().equals(this.getMinimumScalingStepSize()) == false) return false; if (other.getMaximumScalingStepSize() == null ^ this.getMaximumScalingStepSize() == null) return false; if (other.getMaximumScalingStepSize() != null && other.getMaximumScalingStepSize().equals(this.getMaximumScalingStepSize()) == false) return false; if (other.getInstanceWarmupPeriod() == null ^ this.getInstanceWarmupPeriod() == null) return false; if (other.getInstanceWarmupPeriod() != null && other.getInstanceWarmupPeriod().equals(this.getInstanceWarmupPeriod()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getTargetCapacity() == null) ? 0 : getTargetCapacity().hashCode()); hashCode = prime * hashCode + ((getMinimumScalingStepSize() == null) ? 0 : getMinimumScalingStepSize().hashCode()); hashCode = prime * hashCode + ((getMaximumScalingStepSize() == null) ? 0 : getMaximumScalingStepSize().hashCode()); hashCode = prime * hashCode + ((getInstanceWarmupPeriod() == null) ? 0 : getInstanceWarmupPeriod().hashCode()); return hashCode; } @Override public ManagedScaling clone() { try { return (ManagedScaling) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.ecs.model.transform.ManagedScalingMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy