Application Auto Scaling

2017/03/23 - Application Auto Scaling - 7 updated api methods

DeleteScalingPolicy (updated) Link ¶
Changes (request)
{'ScalableDimension': {'appstream:fleet:DesiredCapacity'},
 'ServiceNamespace': {'appstream'}}

Deletes the specified Application Auto Scaling scaling policy.

Deleting a policy deletes the underlying alarm action, but does not delete the CloudWatch alarm associated with the scaling policy, even if it no longer has an associated action.

To create a scaling policy or update an existing one, see PutScalingPolicy.

See also: AWS API Documentation

Request Syntax

client.delete_scaling_policy(
    PolicyName='string',
    ServiceNamespace='ecs'|'elasticmapreduce'|'ec2'|'appstream',
    ResourceId='string',
    ScalableDimension='ecs:service:DesiredCount'|'ec2:spot-fleet-request:TargetCapacity'|'elasticmapreduce:instancegroup:InstanceCount'|'appstream:fleet:DesiredCapacity'
)
type PolicyName

string

param PolicyName

[REQUIRED]

The name of the scaling policy.

type ServiceNamespace

string

param ServiceNamespace

[REQUIRED]

The namespace of the AWS service. For more information, see AWS Service Namespaces in the Amazon Web Services General Reference .

type ResourceId

string

param ResourceId

[REQUIRED]

The identifier of the resource associated with the scalable target. This string consists of the resource type and unique identifier.

  • ECS service - The resource type is service and the unique identifier is the cluster name and service name. Example: service/default/sample-webapp .

  • Spot fleet request - The resource type is spot-fleet-request and the unique identifier is the Spot fleet request ID. Example: spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE .

  • EMR cluster - The resource type is instancegroup and the unique identifier is the cluster ID and instance group ID. Example: instancegroup/j-2EEZNYKUA1NTV/ig-1791Y4E1L8YI0 .

  • AppStream 2.0 fleet - The resource type is fleet and the unique identifier is the fleet name. Example: fleet/sample-fleet .

type ScalableDimension

string

param ScalableDimension

[REQUIRED]

The scalable dimension. This string consists of the service namespace, resource type, and scaling property.

  • ecs:service:DesiredCount - The desired task count of an ECS service.

  • ec2:spot-fleet-request:TargetCapacity - The target capacity of a Spot fleet request.

  • elasticmapreduce:instancegroup:InstanceCount - The instance count of an EMR Instance Group.

  • appstream:fleet:DesiredCapacity - The desired capacity of an AppStream 2.0 fleet.

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) --

DeregisterScalableTarget (updated) Link ¶
Changes (request)
{'ScalableDimension': {'appstream:fleet:DesiredCapacity'},
 'ServiceNamespace': {'appstream'}}

Deregisters a scalable target.

Deregistering a scalable target deletes the scaling policies that are associated with it.

To create a scalable target or update an existing one, see RegisterScalableTarget.

See also: AWS API Documentation

Request Syntax

client.deregister_scalable_target(
    ServiceNamespace='ecs'|'elasticmapreduce'|'ec2'|'appstream',
    ResourceId='string',
    ScalableDimension='ecs:service:DesiredCount'|'ec2:spot-fleet-request:TargetCapacity'|'elasticmapreduce:instancegroup:InstanceCount'|'appstream:fleet:DesiredCapacity'
)
type ServiceNamespace

string

param ServiceNamespace

[REQUIRED]

The namespace of the AWS service. For more information, see AWS Service Namespaces in the Amazon Web Services General Reference .

type ResourceId

string

param ResourceId

[REQUIRED]

The identifier of the resource associated with the scalable target. This string consists of the resource type and unique identifier.

  • ECS service - The resource type is service and the unique identifier is the cluster name and service name. Example: service/default/sample-webapp .

  • Spot fleet request - The resource type is spot-fleet-request and the unique identifier is the Spot fleet request ID. Example: spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE .

  • EMR cluster - The resource type is instancegroup and the unique identifier is the cluster ID and instance group ID. Example: instancegroup/j-2EEZNYKUA1NTV/ig-1791Y4E1L8YI0 .

  • AppStream 2.0 fleet - The resource type is fleet and the unique identifier is the fleet name. Example: fleet/sample-fleet .

type ScalableDimension

string

param ScalableDimension

[REQUIRED]

The scalable dimension associated with the scalable target. This string consists of the service namespace, resource type, and scaling property.

  • ecs:service:DesiredCount - The desired task count of an ECS service.

  • ec2:spot-fleet-request:TargetCapacity - The target capacity of a Spot fleet request.

  • elasticmapreduce:instancegroup:InstanceCount - The instance count of an EMR Instance Group.

  • appstream:fleet:DesiredCapacity - The desired capacity of an AppStream 2.0 fleet.

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) --

