Show / Hide Table of Contents

Interface CfnRouterInput.IMediaLiveTransitEncryptionKeyConfigurationProperty

Namespace: Amazon.CDK.AWS.MediaConnect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnRouterInput.IMediaLiveTransitEncryptionKeyConfigurationProperty
Syntax (vb)
Public Interface CfnRouterInput.IMediaLiveTransitEncryptionKeyConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routerinput-medialivetransitencryptionkeyconfiguration.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.MediaConnect;

             var automatic;

             var mediaLiveTransitEncryptionKeyConfigurationProperty = new MediaLiveTransitEncryptionKeyConfigurationProperty {
                 Automatic = automatic,
                 SecretsManager = new SecretsManagerEncryptionKeyConfigurationProperty {
                     RoleArn = "roleArn",
                     SecretArn = "secretArn"
                 }
             };

Synopsis

Properties

Automatic

Configuration settings for automatic encryption key management, where MediaConnect handles key creation and rotation.

SecretsManager

The configuration settings for transit encryption using Secrets Manager, including the secret ARN and role ARN.

Properties

Automatic

Configuration settings for automatic encryption key management, where MediaConnect handles key creation and rotation.

object? Automatic { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routerinput-medialivetransitencryptionkeyconfiguration.html#cfn-mediaconnect-routerinput-medialivetransitencryptionkeyconfiguration-automatic

SecretsManager

The configuration settings for transit encryption using Secrets Manager, including the secret ARN and role ARN.

object? SecretsManager { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routerinput-medialivetransitencryptionkeyconfiguration.html#cfn-mediaconnect-routerinput-medialivetransitencryptionkeyconfiguration-secretsmanager

Type union: either IResolvable or CfnRouterInput.ISecretsManagerEncryptionKeyConfigurationProperty

Back to top Generated by DocFX