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

Class: Aws::MediaLive::Types::InputSpecification

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

Overview

Note:

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

{
  codec: "MPEG2", # accepts MPEG2, AVC, HEVC
  maximum_bitrate: "MAX_10_MBPS", # accepts MAX_10_MBPS, MAX_20_MBPS, MAX_50_MBPS
  resolution: "SD", # accepts SD, HD, UHD
}

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#codecString

Input codec

Possible values:

  • MPEG2
  • AVC
  • HEVC

Returns:

  • (String)

    Input codec.

#maximum_bitrateString

Maximum input bitrate, categorized coarsely

Possible values:

  • MAX_10_MBPS
  • MAX_20_MBPS
  • MAX_50_MBPS

Returns:

  • (String)

    Maximum input bitrate, categorized coarsely.

#resolutionString

Input resolution, categorized coarsely

Possible values:

  • SD
  • HD
  • UHD

Returns:

  • (String)

    Input resolution, categorized coarsely.