Show / Hide Table of Contents

Class CfnRouterOutput.FlowTransitEncryptionKeyConfigurationProperty

Inheritance
object
CfnRouterOutput.FlowTransitEncryptionKeyConfigurationProperty
Implements
CfnRouterOutput.IFlowTransitEncryptionKeyConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.MediaConnect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnRouterOutput.FlowTransitEncryptionKeyConfigurationProperty : CfnRouterOutput.IFlowTransitEncryptionKeyConfigurationProperty
Syntax (vb)
Public Class CfnRouterOutput.FlowTransitEncryptionKeyConfigurationProperty Implements 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

Constructors

FlowTransitEncryptionKeyConfigurationProperty()

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.

Constructors

FlowTransitEncryptionKeyConfigurationProperty()

public FlowTransitEncryptionKeyConfigurationProperty()
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"
                 }
             };

Properties

Automatic

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

public object? Automatic { get; set; }
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.

public object? SecretsManager { get; set; }
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

Implements

CfnRouterOutput.IFlowTransitEncryptionKeyConfigurationProperty
Back to top Generated by DocFX