Class: Aws::MediaLive::Types::FollowModeScheduleActionStartSettings

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 FollowModeScheduleActionStartSettings data as a hash:

{
  follow_point: "END", # required, accepts END, START
  reference_action_name: "__string", # required
}

Settings to specify if an action follows another.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#follow_pointString

Identifies whether this action starts relative to the start or relative to the end of the reference action.

Returns:

  • (String)


7635
7636
7637
7638
7639
7640
# File 'lib/aws-sdk-medialive/types.rb', line 7635

class FollowModeScheduleActionStartSettings < Struct.new(
  :follow_point,
  :reference_action_name)
  SENSITIVE = []
  include Aws::Structure
end

#reference_action_nameString

The action name of another action that this one refers to.

Returns:

  • (String)


7635
7636
7637
7638
7639
7640
# File 'lib/aws-sdk-medialive/types.rb', line 7635

class FollowModeScheduleActionStartSettings < Struct.new(
  :follow_point,
  :reference_action_name)
  SENSITIVE = []
  include Aws::Structure
end