Class: Aws::AutoScaling::Types::CapacityForecast

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

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#timestampsArray<Time>

The timestamps for the data points, in UTC format.

Returns:

  • (Array<Time>)


854
855
856
857
858
859
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 854

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

#valuesArray<Float>

The values of the data points.

Returns:

  • (Array<Float>)


854
855
856
857
858
859
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 854

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