interface EncryptionMethodProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaPackageV2.CfnOriginEndpoint.EncryptionMethodProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediapackagev2#CfnOriginEndpoint_EncryptionMethodProperty |
Java | software.amazon.awscdk.services.mediapackagev2.CfnOriginEndpoint.EncryptionMethodProperty |
Python | aws_cdk.aws_mediapackagev2.CfnOriginEndpoint.EncryptionMethodProperty |
TypeScript | aws-cdk-lib » aws_mediapackagev2 » CfnOriginEndpoint » EncryptionMethodProperty |
The encryption method associated with the origin endpoint.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediapackagev2 as mediapackagev2 } from 'aws-cdk-lib';
const encryptionMethodProperty: mediapackagev2.CfnOriginEndpoint.EncryptionMethodProperty = {
cmafEncryptionMethod: 'cmafEncryptionMethod',
ismEncryptionMethod: 'ismEncryptionMethod',
tsEncryptionMethod: 'tsEncryptionMethod',
};
Properties
| Name | Type | Description |
|---|---|---|
| cmaf | string | The encryption method to use. |
| ism | string | The encryption method used for Microsoft Smooth Streaming (MSS) content. |
| ts | string | The encryption method to use. |
cmafEncryptionMethod?
Type:
string
(optional)
The encryption method to use.
ismEncryptionMethod?
Type:
string
(optional)
The encryption method used for Microsoft Smooth Streaming (MSS) content.
This specifies how the MSS segments are encrypted to protect the content during delivery to client players.
tsEncryptionMethod?
Type:
string
(optional)
The encryption method to use.

.NET
Go
Java
Python
TypeScript