Class: Aws::MediaLive::Types::InputLossFailoverSettings

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

{
  input_loss_threshold_msec: 1,
}

MediaLive will perform a failover if content is not detected in this input for the specified period.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#input_loss_threshold_msecInteger

The amount of time (in milliseconds) that no input is detected. After that time, an input failover will occur.

Returns:

  • (Integer)


10601
10602
10603
10604
10605
# File 'lib/aws-sdk-medialive/types.rb', line 10601

class InputLossFailoverSettings < Struct.new(
  :input_loss_threshold_msec)
  SENSITIVE = []
  include Aws::Structure
end