interface StaticKeySettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnChannelPropsMixin.StaticKeySettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnChannelPropsMixin_StaticKeySettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnChannelPropsMixin.StaticKeySettingsProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnChannelPropsMixin.StaticKeySettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnChannelPropsMixin » StaticKeySettingsProperty |
The static key settings.
The parent of this entity is KeyProviderSettings.
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 staticKeySettingsProperty: medialive_mixins.CfnChannelPropsMixin.StaticKeySettingsProperty = {
keyProviderServer: {
passwordParam: 'passwordParam',
uri: 'uri',
username: 'username',
},
staticKeyValue: 'staticKeyValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| key | IResolvable | Input | The URL of the license server that is used for protecting content. |
| static | string | The static key value as a 32 character hexadecimal string. |
keyProviderServer?
Type:
IResolvable | Input
(optional)
The URL of the license server that is used for protecting content.
staticKeyValue?
Type:
string
(optional)
The static key value as a 32 character hexadecimal string.

.NET
Go
Java
Python
TypeScript