Class: Aws::DevOpsGuru::Types::AnomalyReportedTimeRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::DevOpsGuru::Types::AnomalyReportedTimeRange
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devopsguru/types.rb
Overview
A time range that specifies when DevOps Guru opens and then closes an anomaly. This is different from ‘AnomalyTimeRange`, which specifies the time range when DevOps Guru actually observes the anomalous behavior.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#close_time ⇒ Time
The time when an anomaly is closed.
-
#open_time ⇒ Time
The time when an anomaly is opened.
Instance Attribute Details
#close_time ⇒ Time
The time when an anomaly is closed.
175 176 177 178 179 180 |
# File 'lib/aws-sdk-devopsguru/types.rb', line 175 class AnomalyReportedTimeRange < Struct.new( :open_time, :close_time) SENSITIVE = [] include Aws::Structure end |
#open_time ⇒ Time
The time when an anomaly is opened.
175 176 177 178 179 180 |
# File 'lib/aws-sdk-devopsguru/types.rb', line 175 class AnomalyReportedTimeRange < Struct.new( :open_time, :close_time) SENSITIVE = [] include Aws::Structure end |