Class: Aws::AutoScalingPlans::Types::Datapoint

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-autoscalingplans/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

Instance Attribute Details

#timestampTime

The time stamp for the data point in UTC format.

Returns:

  • (Time)


245
246
247
248
249
250
# File 'gems/aws-sdk-autoscalingplans/lib/aws-sdk-autoscalingplans/types.rb', line 245

class Datapoint < Struct.new(
  :timestamp,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueFloat

The value of the data point.

Returns:

  • (Float)


245
246
247
248
249
250
# File 'gems/aws-sdk-autoscalingplans/lib/aws-sdk-autoscalingplans/types.rb', line 245

class Datapoint < Struct.new(
  :timestamp,
  :value)
  SENSITIVE = []
  include Aws::Structure
end