Class: Aws::ConfigService::Types::TimeWindow
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::TimeWindow
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-configservice/types.rb
Overview
Filters evaluation results based on start and end times.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_time ⇒ Time
The end time of an execution.
-
#start_time ⇒ Time
The start time of an execution.
Instance Attribute Details
#end_time ⇒ Time
The end time of an execution. The end time must be after the start date.
8874 8875 8876 8877 8878 8879 |
# File 'lib/aws-sdk-configservice/types.rb', line 8874 class TimeWindow < Struct.new( :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Time
The start time of an execution.
8874 8875 8876 8877 8878 8879 |
# File 'lib/aws-sdk-configservice/types.rb', line 8874 class TimeWindow < Struct.new( :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |