Show / Hide Table of Contents

Class CfnRouterOutput.FlowTransitEncryptionProperty

The configuration that defines how content is encrypted during transit between the MediaConnect router and a MediaConnect flow.

Inheritance
object
CfnRouterOutput.FlowTransitEncryptionProperty
Implements
CfnRouterOutput.IFlowTransitEncryptionProperty
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.FlowTransitEncryptionProperty : CfnRouterOutput.IFlowTransitEncryptionProperty
Syntax (vb)
Public Class CfnRouterOutput.FlowTransitEncryptionProperty Implements CfnRouterOutput.IFlowTransitEncryptionProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-flowtransitencryption.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 flowTransitEncryptionProperty = new FlowTransitEncryptionProperty {
                 EncryptionKeyConfiguration = new FlowTransitEncryptionKeyConfigurationProperty {
                     Automatic = automatic,
                     SecretsManager = new SecretsManagerEncryptionKeyConfigurationProperty {
                         RoleArn = "roleArn",
                         SecretArn = "secretArn"
                     }
                 },

                 // the properties below are optional
                 EncryptionKeyType = "encryptionKeyType"
             };

Synopsis

Constructors

FlowTransitEncryptionProperty()

The configuration that defines how content is encrypted during transit between the MediaConnect router and a MediaConnect flow.

Properties

EncryptionKeyConfiguration

Configuration settings for flow transit encryption keys.

EncryptionKeyType

The configuration that defines how content is encrypted during transit between the MediaConnect router and a MediaConnect flow.

Constructors

FlowTransitEncryptionProperty()

The configuration that defines how content is encrypted during transit between the MediaConnect router and a MediaConnect flow.

public FlowTransitEncryptionProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-flowtransitencryption.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 flowTransitEncryptionProperty = new FlowTransitEncryptionProperty {
                 EncryptionKeyConfiguration = new FlowTransitEncryptionKeyConfigurationProperty {
                     Automatic = automatic,
                     SecretsManager = new SecretsManagerEncryptionKeyConfigurationProperty {
                         RoleArn = "roleArn",
                         SecretArn = "secretArn"
                     }
                 },

                 // the properties below are optional
                 EncryptionKeyType = "encryptionKeyType"
             };

Properties

EncryptionKeyConfiguration

Configuration settings for flow transit encryption keys.

public object EncryptionKeyConfiguration { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-flowtransitencryption.html#cfn-mediaconnect-routeroutput-flowtransitencryption-encryptionkeyconfiguration

Type union: either IResolvable or CfnRouterOutput.IFlowTransitEncryptionKeyConfigurationProperty

EncryptionKeyType

The configuration that defines how content is encrypted during transit between the MediaConnect router and a MediaConnect flow.

public string? EncryptionKeyType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-flowtransitencryption.html#cfn-mediaconnect-routeroutput-flowtransitencryption-encryptionkeytype

Implements

CfnRouterOutput.IFlowTransitEncryptionProperty
Back to top Generated by DocFX