Class: Aws::ComputeOptimizerAutomation::Types::TimePeriod
- Inherits:
-
Struct
- Object
- Struct
- Aws::ComputeOptimizerAutomation::Types::TimePeriod
- Defined in:
- gems/aws-sdk-computeoptimizerautomation/lib/aws-sdk-computeoptimizerautomation/types.rb
Overview
Defines a time range with inclusive start time and exclusive end time for filtering and analysis.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_time_exclusive ⇒ Time
The end time of the period, exclusive.
-
#start_time_inclusive ⇒ Time
The start time of the period, inclusive.
Instance Attribute Details
#end_time_exclusive ⇒ Time
The end time of the period, exclusive. Events before this time are included.
2281 2282 2283 2284 2285 2286 |
# File 'gems/aws-sdk-computeoptimizerautomation/lib/aws-sdk-computeoptimizerautomation/types.rb', line 2281 class TimePeriod < Struct.new( :start_time_inclusive, :end_time_exclusive) SENSITIVE = [] include Aws::Structure end |
#start_time_inclusive ⇒ Time
The start time of the period, inclusive. Events at or after this time are included.
2281 2282 2283 2284 2285 2286 |
# File 'gems/aws-sdk-computeoptimizerautomation/lib/aws-sdk-computeoptimizerautomation/types.rb', line 2281 class TimePeriod < Struct.new( :start_time_inclusive, :end_time_exclusive) SENSITIVE = [] include Aws::Structure end |