Class: Aws::EC2::Types::MetricPoint

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Indicates whether the network was healthy or degraded at a particular point. The value is aggregated from the ‘startDate` to the `endDate`. Currently only `five_minutes` is supported.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#end_dateTime

The end date for the metric point. The ending time must be formatted as ‘yyyy-mm-ddThh:mm:ss`. For example, `2022-06-12T12:00:00.000Z`.

Returns:

  • (Time)


46738
46739
46740
46741
46742
46743
46744
46745
# File 'lib/aws-sdk-ec2/types.rb', line 46738

class MetricPoint < Struct.new(
  :start_date,
  :end_date,
  :value,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#start_dateTime

The start date for the metric point. The starting date for the metric point. The starting time must be formatted as ‘yyyy-mm-ddThh:mm:ss`. For example, `2022-06-10T12:00:00.000Z`.

Returns:

  • (Time)


46738
46739
46740
46741
46742
46743
46744
46745
# File 'lib/aws-sdk-ec2/types.rb', line 46738

class MetricPoint < Struct.new(
  :start_date,
  :end_date,
  :value,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

The status of the metric point.

Returns:

  • (String)


46738
46739
46740
46741
46742
46743
46744
46745
# File 'lib/aws-sdk-ec2/types.rb', line 46738

class MetricPoint < Struct.new(
  :start_date,
  :end_date,
  :value,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#valueFloat

Returns:

  • (Float)


46738
46739
46740
46741
46742
46743
46744
46745
# File 'lib/aws-sdk-ec2/types.rb', line 46738

class MetricPoint < Struct.new(
  :start_date,
  :end_date,
  :value,
  :status)
  SENSITIVE = []
  include Aws::Structure
end