Class: Aws::DevOpsGuru::Types::AnomalyTimeRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::DevOpsGuru::Types::AnomalyTimeRange
- Defined in:
- gems/aws-sdk-devopsguru/lib/aws-sdk-devopsguru/types.rb
Overview
A time range that specifies when the observed unusual behavior in an
anomaly started and ended. This is different from
AnomalyReportedTimeRange, which specifies the time range when DevOps
Guru opens and then closes an anomaly.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_time ⇒ Time
The time when the anomalous behavior ended.
-
#start_time ⇒ Time
The time when the anomalous behavior started.
Instance Attribute Details
#end_time ⇒ Time
The time when the anomalous behavior ended.
270 271 272 273 274 275 |
# File 'gems/aws-sdk-devopsguru/lib/aws-sdk-devopsguru/types.rb', line 270 class AnomalyTimeRange < Struct.new( :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Time
The time when the anomalous behavior started.
270 271 272 273 274 275 |
# File 'gems/aws-sdk-devopsguru/lib/aws-sdk-devopsguru/types.rb', line 270 class AnomalyTimeRange < Struct.new( :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |