Class: Aws::MediaPackageV2::Types::CreateMssManifestConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaPackageV2::Types::CreateMssManifestConfiguration
- Defined in:
- gems/aws-sdk-mediapackagev2/lib/aws-sdk-mediapackagev2/types.rb
Overview
Configuration parameters for creating a Microsoft Smooth Streaming (MSS) manifest. MSS is a streaming media format developed by Microsoft that delivers adaptive bitrate streaming content to compatible players and devices.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filter_configuration ⇒ Types::FilterConfiguration
Filter configuration includes settings for manifest filtering, start and end times, and time delay that apply to all of your egress requests for this manifest.
-
#manifest_layout ⇒ String
Determines the layout format of the MSS manifest.
-
#manifest_name ⇒ String
A short string that's appended to the endpoint URL to create a unique path to this MSS manifest.
-
#manifest_window_seconds ⇒ Integer
The total duration (in seconds) of the manifest window.
Instance Attribute Details
#filter_configuration ⇒ Types::FilterConfiguration
Filter configuration includes settings for manifest filtering, start and end times, and time delay that apply to all of your egress requests for this manifest.
954 955 956 957 958 959 960 961 |
# File 'gems/aws-sdk-mediapackagev2/lib/aws-sdk-mediapackagev2/types.rb', line 954 class CreateMssManifestConfiguration < Struct.new( :manifest_name, :manifest_window_seconds, :filter_configuration, :manifest_layout) SENSITIVE = [] include Aws::Structure end |
#manifest_layout ⇒ String
Determines the layout format of the MSS manifest. This controls how the manifest is structured and presented to client players, affecting compatibility with different MSS-compatible devices and applications.
954 955 956 957 958 959 960 961 |
# File 'gems/aws-sdk-mediapackagev2/lib/aws-sdk-mediapackagev2/types.rb', line 954 class CreateMssManifestConfiguration < Struct.new( :manifest_name, :manifest_window_seconds, :filter_configuration, :manifest_layout) SENSITIVE = [] include Aws::Structure end |
#manifest_name ⇒ String
A short string that's appended to the endpoint URL to create a unique path to this MSS manifest. The manifest name must be unique within the origin endpoint and can contain letters, numbers, hyphens, and underscores.
954 955 956 957 958 959 960 961 |
# File 'gems/aws-sdk-mediapackagev2/lib/aws-sdk-mediapackagev2/types.rb', line 954 class CreateMssManifestConfiguration < Struct.new( :manifest_name, :manifest_window_seconds, :filter_configuration, :manifest_layout) SENSITIVE = [] include Aws::Structure end |
#manifest_window_seconds ⇒ Integer
The total duration (in seconds) of the manifest window. This determines how much content is available in the manifest at any given time. The manifest window slides forward as new segments become available, maintaining a consistent duration of content. The minimum value is 30 seconds.
954 955 956 957 958 959 960 961 |
# File 'gems/aws-sdk-mediapackagev2/lib/aws-sdk-mediapackagev2/types.rb', line 954 class CreateMssManifestConfiguration < Struct.new( :manifest_name, :manifest_window_seconds, :filter_configuration, :manifest_layout) SENSITIVE = [] include Aws::Structure end |