Show / Hide Table of Contents

Class CfnFlowOutputPropsMixin.FlowTransitEncryptionKeyConfigurationProperty

Inheritance
object
CfnFlowOutputPropsMixin.FlowTransitEncryptionKeyConfigurationProperty
Implements
CfnFlowOutputPropsMixin.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.Mixins.Preview.AWS.MediaConnect.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnFlowOutputPropsMixin.FlowTransitEncryptionKeyConfigurationProperty : CfnFlowOutputPropsMixin.IFlowTransitEncryptionKeyConfigurationProperty
Syntax (vb)
Public Class CfnFlowOutputPropsMixin.FlowTransitEncryptionKeyConfigurationProperty Implements CfnFlowOutputPropsMixin.IFlowTransitEncryptionKeyConfigurationProperty
Remarks

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

             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 of a flow output 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-flowoutput-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.Mixins.Preview.AWS.MediaConnect.Mixins;

             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-flowoutput-flowtransitencryptionkeyconfiguration.html#cfn-mediaconnect-flowoutput-flowtransitencryptionkeyconfiguration-automatic

SecretsManager

The configuration settings for transit encryption of a flow output 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-flowoutput-flowtransitencryptionkeyconfiguration.html#cfn-mediaconnect-flowoutput-flowtransitencryptionkeyconfiguration-secretsmanager

Type union: either IResolvable or CfnFlowOutputPropsMixin.ISecretsManagerEncryptionKeyConfigurationProperty

Implements

CfnFlowOutputPropsMixin.IFlowTransitEncryptionKeyConfigurationProperty
Back to top Generated by DocFX