Class: Aws::MediaLive::Types::UpdateChannelClassRequest

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

{
  channel_class: "STANDARD", # required, accepts STANDARD, SINGLE_PIPELINE
  channel_id: "__string", # required
  destinations: [
    {
      id: "__string",
      media_package_settings: [
        {
          channel_id: "__stringMin1",
        },
      ],
      multiplex_settings: {
        multiplex_id: "__stringMin1",
        program_name: "__stringMin1",
      },
      settings: [
        {
          password_param: "__string",
          stream_name: "__string",
          url: "__string",
          username: "__string",
        },
      ],
    },
  ],
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#channel_classString

A standard channel has two encoding pipelines and a single pipeline channel only has one.

Returns:

  • (String)


17467
17468
17469
17470
17471
17472
17473
# File 'lib/aws-sdk-medialive/types.rb', line 17467

class UpdateChannelClassRequest < Struct.new(
  :channel_class,
  :channel_id,
  :destinations)
  SENSITIVE = []
  include Aws::Structure
end

#channel_idString

Returns:

  • (String)


17467
17468
17469
17470
17471
17472
17473
# File 'lib/aws-sdk-medialive/types.rb', line 17467

class UpdateChannelClassRequest < Struct.new(
  :channel_class,
  :channel_id,
  :destinations)
  SENSITIVE = []
  include Aws::Structure
end

#destinationsArray<Types::OutputDestination>

Returns:



17467
17468
17469
17470
17471
17472
17473
# File 'lib/aws-sdk-medialive/types.rb', line 17467

class UpdateChannelClassRequest < Struct.new(
  :channel_class,
  :channel_id,
  :destinations)
  SENSITIVE = []
  include Aws::Structure
end