AutoScalingPlans / Client / get_scaling_plan_resource_forecast_data

get_scaling_plan_resource_forecast_data#

AutoScalingPlans.Client.get_scaling_plan_resource_forecast_data(**kwargs)#

Retrieves the forecast data for a scalable resource.

Capacity forecasts are represented as predicted values, or data points, that are calculated using historical data points from a specified CloudWatch load metric. Data points are available for up to 56 days.

See also: AWS API Documentation

Request Syntax

response = client.get_scaling_plan_resource_forecast_data(
    ScalingPlanName='string',
    ScalingPlanVersion=123,
    ServiceNamespace='autoscaling'|'ecs'|'ec2'|'rds'|'dynamodb',
    ResourceId='string',
    ScalableDimension='autoscaling:autoScalingGroup:DesiredCapacity'|'ecs:service:DesiredCount'|'ec2:spot-fleet-request:TargetCapacity'|'rds:cluster:ReadReplicaCount'|'dynamodb:table:ReadCapacityUnits'|'dynamodb:table:WriteCapacityUnits'|'dynamodb:index:ReadCapacityUnits'|'dynamodb:index:WriteCapacityUnits',
    ForecastDataType='CapacityForecast'|'LoadForecast'|'ScheduledActionMinCapacity'|'ScheduledActionMaxCapacity',
    StartTime=datetime(2015, 1, 1),
    EndTime=datetime(2015, 1, 1)
)
Parameters:
  • ScalingPlanName (string) –

    [REQUIRED]

    The name of the scaling plan.

  • ScalingPlanVersion (integer) –

    [REQUIRED]

    The version number of the scaling plan. Currently, the only valid value is 1.

  • ServiceNamespace (string) –

    [REQUIRED]

    The namespace of the AWS service. The only valid value is autoscaling.

  • ResourceId (string) –

    [REQUIRED]

    The ID of the resource. This string consists of a prefix ( autoScalingGroup) followed by the name of a specified Auto Scaling group ( my-asg). Example: autoScalingGroup/my-asg.

  • ScalableDimension (string) –

    [REQUIRED]

    The scalable dimension for the resource. The only valid value is autoscaling:autoScalingGroup:DesiredCapacity.

  • ForecastDataType (string) –

    [REQUIRED]

    The type of forecast data to get.

    • LoadForecast: The load metric forecast.

    • CapacityForecast: The capacity forecast.

    • ScheduledActionMinCapacity: The minimum capacity for each scheduled scaling action. This data is calculated as the larger of two values: the capacity forecast or the minimum capacity in the scaling instruction.

    • ScheduledActionMaxCapacity: The maximum capacity for each scheduled scaling action. The calculation used is determined by the predictive scaling maximum capacity behavior setting in the scaling instruction.

  • StartTime (datetime) –

    [REQUIRED]

    The inclusive start time of the time range for the forecast data to get. The date and time can be at most 56 days before the current date and time.

  • EndTime (datetime) –

    [REQUIRED]

    The exclusive end time of the time range for the forecast data to get. The maximum time duration between the start and end time is seven days.

    Although this parameter can accept a date and time that is more than two days in the future, the availability of forecast data has limits. AWS Auto Scaling only issues forecasts for periods of two days in advance.

Return type:

dict

Returns:

Response Syntax

{
    'Datapoints': [
        {
            'Timestamp': datetime(2015, 1, 1),
            'Value': 123.0
        },
    ]
}

Response Structure

  • (dict) –

    • Datapoints (list) –

      The data points to return.

      • (dict) –

        Represents a single value in the forecast data used for predictive scaling.

        • Timestamp (datetime) –

          The time stamp for the data point in UTC format.

        • Value (float) –

          The value of the data point.

Exceptions

  • AutoScalingPlans.Client.exceptions.ValidationException

  • AutoScalingPlans.Client.exceptions.InternalServiceException