Class: Aws::Scheduler::Types::FlexibleTimeWindow
- Inherits:
-
Struct
- Object
- Struct
- Aws::Scheduler::Types::FlexibleTimeWindow
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-scheduler/types.rb
Overview
Allows you to configure a time window during which EventBridge Scheduler invokes the schedule.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#maximum_window_in_minutes ⇒ Integer
The maximum time window during which a schedule can be invoked.
-
#mode ⇒ String
Determines whether the schedule is invoked within a flexible time window.
Instance Attribute Details
#maximum_window_in_minutes ⇒ Integer
The maximum time window during which a schedule can be invoked.
497 498 499 500 501 502 |
# File 'lib/aws-sdk-scheduler/types.rb', line 497 class FlexibleTimeWindow < Struct.new( :maximum_window_in_minutes, :mode) SENSITIVE = [] include Aws::Structure end |
#mode ⇒ String
Determines whether the schedule is invoked within a flexible time window.
497 498 499 500 501 502 |
# File 'lib/aws-sdk-scheduler/types.rb', line 497 class FlexibleTimeWindow < Struct.new( :maximum_window_in_minutes, :mode) SENSITIVE = [] include Aws::Structure end |