interface KeyProviderSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnChannel.KeyProviderSettingsProperty |
Java | software.amazon.awscdk.services.medialive.CfnChannel.KeyProviderSettingsProperty |
Python | aws_cdk.aws_medialive.CfnChannel.KeyProviderSettingsProperty |
TypeScript | @aws-cdk/aws-medialive » CfnChannel » KeyProviderSettingsProperty |
The configuration of key provider settings.
The parent of this entity is HlsGroupSettings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive from '@aws-cdk/aws-medialive';
const keyProviderSettingsProperty: medialive.CfnChannel.KeyProviderSettingsProperty = {
staticKeySettings: {
keyProviderServer: {
passwordParam: 'passwordParam',
uri: 'uri',
username: 'username',
},
staticKeyValue: 'staticKeyValue',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| static | IResolvable | Static | The configuration of static key settings. |
staticKeySettings?
Type:
IResolvable | Static
(optional)
The configuration of static key settings.

.NET
Java
Python
TypeScript