Class: Aws::MediaLive::Types::ScheduleAction
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::MediaLive::Types::ScheduleAction
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-medialive/types.rb
 
Overview
Contains information on a single schedule action.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #action_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the action, must be unique within the schedule.
 - 
  
    
      #schedule_action_settings  ⇒ Types::ScheduleActionSettings 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Settings for this schedule action.
 - 
  
    
      #schedule_action_start_settings  ⇒ Types::ScheduleActionStartSettings 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time for the action to start in the channel.
 
Instance Attribute Details
#action_name ⇒ String
The name of the action, must be unique within the schedule. This name provides the main reference to an action once it is added to the schedule. A name is unique if it is no longer in the schedule. The schedule is automatically cleaned up to remove actions with a start time of more than 1 hour ago (approximately) so at that point a name can be reused.
      10914 10915 10916 10917 10918 10919 10920  | 
    
      # File 'lib/aws-sdk-medialive/types.rb', line 10914 class ScheduleAction < Struct.new( :action_name, :schedule_action_settings, :schedule_action_start_settings) SENSITIVE = [] include Aws::Structure end  | 
  
#schedule_action_settings ⇒ Types::ScheduleActionSettings
Settings for this schedule action.
      10914 10915 10916 10917 10918 10919 10920  | 
    
      # File 'lib/aws-sdk-medialive/types.rb', line 10914 class ScheduleAction < Struct.new( :action_name, :schedule_action_settings, :schedule_action_start_settings) SENSITIVE = [] include Aws::Structure end  | 
  
#schedule_action_start_settings ⇒ Types::ScheduleActionStartSettings
The time for the action to start in the channel.
      10914 10915 10916 10917 10918 10919 10920  | 
    
      # File 'lib/aws-sdk-medialive/types.rb', line 10914 class ScheduleAction < Struct.new( :action_name, :schedule_action_settings, :schedule_action_start_settings) SENSITIVE = [] include Aws::Structure end  |