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

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 InputSpecification data as a 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
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#codecString

Input codec

Returns:

  • (String)


10981
10982
10983
10984
10985
10986
10987
# File 'lib/aws-sdk-medialive/types.rb', line 10981

class InputSpecification < Struct.new(
  :codec,
  :maximum_bitrate,
  :resolution)
  SENSITIVE = []
  include Aws::Structure
end

#maximum_bitrateString

Maximum input bitrate, categorized coarsely

Returns:

  • (String)


10981
10982
10983
10984
10985
10986
10987
# File 'lib/aws-sdk-medialive/types.rb', line 10981

class InputSpecification < Struct.new(
  :codec,
  :maximum_bitrate,
  :resolution)
  SENSITIVE = []
  include Aws::Structure
end

#resolutionString

Input resolution, categorized coarsely

Returns:

  • (String)


10981
10982
10983
10984
10985
10986
10987
# File 'lib/aws-sdk-medialive/types.rb', line 10981

class InputSpecification < Struct.new(
  :codec,
  :maximum_bitrate,
  :resolution)
  SENSITIVE = []
  include Aws::Structure
end