Class: Aws::MediaPackage::Types::MssPackage
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaPackage::Types::MssPackage
- Defined in:
- gems/aws-sdk-mediapackage/lib/aws-sdk-mediapackage/types.rb
Overview
Note:
When making an API call, you may pass MssPackage data as a hash:
{
encryption: {
speke_key_provider: { # required
certificate_arn: "__string",
encryption_contract_configuration: {
preset_speke_20_audio: "PRESET-AUDIO-1", # required, accepts PRESET-AUDIO-1
preset_speke_20_video: "PRESET-VIDEO-1", # required, accepts PRESET-VIDEO-1
},
resource_id: "__string", # required
role_arn: "__string", # required
system_ids: ["__string"], # required
url: "__string", # required
},
},
manifest_window_seconds: 1,
segment_duration_seconds: 1,
stream_selection: {
max_video_bits_per_second: 1,
min_video_bits_per_second: 1,
stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
},
}
A Microsoft Smooth Streaming (MSS) packaging configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#encryption ⇒ Types::MssEncryption
A Microsoft Smooth Streaming (MSS) encryption configuration.
-
#manifest_window_seconds ⇒ Integer
The time window (in seconds) contained in each manifest.
-
#segment_duration_seconds ⇒ Integer
The duration (in seconds) of each segment.
-
#stream_selection ⇒ Types::StreamSelection
A StreamSelection configuration.
Instance Attribute Details
#encryption ⇒ Types::MssEncryption
A Microsoft Smooth Streaming (MSS) encryption configuration.
2184 2185 2186 2187 2188 2189 2190 2191 |
# File 'gems/aws-sdk-mediapackage/lib/aws-sdk-mediapackage/types.rb', line 2184 class MssPackage < Struct.new( :encryption, :manifest_window_seconds, :segment_duration_seconds, :stream_selection) SENSITIVE = [] include Aws::Structure end |
#manifest_window_seconds ⇒ Integer
The time window (in seconds) contained in each manifest.
2184 2185 2186 2187 2188 2189 2190 2191 |
# File 'gems/aws-sdk-mediapackage/lib/aws-sdk-mediapackage/types.rb', line 2184 class MssPackage < Struct.new( :encryption, :manifest_window_seconds, :segment_duration_seconds, :stream_selection) SENSITIVE = [] include Aws::Structure end |
#segment_duration_seconds ⇒ Integer
The duration (in seconds) of each segment.
2184 2185 2186 2187 2188 2189 2190 2191 |
# File 'gems/aws-sdk-mediapackage/lib/aws-sdk-mediapackage/types.rb', line 2184 class MssPackage < Struct.new( :encryption, :manifest_window_seconds, :segment_duration_seconds, :stream_selection) SENSITIVE = [] include Aws::Structure end |
#stream_selection ⇒ Types::StreamSelection
A StreamSelection configuration.
2184 2185 2186 2187 2188 2189 2190 2191 |
# File 'gems/aws-sdk-mediapackage/lib/aws-sdk-mediapackage/types.rb', line 2184 class MssPackage < Struct.new( :encryption, :manifest_window_seconds, :segment_duration_seconds, :stream_selection) SENSITIVE = [] include Aws::Structure end |