Class: Aws::ConfigService::Types::TimeWindow

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb

Overview

Filters evaluation results based on start and end times.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#end_timeTime

The end time of an execution. The end time must be after the start date.

Returns:

  • (Time)


8875
8876
8877
8878
8879
8880
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 8875

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

#start_timeTime

The start time of an execution.

Returns:

  • (Time)


8875
8876
8877
8878
8879
8880
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 8875

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