Class: Aws::MediaLive::Types::FollowModeScheduleActionStartSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaLive::Types::FollowModeScheduleActionStartSettings
- Defined in:
- gems/aws-sdk-medialive/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
-
#follow_point ⇒ String
Identifies whether this action starts relative to the start or relative to the end of the reference action.
-
#reference_action_name ⇒ String
The action name of another action that this one refers to.
Instance Attribute Details
#follow_point ⇒ String
Identifies whether this action starts relative to the start or relative to the end of the reference action.
7121 7122 7123 7124 7125 7126 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 7121 class FollowModeScheduleActionStartSettings < Struct.new( :follow_point, :reference_action_name) SENSITIVE = [] include Aws::Structure end |
#reference_action_name ⇒ String
The action name of another action that this one refers to.
7121 7122 7123 7124 7125 7126 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 7121 class FollowModeScheduleActionStartSettings < Struct.new( :follow_point, :reference_action_name) SENSITIVE = [] include Aws::Structure end |