interface MssPackageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaPackage.CfnPackagingConfigurationPropsMixin.MssPackageProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediapackage#CfnPackagingConfigurationPropsMixin_MssPackageProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediapackage.CfnPackagingConfigurationPropsMixin.MssPackageProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediapackage.CfnPackagingConfigurationPropsMixin.MssPackageProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediapackage » 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 { aws_mediapackage as mediapackage } from '@aws-cdk/cfn-property-mixins';
const mssPackageProperty: mediapackage.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