Class: Aws::MediaPackage::Types::StreamSelection
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaPackage::Types::StreamSelection
- Defined in:
- gems/aws-sdk-mediapackage/lib/aws-sdk-mediapackage/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
-
#max_video_bits_per_second ⇒ Integer
The maximum video bitrate (bps) to include in output.
-
#min_video_bits_per_second ⇒ Integer
The minimum video bitrate (bps) to include in output.
-
#stream_order ⇒ String
A directive that determines the order of streams in the output.
Instance Attribute Details
#max_video_bits_per_second ⇒ Integer
The maximum video bitrate (bps) to include in output.
2747 2748 2749 2750 2751 2752 2753 |
# File 'gems/aws-sdk-mediapackage/lib/aws-sdk-mediapackage/types.rb', line 2747 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_second ⇒ Integer
The minimum video bitrate (bps) to include in output.
2747 2748 2749 2750 2751 2752 2753 |
# File 'gems/aws-sdk-mediapackage/lib/aws-sdk-mediapackage/types.rb', line 2747 class StreamSelection < Struct.new( :max_video_bits_per_second, :min_video_bits_per_second, :stream_order) SENSITIVE = [] include Aws::Structure end |
#stream_order ⇒ String
A directive that determines the order of streams in the output.
2747 2748 2749 2750 2751 2752 2753 |
# File 'gems/aws-sdk-mediapackage/lib/aws-sdk-mediapackage/types.rb', line 2747 class StreamSelection < Struct.new( :max_video_bits_per_second, :min_video_bits_per_second, :stream_order) SENSITIVE = [] include Aws::Structure end |