DescribeScalableTargets (updated) Link ¶
Changes (request, response)
Request
{'ScalableDimension': {'appstream:fleet:DesiredCapacity'},
 'ServiceNamespace': {'appstream'}}
Response
{'ScalableTargets': {'ScalableDimension': {'appstream:fleet:DesiredCapacity'},
                     'ServiceNamespace': {'appstream'}}}

Provides descriptive information about the scalable targets in the specified namespace.

You can filter the results using the ResourceIds and ScalableDimension parameters.

To create a scalable target or update an existing one, see RegisterScalableTarget. If you are no longer using a scalable target, you can deregister it using DeregisterScalableTarget.

See also: AWS API Documentation

Request Syntax

client.describe_scalable_targets(
    ServiceNamespace='ecs'|'elasticmapreduce'|'ec2'|'appstream',
    ResourceIds=[
        'string',
    ],
    ScalableDimension='ecs:service:DesiredCount'|'ec2:spot-fleet-request:TargetCapacity'|'elasticmapreduce:instancegroup:InstanceCount'|'appstream:fleet:DesiredCapacity',
    MaxResults=123,
    NextToken='string'
)
type ServiceNamespace

string

param ServiceNamespace

[REQUIRED]

The namespace of the AWS service. For more information, see AWS Service Namespaces in the Amazon Web Services General Reference .

type ResourceIds

list

param ResourceIds

The identifier of the resource associated with the scalable target. This string consists of the resource type and unique identifier. If you specify a scalable dimension, you must also specify a resource ID.

  • ECS service - The resource type is service and the unique identifier is the cluster name and service name. Example: service/default/sample-webapp .

  • Spot fleet request - The resource type is spot-fleet-request and the unique identifier is the Spot fleet request ID. Example: spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE .

  • EMR cluster - The resource type is instancegroup and the unique identifier is the cluster ID and instance group ID. Example: instancegroup/j-2EEZNYKUA1NTV/ig-1791Y4E1L8YI0 .

  • AppStream 2.0 fleet - The resource type is fleet and the unique identifier is the fleet name. Example: fleet/sample-fleet .

  • (string) --

type ScalableDimension

string

param ScalableDimension

The scalable dimension associated with the scalable target. This string consists of the service namespace, resource type, and scaling property. If you specify a scalable dimension, you must also specify a resource ID.

  • ecs:service:DesiredCount - The desired task count of an ECS service.

  • ec2:spot-fleet-request:TargetCapacity - The target capacity of a Spot fleet request.

  • elasticmapreduce:instancegroup:InstanceCount - The instance count of an EMR Instance Group.

  • appstream:fleet:DesiredCapacity - The desired capacity of an AppStream 2.0 fleet.

type MaxResults

integer

param MaxResults

The maximum number of scalable target results. This value can be between 1 and 50. The default value is 50.

If this parameter is used, the operation returns up to MaxResults results at a time, along with a NextToken value. To get the next set of results, include the NextToken value in a subsequent call. If this parameter is not used, the operation returns up to 50 results and a NextToken value, if applicable.

type NextToken

string

param NextToken

The token for the next set of results.

rtype

dict

returns

Response Syntax

