Class: Aws::AutoScaling::Types::LoadForecast

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb

Overview

A GetPredictiveScalingForecast call returns the load forecast for a predictive scaling policy. This structure includes the data points for that load forecast, along with the timestamps of those data points and the metric specification.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#metric_specificationTypes::PredictiveScalingMetricSpecification

The metric specification for the load forecast.



4837
4838
4839
4840
4841
4842
4843
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 4837

class LoadForecast < Struct.new(
  :timestamps,
  :values,
  :metric_specification)
  SENSITIVE = []
  include Aws::Structure
end

#timestampsArray<Time>

The timestamps for the data points, in UTC format.

Returns:

  • (Array<Time>)


4837
4838
4839
4840
4841
4842
4843
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 4837

class LoadForecast < Struct.new(
  :timestamps,
  :values,
  :metric_specification)
  SENSITIVE = []
  include Aws::Structure
end

#valuesArray<Float>

The values of the data points.

Returns:

  • (Array<Float>)


4837
4838
4839
4840
4841
4842
4843
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 4837

class LoadForecast < Struct.new(
  :timestamps,
  :values,
  :metric_specification)
  SENSITIVE = []
  include Aws::Structure
end