interface MssEncryptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaPackage.CfnOriginEndpointPropsMixin.MssEncryptionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediapackage#CfnOriginEndpointPropsMixin_MssEncryptionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediapackage.CfnOriginEndpointPropsMixin.MssEncryptionProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediapackage.CfnOriginEndpointPropsMixin.MssEncryptionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediapackage » CfnOriginEndpointPropsMixin » MssEncryptionProperty |
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 { aws_mediapackage as mediapackage } from '@aws-cdk/cfn-property-mixins';
const mssEncryptionProperty: mediapackage.CfnOriginEndpointPropsMixin.MssEncryptionProperty = {
spekeKeyProvider: {
certificateArn: 'certificateArn',
encryptionContractConfiguration: {
presetSpeke20Audio: 'presetSpeke20Audio',
presetSpeke20Video: 'presetSpeke20Video',
},
resourceId: 'resourceId',
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