Class: Aws::CloudWatch::Types::Range
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatch::Types::Range
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatch/types.rb
Overview
Specifies one range of days or times to exclude from use for training an anomaly detection model.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_time ⇒ Time
The end time of the range to exclude.
-
#start_time ⇒ Time
The start time of the range to exclude.
Instance Attribute Details
#end_time ⇒ Time
The end time of the range to exclude. The format is ‘yyyy-MM-dd’T’HH:mm:ss`. For example, ‘2019-07-01T23:59:59`.
4394 4395 4396 4397 4398 4399 |
# File 'lib/aws-sdk-cloudwatch/types.rb', line 4394 class Range < Struct.new( :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Time
The start time of the range to exclude. The format is ‘yyyy-MM-dd’T’HH:mm:ss`. For example, ‘2019-07-01T23:59:59`.
4394 4395 4396 4397 4398 4399 |
# File 'lib/aws-sdk-cloudwatch/types.rb', line 4394 class Range < Struct.new( :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |