Class: Aws::AutoScaling::Types::GetPredictiveScalingForecastType
- Inherits:
-
Struct
- Object
- Struct
- Aws::AutoScaling::Types::GetPredictiveScalingForecastType
- Defined in:
- gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb
Overview
When making an API call, you may pass GetPredictiveScalingForecastType data as a hash:
{
auto_scaling_group_name: "XmlStringMaxLen255", # required
policy_name: "XmlStringMaxLen255", # required
start_time: Time.now, # required
end_time: Time.now, # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_scaling_group_name ⇒ String
The name of the Auto Scaling group.
-
#end_time ⇒ Time
The exclusive end time of the time range for the forecast data to get.
-
#policy_name ⇒ String
The name of the policy.
-
#start_time ⇒ Time
The inclusive start time of the time range for the forecast data to get.
Instance Attribute Details
#auto_scaling_group_name ⇒ String
The name of the Auto Scaling group.
3669 3670 3671 3672 3673 3674 3675 3676 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 3669 class GetPredictiveScalingForecastType < Struct.new( :auto_scaling_group_name, :policy_name, :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |
#end_time ⇒ Time
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 30 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. Amazon EC2 Auto Scaling only issues forecasts for periods of two days in advance.
3669 3670 3671 3672 3673 3674 3675 3676 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 3669 class GetPredictiveScalingForecastType < Struct.new( :auto_scaling_group_name, :policy_name, :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |
#policy_name ⇒ String
The name of the policy.
3669 3670 3671 3672 3673 3674 3675 3676 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 3669 class GetPredictiveScalingForecastType < Struct.new( :auto_scaling_group_name, :policy_name, :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Time
The inclusive start time of the time range for the forecast data to get. At most, the date and time can be one year before the current date and time.
3669 3670 3671 3672 3673 3674 3675 3676 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 3669 class GetPredictiveScalingForecastType < Struct.new( :auto_scaling_group_name, :policy_name, :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |