Show / Hide Table of Contents

Interface CfnRouterOutput.IFlowTransitEncryptionKeyConfigurationProperty

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-flowtransitencryptionkeyconfiguration.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 flowTransitEncryptionKeyConfigurationProperty = new FlowTransitEncryptionKeyConfigurationProperty {
                 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 AWS 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-routeroutput-flowtransitencryptionkeyconfiguration.html#cfn-mediaconnect-routeroutput-flowtransitencryptionkeyconfiguration-automatic

SecretsManager

The configuration settings for transit encryption using AWS 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-routeroutput-flowtransitencryptionkeyconfiguration.html#cfn-mediaconnect-routeroutput-flowtransitencryptionkeyconfiguration-secretsmanager

Type union: either IResolvable or CfnRouterOutput.ISecretsManagerEncryptionKeyConfigurationProperty

Back to top Generated by DocFX