Class: Aws::DevOpsGuru::Types::AnomalyTimeRange

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#end_timeTime

The time when the anomalous behavior ended.

Returns:

  • (Time)


270
271
272
273
274
275
# File 'lib/aws-sdk-devopsguru/types.rb', line 270

class AnomalyTimeRange < Struct.new(
  :start_time,
  :end_time)
  SENSITIVE = []
  include Aws::Structure
end

#start_timeTime

The time when the anomalous behavior started.

Returns:

  • (Time)


270
271
272
273
274
275
# File 'lib/aws-sdk-devopsguru/types.rb', line 270

class AnomalyTimeRange < Struct.new(
  :start_time,
  :end_time)
  SENSITIVE = []
  include Aws::Structure
end