Get Scaling Plan Resource Forecast Data
autoscalingplans_get_scaling_plan_resource_forecast_data | R Documentation |
Retrieves the forecast data for a scalable resource¶
Description¶
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.
Usage¶
autoscalingplans_get_scaling_plan_resource_forecast_data(
ScalingPlanName, ScalingPlanVersion, ServiceNamespace, ResourceId,
ScalableDimension, ForecastDataType, StartTime, EndTime)
Arguments¶
ScalingPlanName |
[required] The name of the scaling plan. |
ScalingPlanVersion |
[required] The version number of the scaling plan. Currently, the
only valid value is |
ServiceNamespace |
[required] The namespace of the AWS service. The only valid value
is |
ResourceId |
[required] The ID of the resource. This string consists of a
prefix ( |
ScalableDimension |
[required] The scalable dimension for the resource. The only
valid value is
|
ForecastDataType |
[required] The type of forecast data to get.
|
StartTime |
[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 |
[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. |
Value¶
A list with the following syntax:
list(
Datapoints = list(
list(
Timestamp = as.POSIXct(
"2015-01-01"
),
Value = 123.0
)
)
)
Request syntax¶
svc$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 = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
)
)