Class: Aws::MediaPackageVod::Types::StreamSelection

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-mediapackagevod/types.rb

Overview

Note:

When making an API call, you may pass StreamSelection data as a hash:

{
  max_video_bits_per_second: 1,
  min_video_bits_per_second: 1,
  stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
}

A StreamSelection configuration.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_video_bits_per_secondInteger

The maximum video bitrate (bps) to include in output.

Returns:

  • (Integer)


1977
1978
1979
1980
1981
1982
1983
# File 'lib/aws-sdk-mediapackagevod/types.rb', line 1977

class StreamSelection < Struct.new(
  :max_video_bits_per_second,
  :min_video_bits_per_second,
  :stream_order)
  SENSITIVE = []
  include Aws::Structure
end

#min_video_bits_per_secondInteger

The minimum video bitrate (bps) to include in output.

Returns:

  • (Integer)


1977
1978
1979
1980
1981
1982
1983
# File 'lib/aws-sdk-mediapackagevod/types.rb', line 1977

class StreamSelection < Struct.new(
  :max_video_bits_per_second,
  :min_video_bits_per_second,
  :stream_order)
  SENSITIVE = []
  include Aws::Structure
end

#stream_orderString

A directive that determines the order of streams in the output.

Returns:

  • (String)


1977
1978
1979
1980
1981
1982
1983
# File 'lib/aws-sdk-mediapackagevod/types.rb', line 1977

class StreamSelection < Struct.new(
  :max_video_bits_per_second,
  :min_video_bits_per_second,
  :stream_order)
  SENSITIVE = []
  include Aws::Structure
end