Class: Aws::MediaLive::Types::UdpGroupSettings

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

{
  input_loss_action: "DROP_PROGRAM", # accepts DROP_PROGRAM, DROP_TS, EMIT_PROGRAM
  timed_metadata_id_3_frame: "NONE", # accepts NONE, PRIV, TDRL
  timed_metadata_id_3_period: 1,
}

Udp Group Settings

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#input_loss_actionString

Specifies behavior of last resort when input video is lost, and no more backup inputs are available. When dropTs is selected the entire transport stream will stop being emitted. When dropProgram is selected the program can be dropped from the transport stream (and replaced with null packets to meet the TS bitrate requirement). Or, when emitProgram is chosen the transport stream will continue to be produced normally with repeat frames, black frames, or slate frames substituted for the absent input video.

Returns:

  • (String)


17505
17506
17507
17508
17509
17510
17511
# File 'lib/aws-sdk-medialive/types.rb', line 17505

class UdpGroupSettings < Struct.new(
  :input_loss_action,
  :timed_metadata_id_3_frame,
  :timed_metadata_id_3_period)
  SENSITIVE = []
  include Aws::Structure
end

#timed_metadata_id_3_frameString

Indicates ID3 frame that has the timecode.

Returns:

  • (String)


17505
17506
17507
17508
17509
17510
17511
# File 'lib/aws-sdk-medialive/types.rb', line 17505

class UdpGroupSettings < Struct.new(
  :input_loss_action,
  :timed_metadata_id_3_frame,
  :timed_metadata_id_3_period)
  SENSITIVE = []
  include Aws::Structure
end

#timed_metadata_id_3_periodInteger

Timed Metadata interval in seconds.

Returns:

  • (Integer)


17505
17506
17507
17508
17509
17510
17511
# File 'lib/aws-sdk-medialive/types.rb', line 17505

class UdpGroupSettings < Struct.new(
  :input_loss_action,
  :timed_metadata_id_3_frame,
  :timed_metadata_id_3_period)
  SENSITIVE = []
  include Aws::Structure
end