interface CmafEncryptionProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.MediaPackage.CfnPackagingConfiguration.CmafEncryptionProperty | 
  Java | software.amazon.awscdk.services.mediapackage.CfnPackagingConfiguration.CmafEncryptionProperty | 
  Python | aws_cdk.aws_mediapackage.CfnPackagingConfiguration.CmafEncryptionProperty | 
  TypeScript  | @aws-cdk/aws-mediapackage » CfnPackagingConfiguration » 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 * as mediapackage from '@aws-cdk/aws-mediapackage';
const cmafEncryptionProperty: mediapackage.CfnPackagingConfiguration.CmafEncryptionProperty = {
  spekeKeyProvider: {
    roleArn: 'roleArn',
    systemIds: ['systemIds'],
    url: 'url',
    // the properties below are optional
    encryptionContractConfiguration: { },
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| speke | IResolvable | Speke | Parameters for the SPEKE key provider. | 
spekeKeyProvider
Type:
IResolvable | Speke
Parameters for the SPEKE key provider.

 .NET
 Java
 Python
 TypeScript