interface HlsStaticKeyProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.HlsStaticKeyProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#HlsStaticKeyProps |
Java | software.amazon.awscdk.services.medialive.alpha.HlsStaticKeyProps |
Python | aws_cdk.aws_medialive_alpha.HlsStaticKeyProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป HlsStaticKeyProps |
Properties for HLS static key encryption.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
import * as cdk from 'aws-cdk-lib';
declare const secretValue: cdk.SecretValue;
const hlsStaticKeyProps: medialive_alpha.HlsStaticKeyProps = {
keyProviderServerUrl: 'keyProviderServerUrl',
staticKeyValue: secretValue,
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | The URL of the license server that serves the static key. |
| static | Secret | The static key value as a 32-character hexadecimal string. |
keyProviderServerUrl
Type:
string
The URL of the license server that serves the static key.
Required โ MediaLive rejects this without a server URL, even though the underlying CloudFormation property is typed as optional.
staticKeyValue
Type:
Secret
The static key value as a 32-character hexadecimal string.

.NET
Go
Java
Python
TypeScript (