Class: Aws::MediaLive::Types::ScheduleActionStartSettings

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-medialive/types.rb

Overview

Note:

When making an API call, you may pass ScheduleActionStartSettings data as a hash:

{
  fixed_mode_schedule_action_start_settings: {
    time: "__string", # required
  },
  follow_mode_schedule_action_start_settings: {
    follow_point: "END", # required, accepts END, START
    reference_action_name: "__string", # required
  },
  immediate_mode_schedule_action_start_settings: {
  },
}

Settings to specify when an action should occur. Only one of the options must be selected.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#fixed_mode_schedule_action_start_settingsTypes::FixedModeScheduleActionStartSettings

Option for specifying the start time for an action.



16006
16007
16008
16009
16010
16011
16012
# File 'lib/aws-sdk-medialive/types.rb', line 16006

class ScheduleActionStartSettings < Struct.new(
  :fixed_mode_schedule_action_start_settings,
  :follow_mode_schedule_action_start_settings,
  :immediate_mode_schedule_action_start_settings)
  SENSITIVE = []
  include Aws::Structure
end

#follow_mode_schedule_action_start_settingsTypes::FollowModeScheduleActionStartSettings

Option for specifying an action as relative to another action.



16006
16007
16008
16009
16010
16011
16012
# File 'lib/aws-sdk-medialive/types.rb', line 16006

class ScheduleActionStartSettings < Struct.new(
  :fixed_mode_schedule_action_start_settings,
  :follow_mode_schedule_action_start_settings,
  :immediate_mode_schedule_action_start_settings)
  SENSITIVE = []
  include Aws::Structure
end

#immediate_mode_schedule_action_start_settingsTypes::ImmediateModeScheduleActionStartSettings

Option for specifying an action that should be applied immediately.



16006
16007
16008
16009
16010
16011
16012
# File 'lib/aws-sdk-medialive/types.rb', line 16006

class ScheduleActionStartSettings < Struct.new(
  :fixed_mode_schedule_action_start_settings,
  :follow_mode_schedule_action_start_settings,
  :immediate_mode_schedule_action_start_settings)
  SENSITIVE = []
  include Aws::Structure
end