Class: Aws::AutoScalingPlans::Types::Datapoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::AutoScalingPlans::Types::Datapoint
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-autoscalingplans/types.rb
Overview
Represents a single value in the forecast data used for predictive scaling.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#timestamp ⇒ Time
The time stamp for the data point in UTC format.
-
#value ⇒ Float
The value of the data point.
Instance Attribute Details
#timestamp ⇒ Time
The time stamp for the data point in UTC format.
245 246 247 248 249 250 |
# File 'lib/aws-sdk-autoscalingplans/types.rb', line 245 class Datapoint < Struct.new( :timestamp, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Float
The value of the data point.
245 246 247 248 249 250 |
# File 'lib/aws-sdk-autoscalingplans/types.rb', line 245 class Datapoint < Struct.new( :timestamp, :value) SENSITIVE = [] include Aws::Structure end |