interface KeyProviderSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnChannelPropsMixin.KeyProviderSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnChannelPropsMixin_KeyProviderSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnChannelPropsMixin.KeyProviderSettingsProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnChannelPropsMixin.KeyProviderSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnChannelPropsMixin » 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 { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const keyProviderSettingsProperty: medialive_mixins.CfnChannelPropsMixin.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
Go
Java
Python
TypeScript