You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::MediaLive::Types::AutomaticInputFailoverSettings

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing AutomaticInputFailoverSettings as input to an Aws::Client method, you can use a vanilla Hash:

{
  error_clear_time_msec: 1,
  failover_conditions: [
    {
      failover_condition_settings: {
        input_loss_settings: {
          input_loss_threshold_msec: 1,
        },
      },
    },
  ],
  input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
  secondary_input_id: "__string", # required
}

The settings for Automatic Input Failover.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#error_clear_time_msecInteger

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.

Returns:

  • (Integer)

    This clear time defines the requirement a recovered input must meet to be considered healthy.

#failover_conditionsArray<Types::FailoverCondition>

A list of failover conditions. If any of these conditions occur, MediaLive will perform a failover to the other input.

Returns:

#input_preferenceString

Input preference when deciding which input to make active when a previously failed input has recovered.

Possible values:

  • EQUAL_INPUT_PREFERENCE
  • PRIMARY_INPUT_PREFERRED

Returns:

  • (String)

    Input preference when deciding which input to make active when a previously failed input has recovered.

#secondary_input_idString

The input ID of the secondary input in the automatic input failover pair.

Returns:

  • (String)

    The input ID of the secondary input in the automatic input failover pair.