Class: Aws::AutoScaling::Types::CapacityForecast
- Inherits:
-
Struct
- Object
- Struct
- Aws::AutoScaling::Types::CapacityForecast
- Includes:
- Structure
- Defined in:
- 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
-
#timestamps ⇒ Array<Time>
The timestamps for the data points, in UTC format.
-
#values ⇒ Array<Float>
The values of the data points.
Instance Attribute Details
#timestamps ⇒ Array<Time>
The timestamps for the data points, in UTC format.
1055 1056 1057 1058 1059 1060 |
# File 'lib/aws-sdk-autoscaling/types.rb', line 1055 class CapacityForecast < Struct.new( :timestamps, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<Float>
The values of the data points.
1055 1056 1057 1058 1059 1060 |
# File 'lib/aws-sdk-autoscaling/types.rb', line 1055 class CapacityForecast < Struct.new( :timestamps, :values) SENSITIVE = [] include Aws::Structure end |