interface MssManifestConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaPackageV2.Mixins.CfnOriginEndpointPropsMixin.MssManifestConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediapackagev2/mixins#CfnOriginEndpointPropsMixin_MssManifestConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediapackagev2.mixins.CfnOriginEndpointPropsMixin.MssManifestConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_mediapackagev2.mixins.CfnOriginEndpointPropsMixin.MssManifestConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediapackagev2 » mixins » CfnOriginEndpointPropsMixin » 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 { mixins as mediapackagev2_mixins } from '@aws-cdk/mixins-preview/aws-mediapackagev2';
const mssManifestConfigurationProperty: mediapackagev2_mixins.CfnOriginEndpointPropsMixin.MssManifestConfigurationProperty = {
filterConfiguration: {
clipStartTime: 'clipStartTime',
end: 'end',
manifestFilter: 'manifestFilter',
start: 'start',
timeDelaySeconds: 123,
},
manifestLayout: 'manifestLayout',
manifestName: 'manifestName',
manifestWindowSeconds: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| 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 | string | The name of the MSS manifest. |
| manifest | number | The duration (in seconds) of the manifest window. |
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)
manifestName?
Type:
string
(optional)
<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.
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