interface MssPackageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaPackage.CfnPackagingConfiguration.MssPackageProperty |
Java | software.amazon.awscdk.services.mediapackage.CfnPackagingConfiguration.MssPackageProperty |
Python | aws_cdk.aws_mediapackage.CfnPackagingConfiguration.MssPackageProperty |
TypeScript | @aws-cdk/aws-mediapackage » CfnPackagingConfiguration » MssPackageProperty |
Parameters for a packaging configuration that uses Microsoft Smooth Streaming (MSS) packaging.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as mediapackage from '@aws-cdk/aws-mediapackage';
const mssPackageProperty: mediapackage.CfnPackagingConfiguration.MssPackageProperty = {
mssManifests: [{
manifestName: 'manifestName',
streamSelection: {
maxVideoBitsPerSecond: 123,
minVideoBitsPerSecond: 123,
streamOrder: 'streamOrder',
},
}],
// the properties below are optional
encryption: {
spekeKeyProvider: {
roleArn: 'roleArn',
systemIds: ['systemIds'],
url: 'url',
// the properties below are optional
encryptionContractConfiguration: { },
},
},
segmentDurationSeconds: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| mss | IResolvable | IResolvable | Mss[] | A list of Microsoft Smooth manifest configurations that are available from this endpoint. |
| encryption? | IResolvable | Mss | Parameters for encrypting content. |
| segment | number | Duration (in seconds) of each fragment. |
mssManifests
Type:
IResolvable | IResolvable | Mss[]
A list of Microsoft Smooth manifest configurations that are available from this endpoint.
encryption?
Type:
IResolvable | Mss
(optional)
Parameters for encrypting content.
segmentDurationSeconds?
Type:
number
(optional)
Duration (in seconds) of each fragment.
Actual fragments are rounded to the nearest multiple of the source fragment duration.

.NET
Java
Python
TypeScript