Class: Aws::MediaLive::Types::DvbNitSettings

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

{
  network_id: 1, # required
  network_name: "__stringMin1Max256", # required
  rep_interval: 1,
}

DVB Network Information Table (NIT)

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#network_idInteger

The numeric value placed in the Network Information Table (NIT).

Returns:

  • (Integer)


5833
5834
5835
5836
5837
5838
5839
# File 'lib/aws-sdk-medialive/types.rb', line 5833

class DvbNitSettings < Struct.new(
  :network_id,
  :network_name,
  :rep_interval)
  SENSITIVE = []
  include Aws::Structure
end

#network_nameString

The network name text placed in the networkNameDescriptor inside the Network Information Table. Maximum length is 256 characters.

Returns:

  • (String)


5833
5834
5835
5836
5837
5838
5839
# File 'lib/aws-sdk-medialive/types.rb', line 5833

class DvbNitSettings < Struct.new(
  :network_id,
  :network_name,
  :rep_interval)
  SENSITIVE = []
  include Aws::Structure
end

#rep_intervalInteger

The number of milliseconds between instances of this table in the output transport stream.

Returns:

  • (Integer)


5833
5834
5835
5836
5837
5838
5839
# File 'lib/aws-sdk-medialive/types.rb', line 5833

class DvbNitSettings < Struct.new(
  :network_id,
  :network_name,
  :rep_interval)
  SENSITIVE = []
  include Aws::Structure
end