Show / Hide Table of Contents

Class CfnChannel.StaticKeySettingsProperty

The static key settings.

Inheritance
System.Object
CfnChannel.StaticKeySettingsProperty
Implements
CfnChannel.IStaticKeySettingsProperty
Namespace: Amazon.CDK.AWS.MediaLive
Assembly: Amazon.CDK.AWS.MediaLive.dll
Syntax (csharp)
public class StaticKeySettingsProperty : Object, CfnChannel.IStaticKeySettingsProperty
Syntax (vb)
Public Class StaticKeySettingsProperty
    Inherits Object
    Implements CfnChannel.IStaticKeySettingsProperty
Remarks

The parent of this entity is KeyProviderSettings.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-statickeysettings.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.MediaLive;

var staticKeySettingsProperty = new StaticKeySettingsProperty {
    KeyProviderServer = new InputLocationProperty {
        PasswordParam = "passwordParam",
        Uri = "uri",
        Username = "username"
    },
    StaticKeyValue = "staticKeyValue"
};

Synopsis

Constructors

StaticKeySettingsProperty()

Properties

KeyProviderServer

The URL of the license server that is used for protecting content.

StaticKeyValue

The static key value as a 32 character hexadecimal string.

Constructors

StaticKeySettingsProperty()

public StaticKeySettingsProperty()

Properties

KeyProviderServer

The URL of the license server that is used for protecting content.

public object KeyProviderServer { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-statickeysettings.html#cfn-medialive-channel-statickeysettings-keyproviderserver

StaticKeyValue

The static key value as a 32 character hexadecimal string.

public string StaticKeyValue { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-statickeysettings.html#cfn-medialive-channel-statickeysettings-statickeyvalue

Implements

CfnChannel.IStaticKeySettingsProperty
Back to top Generated by DocFX