Class: Aws::DevOpsGuru::Types::AnomalyReportedTimeRange

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#close_timeTime

The time when an anomaly is closed.

Returns:

  • (Time)


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_timeTime

The time when an anomaly is opened.

Returns:

  • (Time)


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