Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
- data ManagedScaling = ManagedScaling' {}
- newManagedScaling :: ManagedScaling
- managedScaling_status :: Lens' ManagedScaling (Maybe ManagedScalingStatus)
- managedScaling_maximumScalingStepSize :: Lens' ManagedScaling (Maybe Natural)
- managedScaling_targetCapacity :: Lens' ManagedScaling (Maybe Natural)
- managedScaling_minimumScalingStepSize :: Lens' ManagedScaling (Maybe Natural)
- managedScaling_instanceWarmupPeriod :: Lens' ManagedScaling (Maybe Natural)
Documentation
data ManagedScaling Source #
The managed scaling settings for the Auto Scaling group capacity provider.
When managed scaling is enabled, 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 disabled, the user must manage the scaling of the Auto Scaling group.
See: newManagedScaling
smart constructor.
ManagedScaling' | |
|
Instances
newManagedScaling :: ManagedScaling Source #
Create a value of ManagedScaling
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:status:ManagedScaling'
, managedScaling_status
- Whether or not to enable managed scaling for the capacity provider.
$sel:maximumScalingStepSize:ManagedScaling'
, managedScaling_maximumScalingStepSize
- The maximum number of container instances that Amazon ECS will scale in
or scale out at one time. If this parameter is omitted, the default
value of 10000
is used.
$sel:targetCapacity:ManagedScaling'
, managedScaling_targetCapacity
- The target capacity value for the capacity provider. The specified value
must be greater than 0
and less than or equal to 100
. A value of
100
will result in the Amazon EC2 instances in your Auto Scaling group
being completely utilized.
$sel:minimumScalingStepSize:ManagedScaling'
, managedScaling_minimumScalingStepSize
- The minimum number of container instances that Amazon ECS will scale in
or scale out at one time. If this parameter is omitted, the default
value of 1
is used.
$sel:instanceWarmupPeriod:ManagedScaling'
, managedScaling_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.
managedScaling_status :: Lens' ManagedScaling (Maybe ManagedScalingStatus) Source #
Whether or not to enable managed scaling for the capacity provider.
managedScaling_maximumScalingStepSize :: Lens' ManagedScaling (Maybe Natural) Source #
The maximum number of container instances that Amazon ECS will scale in
or scale out at one time. If this parameter is omitted, the default
value of 10000
is used.
managedScaling_targetCapacity :: Lens' ManagedScaling (Maybe Natural) Source #
The target capacity value for the capacity provider. The specified value
must be greater than 0
and less than or equal to 100
. A value of
100
will result in the Amazon EC2 instances in your Auto Scaling group
being completely utilized.
managedScaling_minimumScalingStepSize :: Lens' ManagedScaling (Maybe Natural) Source #
The minimum number of container instances that Amazon ECS will scale in
or scale out at one time. If this parameter is omitted, the default
value of 1
is used.
managedScaling_instanceWarmupPeriod :: Lens' ManagedScaling (Maybe Natural) Source #
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.