Class: Aws::MediaLive::Types::AutomaticInputFailoverSettings
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::MediaLive::Types::AutomaticInputFailoverSettings
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-medialive/types.rb
 
Overview
The settings for Automatic Input Failover.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #error_clear_time_msec  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
This clear time defines the requirement a recovered input must meet to be considered healthy.
 - 
  
    
      #failover_conditions  ⇒ Array<Types::FailoverCondition> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of failover conditions.
 - 
  
    
      #input_preference  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Input preference when deciding which input to make active when a previously failed input has recovered.
 - 
  
    
      #secondary_input_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The input ID of the secondary input in the automatic input failover pair.
 
Instance Attribute Details
#error_clear_time_msec ⇒ Integer
This clear time defines the requirement a recovered input must meet to be considered healthy. The input must have no failover conditions for this length of time. Enter a time in milliseconds. This value is particularly important if the input_preference for the failover pair is set to PRIMARY_INPUT_PREFERRED, because after this time, MediaLive will switch back to the primary input.
      777 778 779 780 781 782 783 784  | 
    
      # File 'lib/aws-sdk-medialive/types.rb', line 777 class AutomaticInputFailoverSettings < Struct.new( :error_clear_time_msec, :failover_conditions, :input_preference, :secondary_input_id) SENSITIVE = [] include Aws::Structure end  | 
  
#failover_conditions ⇒ Array<Types::FailoverCondition>
A list of failover conditions. If any of these conditions occur, MediaLive will perform a failover to the other input.
      777 778 779 780 781 782 783 784  | 
    
      # File 'lib/aws-sdk-medialive/types.rb', line 777 class AutomaticInputFailoverSettings < Struct.new( :error_clear_time_msec, :failover_conditions, :input_preference, :secondary_input_id) SENSITIVE = [] include Aws::Structure end  | 
  
#input_preference ⇒ String
Input preference when deciding which input to make active when a previously failed input has recovered.
      777 778 779 780 781 782 783 784  | 
    
      # File 'lib/aws-sdk-medialive/types.rb', line 777 class AutomaticInputFailoverSettings < Struct.new( :error_clear_time_msec, :failover_conditions, :input_preference, :secondary_input_id) SENSITIVE = [] include Aws::Structure end  | 
  
#secondary_input_id ⇒ String
The input ID of the secondary input in the automatic input failover pair.
      777 778 779 780 781 782 783 784  | 
    
      # File 'lib/aws-sdk-medialive/types.rb', line 777 class AutomaticInputFailoverSettings < Struct.new( :error_clear_time_msec, :failover_conditions, :input_preference, :secondary_input_id) SENSITIVE = [] include Aws::Structure end  |