interface MssManifestConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_mediapackagev2.CfnOriginEndpoint.MssManifestConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediapackagev2#CfnOriginEndpoint_MssManifestConfigurationProperty |
Java | software.amazon.awscdk.services.mediapackagev2.CfnOriginEndpoint.MssManifestConfigurationProperty |
Python | aws_cdk.aws_mediapackagev2.CfnOriginEndpoint.MssManifestConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediapackagev2 » CfnOriginEndpoint » MssManifestConfigurationProperty |
<p>Configuration details for a Microsoft Smooth Streaming (MSS) manifest associated with an origin endpoint.
This includes all the settings and properties that define how the MSS content is packaged and delivered.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediapackagev2 as mediapackagev2 } from 'aws-cdk-lib';
const mssManifestConfigurationProperty: mediapackagev2.CfnOriginEndpoint.MssManifestConfigurationProperty = {
manifestName: 'manifestName',
// the properties below are optional
filterConfiguration: {
clipStartTime: 'clipStartTime',
end: 'end',
manifestFilter: 'manifestFilter',
start: 'start',
timeDelaySeconds: 123,
},
manifestLayout: 'manifestLayout',
manifestWindowSeconds: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| manifest | string | The name of the MSS manifest. |
| filter | IResolvable | Filter | 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 | string | |
| manifest | number | The duration (in seconds) of the manifest window. |
manifestName
Type:
string
<p>The name of the MSS manifest.
This name is appended to the origin endpoint URL to create the unique path for accessing this specific MSS manifest.
filterConfiguration?
Type:
IResolvable | Filter
(optional)
<p>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.
manifestLayout?
Type:
string
(optional)
manifestWindowSeconds?
Type:
number
(optional)
<p>The duration (in seconds) of the manifest window.
This represents the total amount of content available in the manifest at any given time.

.NET
Go
Java
Python
TypeScript