Class: Aws::Scheduler::Types::FlexibleTimeWindow

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-scheduler/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

Instance Attribute Details

#maximum_window_in_minutesInteger

The maximum time window during which a schedule can be invoked.

Returns:

  • (Integer)


497
498
499
500
501
502
# File 'gems/aws-sdk-scheduler/lib/aws-sdk-scheduler/types.rb', line 497

class FlexibleTimeWindow < Struct.new(
  :maximum_window_in_minutes,
  :mode)
  SENSITIVE = []
  include Aws::Structure
end

#modeString

Determines whether the schedule is invoked within a flexible time window.

Returns:

  • (String)


497
498
499
500
501
502
# File 'gems/aws-sdk-scheduler/lib/aws-sdk-scheduler/types.rb', line 497

class FlexibleTimeWindow < Struct.new(
  :maximum_window_in_minutes,
  :mode)
  SENSITIVE = []
  include Aws::Structure
end