package awsmedialive // 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 "github.com/aws/aws-cdk-go/awscdk" // // staticKeySettingsProperty := &StaticKeySettingsProperty{ // KeyProviderServer: &InputLocationProperty{ // PasswordParam: jsii.String("passwordParam"), // Uri: jsii.String("uri"), // Username: jsii.String("username"), // }, // StaticKeyValue: jsii.String("staticKeyValue"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-statickeysettings.html // type CfnChannel_StaticKeySettingsProperty struct { // The URL of the license server that is used for protecting content. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-statickeysettings.html#cfn-medialive-channel-statickeysettings-keyproviderserver // KeyProviderServer interface{} `field:"optional" json:"keyProviderServer" yaml:"keyProviderServer"` // The static key value as a 32 character hexadecimal string. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-statickeysettings.html#cfn-medialive-channel-statickeysettings-statickeyvalue // StaticKeyValue *string `field:"optional" json:"staticKeyValue" yaml:"staticKeyValue"` }