interface MssPackageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaPackage.Mixins.CfnPackagingConfigurationPropsMixin.MssPackageProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediapackage/mixins#CfnPackagingConfigurationPropsMixin_MssPackageProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediapackage.mixins.CfnPackagingConfigurationPropsMixin.MssPackageProperty |
Python | aws_cdk.mixins_preview.aws_mediapackage.mixins.CfnPackagingConfigurationPropsMixin.MssPackageProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediapackage » mixins » CfnPackagingConfigurationPropsMixin » 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 { mixins as mediapackage_mixins } from '@aws-cdk/mixins-preview/aws-mediapackage';
const mssPackageProperty: mediapackage_mixins.CfnPackagingConfigurationPropsMixin.MssPackageProperty = {
encryption: {
spekeKeyProvider: {
encryptionContractConfiguration: {
presetSpeke20Audio: 'presetSpeke20Audio',
presetSpeke20Video: 'presetSpeke20Video',
},
roleArn: 'roleArn',
systemIds: ['systemIds'],
url: 'url',
},
},
mssManifests: [{
manifestName: 'manifestName',
streamSelection: {
maxVideoBitsPerSecond: 123,
minVideoBitsPerSecond: 123,
streamOrder: 'streamOrder',
},
}],
segmentDurationSeconds: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption? | IResolvable | Mss | Parameters for encrypting content. |
| mss | IResolvable | (IResolvable | Mss)[] | A list of Microsoft Smooth manifest configurations that are available from this endpoint. |
| segment | number | Duration (in seconds) of each fragment. |
encryption?
Type:
IResolvable | Mss
(optional)
Parameters for encrypting content.
mssManifests?
Type:
IResolvable | (IResolvable | Mss)[]
(optional)
A list of Microsoft Smooth manifest configurations that are available from this endpoint.
segmentDurationSeconds?
Type:
number
(optional)
Duration (in seconds) of each fragment.
Actual fragments are rounded to the nearest multiple of the source fragment duration.

.NET
Go
Java
Python
TypeScript