Class: Aws::EC2::Types::MetricPoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::MetricPoint
- 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
-
#end_date ⇒ Time
The end date for the metric point.
-
#start_date ⇒ Time
The start date for the metric point.
-
#status ⇒ String
The status of the metric point.
- #value ⇒ Float
Instance Attribute Details
#end_date ⇒ Time
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`.
50150 50151 50152 50153 50154 50155 50156 50157 |
# File 'lib/aws-sdk-ec2/types.rb', line 50150 class MetricPoint < Struct.new( :start_date, :end_date, :value, :status) SENSITIVE = [] include Aws::Structure end |
#start_date ⇒ Time
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`.
50150 50151 50152 50153 50154 50155 50156 50157 |
# File 'lib/aws-sdk-ec2/types.rb', line 50150 class MetricPoint < Struct.new( :start_date, :end_date, :value, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the metric point.
50150 50151 50152 50153 50154 50155 50156 50157 |
# File 'lib/aws-sdk-ec2/types.rb', line 50150 class MetricPoint < Struct.new( :start_date, :end_date, :value, :status) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Float
50150 50151 50152 50153 50154 50155 50156 50157 |
# File 'lib/aws-sdk-ec2/types.rb', line 50150 class MetricPoint < Struct.new( :start_date, :end_date, :value, :status) SENSITIVE = [] include Aws::Structure end |