interface MssManifestConfiguration
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaPackageV2.Alpha.MssManifestConfiguration |
Go | github.com/aws/aws-cdk-go/awsmediapackagev2alpha/v2#MssManifestConfiguration |
Java | software.amazon.awscdk.services.mediapackagev2.alpha.MssManifestConfiguration |
Python | aws_cdk.aws_mediapackagev2_alpha.MssManifestConfiguration |
TypeScript (source) | @aws-cdk/aws-mediapackagev2-alpha ยป MssManifestConfiguration |
The MSS manifest configuration associated with the origin endpoint.
Example
declare const channel: Channel;
new OriginEndpoint(this, 'Endpoint', {
channel,
segment: Segment.ism(),
manifests: [
Manifest.mss({
manifestName: 'index',
manifestWindow: Duration.seconds(60),
manifestLayout: MssManifestLayout.COMPACT,
}),
],
});
Properties
| Name | Type | Description |
|---|---|---|
| manifest | string | The name of the manifest associated with the MSS manifest configuration. |
| filter | 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 | Mss | The layout of the MSS manifest. |
| manifest | Duration | The total duration (in seconds) of the manifest's content. |
manifestName
Type:
string
The name of the manifest associated with the MSS manifest configuration.
filterConfiguration?
Type:
Filter
(optional, default: No filter configuration)
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:
Mss
(optional, default: MssManifestLayout.FULL)
The layout of the MSS manifest.
manifestWindow?
Type:
Duration
(optional, default: 60)
The total duration (in seconds) of the manifest's content.

.NET
Go
Java
Python
TypeScript (