{
    'ScalableTargets': [
        {
            'ServiceNamespace': 'ecs'|'elasticmapreduce'|'ec2'|'appstream',
            'ResourceId': 'string',
            'ScalableDimension': 'ecs:service:DesiredCount'|'ec2:spot-fleet-request:TargetCapacity'|'elasticmapreduce:instancegroup:InstanceCount'|'appstream:fleet:DesiredCapacity',
            'MinCapacity': 123,
            'MaxCapacity': 123,
            'RoleARN': 'string',
            'CreationTime': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • ScalableTargets (list) --

      The list of scalable targets that matches the request parameters.

      • (dict) --

        Represents a scalable target.

        • ServiceNamespace (string) --

          The namespace of the AWS service. For more information, see AWS Service Namespaces in the Amazon Web Services General Reference .

        • ResourceId (string) --

          The identifier of the resource associated with the scalable target. This string consists of the resource type and unique identifier.

          • ECS service - The resource type is service and the unique identifier is the cluster name and service name. Example: service/default/sample-webapp .

          • Spot fleet request - The resource type is spot-fleet-request and the unique identifier is the Spot fleet request ID. Example: spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE .

          • EMR cluster - The resource type is instancegroup and the unique identifier is the cluster ID and instance group ID. Example: instancegroup/j-2EEZNYKUA1NTV/ig-1791Y4E1L8YI0 .

          • AppStream 2.0 fleet - The resource type is fleet and the unique identifier is the fleet name. Example: fleet/sample-fleet .

        • ScalableDimension (string) --

          The scalable dimension associated with the scalable target. This string consists of the service namespace, resource type, and scaling property.

          • ecs:service:DesiredCount - The desired task count of an ECS service.

          • ec2:spot-fleet-request:TargetCapacity - The target capacity of a Spot fleet request.

          • elasticmapreduce:instancegroup:InstanceCount - The instance count of an EMR Instance Group.

          • appstream:fleet:DesiredCapacity - The desired capacity of an AppStream 2.0 fleet.

        • MinCapacity (integer) --

          The minimum value to scale to in response to a scale in event.

        • MaxCapacity (integer) --

          The maximum value to scale to in response to a scale out event.

        • RoleARN (string) --

          The ARN of an IAM role that allows Application Auto Scaling to modify the scalable target on your behalf.

        • CreationTime (datetime) --

          The Unix timestamp for when the scalable target was created.

    • NextToken (string) --

      The token required to get the next set of results. This value is null if there are no more results to return.

DescribeScalingActivities (updated) Link ¶
Changes (request, response)
Request
{'ScalableDimension': {'appstream:fleet:DesiredCapacity'},
 'ServiceNamespace': {'appstream'}}
Response
{'ScalingActivities': {'ScalableDimension': {'appstream:fleet:DesiredCapacity'},
                       'ServiceNamespace': {'appstream'}}}

Provides descriptive information about the scaling activities in the specified namespace from the previous six weeks.

You can filter the results using the ResourceId and ScalableDimension parameters.

Scaling activities are triggered by CloudWatch alarms that are associated with scaling policies. To view the scaling policies for a service namespace, see DescribeScalingPolicies. To create a scaling policy or update an existing one, see PutScalingPolicy.

See also: AWS API Documentation

Request Syntax

client.describe_scaling_activities(
    ServiceNamespace='ecs'|'elasticmapreduce'|'ec2'|'appstream',
    ResourceId='string',
    ScalableDimension='ecs:service:DesiredCount'|'ec2:spot-fleet-request:TargetCapacity'|'elasticmapreduce:instancegroup:InstanceCount'|'appstream:fleet:DesiredCapacity',
    MaxResults=123,
    NextToken='string'
)
type ServiceNamespace

string

param ServiceNamespace

[REQUIRED]

The namespace of the AWS service. For more information, see AWS Service Namespaces in the Amazon Web Services General Reference .

type ResourceId

string

param ResourceId

The identifier of the resource associated with the scaling activity. This string consists of the resource type and unique identifier. If you specify a scalable dimension, you must also specify a resource ID.

  • ECS service - The resource type is service and the unique identifier is the cluster name and service name. Example: service/default/sample-webapp .

  • Spot fleet request - The resource type is spot-fleet-request and the unique identifier is the Spot fleet request ID. Example: spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE .

  • EMR cluster - The resource type is instancegroup and the unique identifier is the cluster ID and instance group ID. Example: instancegroup/j-2EEZNYKUA1NTV/ig-1791Y4E1L8YI0 .

  • AppStream 2.0 fleet - The resource type is fleet and the unique identifier is the fleet name. Example: fleet/sample-fleet .

type ScalableDimension

string

param ScalableDimension

The scalable dimension. This string consists of the service namespace, resource type, and scaling property. If you specify a scalable dimension, you must also specify a resource ID.

  • ecs:service:DesiredCount - The desired task count of an ECS service.

  • ec2:spot-fleet-request:TargetCapacity - The target capacity of a Spot fleet request.

  • elasticmapreduce:instancegroup:InstanceCount - The instance count of an EMR Instance Group.

  • appstream:fleet:DesiredCapacity - The desired capacity of an AppStream 2.0 fleet.

type MaxResults

integer

param MaxResults

The maximum number of scalable target results. This value can be between 1 and 50. The default value is 50.

If this parameter is used, the operation returns up to MaxResults results at a time, along with a NextToken value. To get the next set of results, include the NextToken value in a subsequent call. If this parameter is not used, the operation returns up to 50 results and a NextToken value, if applicable.

type NextToken

string

param NextToken

The token for the next set of results.

rtype

dict

returns

Response Syntax

{
    'ScalingActivities': [
        {
            'ActivityId': 'string',
            'ServiceNamespace': 'ecs'|'elasticmapreduce'|'ec2'|'appstream',
            'ResourceId': 'string',
            'ScalableDimension': 'ecs:service:DesiredCount'|'ec2:spot-fleet-request:TargetCapacity'|'elasticmapreduce:instancegroup:InstanceCount'|'appstream:fleet:DesiredCapacity',
            'Description': 'string',
            'Cause': 'string',
            'StartTime': datetime(2015, 1, 1),
            'EndTime': datetime(2015, 1, 1),
            'StatusCode': 'Pending'|'InProgress'|'Successful'|'Overridden'|'Unfulfilled'|'Failed',
            'StatusMessage': 'string',
            'Details': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • ScalingActivities (list) --

      A list of scaling activity objects.

      • (dict) --

        Represents a scaling activity.

        • ActivityId (string) --

          The unique identifier of the scaling activity.

        • ServiceNamespace (string) --

          The namespace of the AWS service. For more information, see AWS Service Namespaces in the Amazon Web Services General Reference .

        • ResourceId (string) --

          The identifier of the resource associated with the scaling activity. This string consists of the resource type and unique identifier.

          • ECS service - The resource type is service and the unique identifier is the cluster name and service name. Example: service/default/sample-webapp .

          • Spot fleet request - The resource type is spot-fleet-request and the unique identifier is the Spot fleet request ID. Example: spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE .

          • EMR cluster - The resource type is instancegroup and the unique identifier is the cluster ID and instance group ID. Example: instancegroup/j-2EEZNYKUA1NTV/ig-1791Y4E1L8YI0 .

          • AppStream 2.0 fleet - The resource type is fleet and the unique identifier is the fleet name. Example: fleet/sample-fleet .

        • ScalableDimension (string) --

          The scalable dimension. This string consists of the service namespace, resource type, and scaling property.

          • ecs:service:DesiredCount - The desired task count of an ECS service.

          • ec2:spot-fleet-request:TargetCapacity - The target capacity of a Spot fleet request.

          • elasticmapreduce:instancegroup:InstanceCount - The instance count of an EMR Instance Group.

          • appstream:fleet:DesiredCapacity - The desired capacity of an AppStream 2.0 fleet.

        • Description (string) --

          A simple description of what action the scaling activity intends to accomplish.

        • Cause (string) --

          A simple description of what caused the scaling activity to happen.

        • StartTime (datetime) --

          The Unix timestamp for when the scaling activity began.

        • EndTime (datetime) --

          The Unix timestamp for when the scaling activity ended.

        • StatusCode (string) --

          Indicates the status of the scaling activity.

        • StatusMessage (string) --

          A simple message about the current status of the scaling activity.

        • Details (string) --

          The details about the scaling activity.

    • NextToken (string) --

      The token required to get the next set of results. This value is null if there are no more results to return.

DescribeScalingPolicies (updated) Link ¶
Changes (request, response)
Request
{'ScalableDimension': {'appstream:fleet:DesiredCapacity'},
 'ServiceNamespace': {'appstream'}}
Response
{'ScalingPolicies': {'ScalableDimension': {'appstream:fleet:DesiredCapacity'},
                     'ServiceNamespace': {'appstream'}}}

Provides descriptive information about the scaling policies in the specified namespace.

You can filter the results using the ResourceId , ScalableDimension , and PolicyNames parameters.

To create a scaling policy or update an existing one, see PutScalingPolicy. If you are no longer using a scaling policy, you can delete it using DeleteScalingPolicy.

See also: AWS API Documentation

Request Syntax

client.describe_scaling_policies(
    PolicyNames=[
        'string',
    ],
    ServiceNamespace='ecs'|'elasticmapreduce'|'ec2'|'appstream',
    ResourceId='string',
    ScalableDimension='ecs:service:DesiredCount'|'ec2:spot-fleet-request:TargetCapacity'|'elasticmapreduce:instancegroup:InstanceCount'|'appstream:fleet:DesiredCapacity',
    MaxResults=123,
    NextToken='string'
)
type PolicyNames

list

param PolicyNames

The names of the scaling policies to describe.

  • (string) --

type ServiceNamespace

string

param ServiceNamespace

[REQUIRED]

The namespace of the AWS service. For more information, see AWS Service Namespaces in the Amazon Web Services General Reference .

type ResourceId

string

param ResourceId

The identifier of the resource associated with the scaling policy. This string consists of the resource type and unique identifier. If you specify a scalable dimension, you must also specify a resource ID.

  • ECS service - The resource type is service and the unique identifier is the cluster name and service name. Example: service/default/sample-webapp .

  • Spot fleet request - The resource type is spot-fleet-request and the unique identifier is the Spot fleet request ID. Example: spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE .

  • EMR cluster - The resource type is instancegroup and the unique identifier is the cluster ID and instance group ID. Example: instancegroup/j-2EEZNYKUA1NTV/ig-1791Y4E1L8YI0 .

  • AppStream 2.0 fleet - The resource type is fleet and the unique identifier is the fleet name. Example: fleet/sample-fleet .

type ScalableDimension

string

param ScalableDimension

The scalable dimension. This string consists of the service namespace, resource type, and scaling property. If you specify a scalable dimension, you must also specify a resource ID.

  • ecs:service:DesiredCount - The desired task count of an ECS service.

  • ec2:spot-fleet-request:TargetCapacity - The target capacity of a Spot fleet request.

  • elasticmapreduce:instancegroup:InstanceCount - The instance count of an EMR Instance Group.

  • appstream:fleet:DesiredCapacity - The desired capacity of an AppStream 2.0 fleet.

type MaxResults

integer

param MaxResults

The maximum number of scalable target results. This value can be between 1 and 50. The default value is 50.

If this parameter is used, the operation returns up to MaxResults results at a time, along with a NextToken value. To get the next set of results, include the NextToken value in a subsequent call. If this parameter is not used, the operation returns up to 50 results and a NextToken value, if applicable.

type NextToken

string

param NextToken

The token for the next set of results.

rtype

dict

returns

Response Syntax

{
    'ScalingPolicies': [
        {
            'PolicyARN': 'string',
            'PolicyName': 'string',
            'ServiceNamespace': 'ecs'|'elasticmapreduce'|'ec2'|'appstream',
            'ResourceId': 'string',
            'ScalableDimension': 'ecs:service:DesiredCount'|'ec2:spot-fleet-request:TargetCapacity'|'elasticmapreduce:instancegroup:InstanceCount'|'appstream:fleet:DesiredCapacity',
            'PolicyType': 'StepScaling',
            'StepScalingPolicyConfiguration': {
                'AdjustmentType': 'ChangeInCapacity'|'PercentChangeInCapacity'|'ExactCapacity',
                'StepAdjustments': [
                    {
                        'MetricIntervalLowerBound': 123.0,
                        'MetricIntervalUpperBound': 123.0,
                        'ScalingAdjustment': 123
                    },
                ],
                'MinAdjustmentMagnitude': 123,
                'Cooldown': 123,
                'MetricAggregationType': 'Average'|'Minimum'|'Maximum'
            },
            'Alarms': [
                {
                    'AlarmName': 'string',
                    'AlarmARN': 'string'
                },
            ],
            'CreationTime': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • ScalingPolicies (list) --

      A list of scaling policy objects.

      • (dict) --

        Represents a scaling policy.

        • PolicyARN (string) --

          The Amazon Resource Name (ARN) of the scaling policy.

        • PolicyName (string) --

          The name of the scaling policy.

        • ServiceNamespace (string) --

          The namespace of the AWS service. For more information, see AWS Service Namespaces in the Amazon Web Services General Reference .

        • ResourceId (string) --

          The identifier of the resource associated with the scaling policy. This string consists of the resource type and unique identifier.

          • ECS service - The resource type is service and the unique identifier is the cluster name and service name. Example: service/default/sample-webapp .

          • Spot fleet request - The resource type is spot-fleet-request and the unique identifier is the Spot fleet request ID. Example: spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE .

          • EMR cluster - The resource type is instancegroup and the unique identifier is the cluster ID and instance group ID. Example: instancegroup/j-2EEZNYKUA1NTV/ig-1791Y4E1L8YI0 .

          • AppStream 2.0 fleet - The resource type is fleet and the unique identifier is the fleet name. Example: fleet/sample-fleet .

        • ScalableDimension (string) --

          The scalable dimension. This string consists of the service namespace, resource type, and scaling property.

          • ecs:service:DesiredCount - The desired task count of an ECS service.

          • ec2:spot-fleet-request:TargetCapacity - The target capacity of a Spot fleet request.

          • elasticmapreduce:instancegroup:InstanceCount - The instance count of an EMR Instance Group.

          • appstream:fleet:DesiredCapacity - The desired capacity of an AppStream 2.0 fleet.

        • PolicyType (string) --

          The scaling policy type.

        • StepScalingPolicyConfiguration (dict) --

          The configuration for the step scaling policy.

          • AdjustmentType (string) --

            The adjustment type, which specifies how the ScalingAdjustment parameter in a StepAdjustment is interpreted.

          • StepAdjustments (list) --

            A set of adjustments that enable you to scale based on the size of the alarm breach.

            • (dict) --

              Represents a step adjustment for a StepScalingPolicyConfiguration. Describes an adjustment based on the difference between the value of the aggregated CloudWatch metric and the breach threshold that you've defined for the alarm.

              For the following examples, suppose that you have an alarm with a breach threshold of 50:

              • To trigger the adjustment when the metric is greater than or equal to 50 and less than 60, specify a lower bound of 0 and an upper bound of 10.

              • To trigger the adjustment when the metric is greater than 40 and less than or equal to 50, specify a lower bound of -10 and an upper bound of 0.

              There are a few rules for the step adjustments for your step policy:

              • The ranges of your step adjustments can't overlap or have a gap.

              • At most one step adjustment can have a null lower bound. If one step adjustment has a negative lower bound, then there must be a step adjustment with a null lower bound.

              • At most one step adjustment can have a null upper bound. If one step adjustment has a positive upper bound, then there must be a step adjustment with a null upper bound.

              • The upper and lower bound can't be null in the same step adjustment.

              • MetricIntervalLowerBound (float) --

                The lower bound for the difference between the alarm threshold and the CloudWatch metric. If the metric value is above the breach threshold, the lower bound is inclusive (the metric must be greater than or equal to the threshold plus the lower bound). Otherwise, it is exclusive (the metric must be greater than the threshold plus the lower bound). A null value indicates negative infinity.

              • MetricIntervalUpperBound (float) --

                The upper bound for the difference between the alarm threshold and the CloudWatch metric. If the metric value is above the breach threshold, the upper bound is exclusive (the metric must be less than the threshold plus the upper bound). Otherwise, it is inclusive (the metric must be less than or equal to the threshold plus the upper bound). A null value indicates positive infinity.

                The upper bound must be greater than the lower bound.

              • ScalingAdjustment (integer) --

                The amount by which to scale, based on the specified adjustment type. A positive value adds to the current scalable dimension while a negative number removes from the current scalable dimension.

          • MinAdjustmentMagnitude (integer) --

            The minimum number to adjust your scalable dimension as a result of a scaling activity. If the adjustment type is PercentChangeInCapacity , the scaling policy changes the scalable dimension of the scalable target by this amount.

          • Cooldown (integer) --

            The amount of time, in seconds, after a scaling activity completes where previous trigger-related scaling activities can influence future scaling events.

            For scale out policies, while Cooldown is in effect, the capacity that has been added by the previous scale out event that initiated the Cooldown is calculated as part of the desired capacity for the next scale out. The intention is to continuously (but not excessively) scale out. For example, an alarm triggers a step scaling policy to scale out an Amazon ECS service by 2 tasks, the scaling activity completes successfully, and a Cooldown period of 5 minutes starts. During the Cooldown period, if the alarm triggers the same policy again but at a more aggressive step adjustment to scale out the service by 3 tasks, the 2 tasks that were added in the previous scale out event are considered part of that capacity and only 1 additional task is added to the desired count.

            For scale in policies, the Cooldown period is used to block subsequent scale in requests until it has expired. The intention is to scale in conservatively to protect your application's availability. However, if another alarm triggers a scale out policy during the Cooldown period after a scale-in, Application Auto Scaling scales out your scalable target immediately.

          • MetricAggregationType (string) --

            The aggregation type for the CloudWatch metrics. Valid values are Minimum , Maximum , and Average .

        • Alarms (list) --

          The CloudWatch alarms associated with the scaling policy.

          • (dict) --

            Represents a CloudWatch alarm associated with a scaling policy.

            • AlarmName (string) --

              The name of the alarm.

            • AlarmARN (string) --

              The Amazon Resource Name (ARN) of the alarm.

        • CreationTime (datetime) --

          The Unix timestamp for when the scaling policy was created.

    • NextToken (string) --

      The token required to get the next set of results. This value is null if there are no more results to return.

PutScalingPolicy (updated) Link ¶
Changes (request)
{'ScalableDimension': {'appstream:fleet:DesiredCapacity'},
 'ServiceNamespace': {'appstream'}}

Creates or updates a policy for an Application Auto Scaling scalable target.

Each scalable target is identified by a service namespace, resource ID, and scalable dimension. A scaling policy applies to the scalable target identified by those three attributes. You cannot create a scaling policy without first registering a scalable target using RegisterScalableTarget.

To update a policy, specify its policy name and the parameters that you want to change. Any parameters that you don't specify are not changed by this update request.

You can view the scaling policies for a service namespace using DescribeScalingPolicies. If you are no longer using a scaling policy, you can delete it using DeleteScalingPolicy.

See also: AWS API Documentation

Request Syntax

client.put_scaling_policy(
    PolicyName='string',
    ServiceNamespace='ecs'|'elasticmapreduce'|'ec2'|'appstream',
    ResourceId='string',
    ScalableDimension='ecs:service:DesiredCount'|'ec2:spot-fleet-request:TargetCapacity'|'elasticmapreduce:instancegroup:InstanceCount'|'appstream:fleet:DesiredCapacity',
    PolicyType='StepScaling',
    StepScalingPolicyConfiguration={
        'AdjustmentType': 'ChangeInCapacity'|'PercentChangeInCapacity'|'ExactCapacity',
        'StepAdjustments': [
            {
                'MetricIntervalLowerBound': 123.0,
                'MetricIntervalUpperBound': 123.0,
                'ScalingAdjustment': 123
            },
        ],
        'MinAdjustmentMagnitude': 123,
        'Cooldown': 123,
        'MetricAggregationType': 'Average'|'Minimum'|'Maximum'
    }
)
type PolicyName

string

param PolicyName

[REQUIRED]

The name of the scaling policy.

type ServiceNamespace

string

param ServiceNamespace

[REQUIRED]

The namespace of the AWS service. For more information, see AWS Service Namespaces in the Amazon Web Services General Reference .

type ResourceId

string

param ResourceId

[REQUIRED]

The identifier of the resource associated with the scaling policy. This string consists of the resource type and unique identifier.

  • ECS service - The resource type is service and the unique identifier is the cluster name and service name. Example: service/default/sample-webapp .

  • Spot fleet request - The resource type is spot-fleet-request and the unique identifier is the Spot fleet request ID. Example: spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE .

  • EMR cluster - The resource type is instancegroup and the unique identifier is the cluster ID and instance group ID. Example: instancegroup/j-2EEZNYKUA1NTV/ig-1791Y4E1L8YI0 .

  • AppStream 2.0 fleet - The resource type is fleet and the unique identifier is the fleet name. Example: fleet/sample-fleet .

type ScalableDimension

string

param ScalableDimension

[REQUIRED]

The scalable dimension. This string consists of the service namespace, resource type, and scaling property.

  • ecs:service:DesiredCount - The desired task count of an ECS service.

  • ec2:spot-fleet-request:TargetCapacity - The target capacity of a Spot fleet request.

  • elasticmapreduce:instancegroup:InstanceCount - The instance count of an EMR Instance Group.

  • appstream:fleet:DesiredCapacity - The desired capacity of an AppStream 2.0 fleet.

type PolicyType

string

param PolicyType

The policy type. If you are creating a new policy, this parameter is required. If you are updating a policy, this parameter is not required.

type StepScalingPolicyConfiguration

dict

param StepScalingPolicyConfiguration

The configuration for the step scaling policy. If you are creating a new policy, this parameter is required. If you are updating a policy, this parameter is not required. For more information, see StepScalingPolicyConfiguration and StepAdjustment.

  • AdjustmentType (string) --

    The adjustment type, which specifies how the ScalingAdjustment parameter in a StepAdjustment is interpreted.

  • StepAdjustments (list) --

    A set of adjustments that enable you to scale based on the size of the alarm breach.

    • (dict) --

      Represents a step adjustment for a StepScalingPolicyConfiguration. Describes an adjustment based on the difference between the value of the aggregated CloudWatch metric and the breach threshold that you've defined for the alarm.

      For the following examples, suppose that you have an alarm with a breach threshold of 50:

      • To trigger the adjustment when the metric is greater than or equal to 50 and less than 60, specify a lower bound of 0 and an upper bound of 10.

      • To trigger the adjustment when the metric is greater than 40 and less than or equal to 50, specify a lower bound of -10 and an upper bound of 0.

      There are a few rules for the step adjustments for your step policy:

      • The ranges of your step adjustments can't overlap or have a gap.

      • At most one step adjustment can have a null lower bound. If one step adjustment has a negative lower bound, then there must be a step adjustment with a null lower bound.

      • At most one step adjustment can have a null upper bound. If one step adjustment has a positive upper bound, then there must be a step adjustment with a null upper bound.

      • The upper and lower bound can't be null in the same step adjustment.

      • MetricIntervalLowerBound (float) --

        The lower bound for the difference between the alarm threshold and the CloudWatch metric. If the metric value is above the breach threshold, the lower bound is inclusive (the metric must be greater than or equal to the threshold plus the lower bound). Otherwise, it is exclusive (the metric must be greater than the threshold plus the lower bound). A null value indicates negative infinity.

      • MetricIntervalUpperBound (float) --

        The upper bound for the difference between the alarm threshold and the CloudWatch metric. If the metric value is above the breach threshold, the upper bound is exclusive (the metric must be less than the threshold plus the upper bound). Otherwise, it is inclusive (the metric must be less than or equal to the threshold plus the upper bound). A null value indicates positive infinity.

        The upper bound must be greater than the lower bound.

      • ScalingAdjustment (integer) -- [REQUIRED]

        The amount by which to scale, based on the specified adjustment type. A positive value adds to the current scalable dimension while a negative number removes from the current scalable dimension.

  • MinAdjustmentMagnitude (integer) --

    The minimum number to adjust your scalable dimension as a result of a scaling activity. If the adjustment type is PercentChangeInCapacity , the scaling policy changes the scalable dimension of the scalable target by this amount.

  • Cooldown (integer) --

    The amount of time, in seconds, after a scaling activity completes where previous trigger-related scaling activities can influence future scaling events.

    For scale out policies, while Cooldown is in effect, the capacity that has been added by the previous scale out event that initiated the Cooldown is calculated as part of the desired capacity for the next scale out. The intention is to continuously (but not excessively) scale out. For example, an alarm triggers a step scaling policy to scale out an Amazon ECS service by 2 tasks, the scaling activity completes successfully, and a Cooldown period of 5 minutes starts. During the Cooldown period, if the alarm triggers the same policy again but at a more aggressive step adjustment to scale out the service by 3 tasks, the 2 tasks that were added in the previous scale out event are considered part of that capacity and only 1 additional task is added to the desired count.

    For scale in policies, the Cooldown period is used to block subsequent scale in requests until it has expired. The intention is to scale in conservatively to protect your application's availability. However, if another alarm triggers a scale out policy during the Cooldown period after a scale-in, Application Auto Scaling scales out your scalable target immediately.

  • MetricAggregationType (string) --

    The aggregation type for the CloudWatch metrics. Valid values are Minimum , Maximum , and Average .

rtype

dict

returns

Response Syntax

{
    'PolicyARN': 'string'
}

Response Structure

  • (dict) --

    • PolicyARN (string) --

      The Amazon Resource Name (ARN) of the resulting scaling policy.

RegisterScalableTarget (updated) Link ¶
Changes (request)
{'ScalableDimension': {'appstream:fleet:DesiredCapacity'},
 'ServiceNamespace': {'appstream'}}

Registers or updates a scalable target. A scalable target is a resource that Application Auto Scaling can scale out or scale in. After you have registered a scalable target, you can use this operation to update the minimum and maximum values for your scalable dimension.

After you register a scalable target, you can create and apply scaling policies using PutScalingPolicy. You can view the scaling policies for a service namespace using DescribeScalableTargets. If you are no longer using a scalable target, you can deregister it using DeregisterScalableTarget.

See also: AWS API Documentation

Request Syntax

client.register_scalable_target(
    ServiceNamespace='ecs'|'elasticmapreduce'|'ec2'|'appstream',
    ResourceId='string',
    ScalableDimension='ecs:service:DesiredCount'|'ec2:spot-fleet-request:TargetCapacity'|'elasticmapreduce:instancegroup:InstanceCount'|'appstream:fleet:DesiredCapacity',
    MinCapacity=123,
    MaxCapacity=123,
    RoleARN='string'
)
type ServiceNamespace

string

param ServiceNamespace

[REQUIRED]

The namespace of the AWS service. For more information, see AWS Service Namespaces in the Amazon Web Services General Reference .

type ResourceId

string

param ResourceId

[REQUIRED]

The identifier of the resource associated with the scalable target. This string consists of the resource type and unique identifier.

  • ECS service - The resource type is service and the unique identifier is the cluster name and service name. Example: service/default/sample-webapp .

  • Spot fleet request - The resource type is spot-fleet-request and the unique identifier is the Spot fleet request ID. Example: spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE .

  • EMR cluster - The resource type is instancegroup and the unique identifier is the cluster ID and instance group ID. Example: instancegroup/j-2EEZNYKUA1NTV/ig-1791Y4E1L8YI0 .

  • AppStream 2.0 fleet - The resource type is fleet and the unique identifier is the fleet name. Example: fleet/sample-fleet .

type ScalableDimension

string

param ScalableDimension

[REQUIRED]

The scalable dimension associated with the scalable target. This string consists of the service namespace, resource type, and scaling property.

  • ecs:service:DesiredCount - The desired task count of an ECS service.

  • ec2:spot-fleet-request:TargetCapacity - The target capacity of a Spot fleet request.

  • elasticmapreduce:instancegroup:InstanceCount - The instance count of an EMR Instance Group.

  • appstream:fleet:DesiredCapacity - The desired capacity of an AppStream 2.0 fleet.

type MinCapacity

integer

param MinCapacity

The minimum value to scale to in response to a scale in event. This parameter is required if you are registering a scalable target and optional if you are updating one.

type MaxCapacity

integer

param MaxCapacity

The maximum value to scale to in response to a scale out event. This parameter is required if you are registering a scalable target and optional if you are updating one.

type RoleARN

string

param RoleARN

The ARN of an IAM role that allows Application Auto Scaling to modify the scalable target on your behalf. This parameter is required when you register a scalable target and optional when you update one.

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) --