interface CmafEncryptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaPackage.Mixins.CfnPackagingConfigurationPropsMixin.CmafEncryptionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediapackage/mixins#CfnPackagingConfigurationPropsMixin_CmafEncryptionProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediapackage.mixins.CfnPackagingConfigurationPropsMixin.CmafEncryptionProperty |
Python | aws_cdk.mixins_preview.aws_mediapackage.mixins.CfnPackagingConfigurationPropsMixin.CmafEncryptionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediapackage » mixins » CfnPackagingConfigurationPropsMixin » CmafEncryptionProperty |
Holds encryption information so that access to the content can be controlled by a DRM solution.
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 cmafEncryptionProperty: mediapackage_mixins.CfnPackagingConfigurationPropsMixin.CmafEncryptionProperty = {
spekeKeyProvider: {
encryptionContractConfiguration: {
presetSpeke20Audio: 'presetSpeke20Audio',
presetSpeke20Video: 'presetSpeke20Video',
},
roleArn: 'roleArn',
systemIds: ['systemIds'],
url: 'url',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| speke | IResolvable | Speke | Parameters for the SPEKE key provider. |
spekeKeyProvider?
Type:
IResolvable | Speke
(optional)
Parameters for the SPEKE key provider.

.NET
Go
Java
Python
TypeScript