class HlsKeyProviderSettings
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.HlsKeyProviderSettings |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#HlsKeyProviderSettings |
Java | software.amazon.awscdk.services.medialive.alpha.HlsKeyProviderSettings |
Python | aws_cdk.aws_medialive_alpha.HlsKeyProviderSettings |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป HlsKeyProviderSettings |
Key provider settings for HLS 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 hlsKeyProviderSettings = medialive_alpha.HlsKeyProviderSettings.staticKey({
keyProviderServerUrl: 'keyProviderServerUrl',
staticKeyValue: secretValue,
});
Methods
| Name | Description |
|---|---|
| static static | Use a static key for HLS encryption. |
static staticKey(props)
public static staticKey(props: HlsStaticKeyProps): HlsKeyProviderSettings
Parameters
- props
HlsStatic Key Props
Returns
Use a static key for HLS encryption.

.NET
Go
Java
Python
TypeScript (