Show / Hide Table of Contents

Class CfnFlowPropsMixin.FlowTransitEncryptionProperty

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

Inheritance
object
CfnFlowPropsMixin.FlowTransitEncryptionProperty
Implements
CfnFlowPropsMixin.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.CfnPropertyMixins.AWS.MediaConnect
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnFlowPropsMixin.FlowTransitEncryptionProperty : CfnFlowPropsMixin.IFlowTransitEncryptionProperty
Syntax (vb)
Public Class CfnFlowPropsMixin.FlowTransitEncryptionProperty Implements CfnFlowPropsMixin.IFlowTransitEncryptionProperty
Remarks

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

             var automatic;

             var flowTransitEncryptionProperty = new FlowTransitEncryptionProperty {
                 EncryptionKeyConfiguration = new FlowTransitEncryptionKeyConfigurationProperty {
                     Automatic = automatic,
                     SecretsManager = new SecretsManagerEncryptionKeyConfigurationProperty {
                         RoleArn = "roleArn",
                         SecretArn = "secretArn"
                     }
                 },
                 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-flow-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.CfnPropertyMixins.AWS.MediaConnect;

             var automatic;

             var flowTransitEncryptionProperty = new FlowTransitEncryptionProperty {
                 EncryptionKeyConfiguration = new FlowTransitEncryptionKeyConfigurationProperty {
                     Automatic = automatic,
                     SecretsManager = new SecretsManagerEncryptionKeyConfigurationProperty {
                         RoleArn = "roleArn",
                         SecretArn = "secretArn"
                     }
                 },
                 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-flow-flowtransitencryption.html#cfn-mediaconnect-flow-flowtransitencryption-encryptionkeyconfiguration

Type union: either IResolvable or CfnFlowPropsMixin.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-flow-flowtransitencryption.html#cfn-mediaconnect-flow-flowtransitencryption-encryptionkeytype

Implements

CfnFlowPropsMixin.IFlowTransitEncryptionProperty
Back to top Generated by DocFX