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.



15724
15725
15726
15727
15728
15729
15730
# File 'lib/aws-sdk-medialive/types.rb', line 15724

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.



15724
15725
15726
15727
15728
15729
15730
# File 'lib/aws-sdk-medialive/types.rb', line 15724

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.



15724
15725
15726
15727
15728
15729
15730
# File 'lib/aws-sdk-medialive/types.rb', line 15724

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