Show / Hide Table of Contents

Class CfnRouterOutputPropsMixin

Represents a router input in AWS Elemental MediaConnect that can be used to egress content transmitted from router inputs.

Inheritance
object
Mixin
CfnRouterOutputPropsMixin
Implements
IMixin
Inherited Members
Mixin.IsMixin(object)
Namespace: Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnRouterOutputPropsMixin : Mixin, IMixin
Syntax (vb)
Public Class CfnRouterOutputPropsMixin Inherits Mixin Implements IMixin
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routeroutput.html

CloudformationResource: AWS::MediaConnect::RouterOutput

Mixin: true

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.Mixins;
             using Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins;

             var automatic;
             var default_;

             var cfnRouterOutputPropsMixin = new CfnRouterOutputPropsMixin(new CfnRouterOutputMixinProps {
                 AvailabilityZone = "availabilityZone",
                 Configuration = new RouterOutputConfigurationProperty {
                     MediaConnectFlow = new MediaConnectFlowRouterOutputConfigurationProperty {
                         DestinationTransitEncryption = new FlowTransitEncryptionProperty {
                             EncryptionKeyConfiguration = new FlowTransitEncryptionKeyConfigurationProperty {
                                 Automatic = automatic,
                                 SecretsManager = new SecretsManagerEncryptionKeyConfigurationProperty {
                                     RoleArn = "roleArn",
                                     SecretArn = "secretArn"
                                 }
                             },
                             EncryptionKeyType = "encryptionKeyType"
                         },
                         FlowArn = "flowArn",
                         FlowSourceArn = "flowSourceArn"
                     },
                     MediaLiveInput = new MediaLiveInputRouterOutputConfigurationProperty {
                         DestinationTransitEncryption = new MediaLiveTransitEncryptionProperty {
                             EncryptionKeyConfiguration = new MediaLiveTransitEncryptionKeyConfigurationProperty {
                                 Automatic = automatic,
                                 SecretsManager = new SecretsManagerEncryptionKeyConfigurationProperty {
                                     RoleArn = "roleArn",
                                     SecretArn = "secretArn"
                                 }
                             },
                             EncryptionKeyType = "encryptionKeyType"
                         },
                         MediaLiveInputArn = "mediaLiveInputArn",
                         MediaLivePipelineId = "mediaLivePipelineId"
                     },
                     Standard = new StandardRouterOutputConfigurationProperty {
                         NetworkInterfaceArn = "networkInterfaceArn",
                         Protocol = "protocol",
                         ProtocolConfiguration = new RouterOutputProtocolConfigurationProperty {
                             Rist = new RistRouterOutputConfigurationProperty {
                                 DestinationAddress = "destinationAddress",
                                 DestinationPort = 123
                             },
                             Rtp = new RtpRouterOutputConfigurationProperty {
                                 DestinationAddress = "destinationAddress",
                                 DestinationPort = 123,
                                 ForwardErrorCorrection = "forwardErrorCorrection"
                             },
                             SrtCaller = new SrtCallerRouterOutputConfigurationProperty {
                                 DestinationAddress = "destinationAddress",
                                 DestinationPort = 123,
                                 EncryptionConfiguration = new SrtEncryptionConfigurationProperty {
                                     EncryptionKey = new SecretsManagerEncryptionKeyConfigurationProperty {
                                         RoleArn = "roleArn",
                                         SecretArn = "secretArn"
                                     }
                                 },
                                 MinimumLatencyMilliseconds = 123,
                                 StreamId = "streamId"
                             },
                             SrtListener = new SrtListenerRouterOutputConfigurationProperty {
                                 EncryptionConfiguration = new SrtEncryptionConfigurationProperty {
                                     EncryptionKey = new SecretsManagerEncryptionKeyConfigurationProperty {
                                         RoleArn = "roleArn",
                                         SecretArn = "secretArn"
                                     }
                                 },
                                 MinimumLatencyMilliseconds = 123,
                                 Port = 123
                             }
                         }
                     }
                 },
                 MaintenanceConfiguration = new MaintenanceConfigurationProperty {
                     Default = default_,
                     PreferredDayTime = new PreferredDayTimeMaintenanceConfigurationProperty {
                         Day = "day",
                         Time = "time"
                     }
                 },
                 MaximumBitrate = 123,
                 Name = "name",
                 RegionName = "regionName",
                 RoutingScope = "routingScope",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 Tier = "tier"
             }, new CfnPropertyMixinOptions {
                 Strategy = PropertyMergeStrategy.OVERRIDE
             });

Synopsis

Constructors

CfnRouterOutputPropsMixin(ICfnRouterOutputMixinProps, ICfnPropertyMixinOptions?)

Create a mixin to apply properties to AWS::MediaConnect::RouterOutput.

Properties

CFN_PROPERTY_KEYS

Represents a router input in AWS Elemental MediaConnect that can be used to egress content transmitted from router inputs.

Props

Represents a router input in AWS Elemental MediaConnect that can be used to egress content transmitted from router inputs.

Strategy

Represents a router input in AWS Elemental MediaConnect that can be used to egress content transmitted from router inputs.

Methods

ApplyTo(IConstruct)

Apply the mixin properties to the construct.

Supports(IConstruct)

Check if this mixin supports the given construct.

Constructors

CfnRouterOutputPropsMixin(ICfnRouterOutputMixinProps, ICfnPropertyMixinOptions?)

Create a mixin to apply properties to AWS::MediaConnect::RouterOutput.

public CfnRouterOutputPropsMixin(ICfnRouterOutputMixinProps props, ICfnPropertyMixinOptions? options = null)
Parameters
props ICfnRouterOutputMixinProps

L1 properties to apply.

options ICfnPropertyMixinOptions

Mixin options.

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routeroutput.html

CloudformationResource: AWS::MediaConnect::RouterOutput

Mixin: true

ExampleMetadata: fixture=_generated

Properties

CFN_PROPERTY_KEYS

Represents a router input in AWS Elemental MediaConnect that can be used to egress content transmitted from router inputs.

protected static string[] CFN_PROPERTY_KEYS { get; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routeroutput.html

CloudformationResource: AWS::MediaConnect::RouterOutput

Mixin: true

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.Mixins;
             using Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins;

             var automatic;
             var default_;

             var cfnRouterOutputPropsMixin = new CfnRouterOutputPropsMixin(new CfnRouterOutputMixinProps {
                 AvailabilityZone = "availabilityZone",
                 Configuration = new RouterOutputConfigurationProperty {
                     MediaConnectFlow = new MediaConnectFlowRouterOutputConfigurationProperty {
                         DestinationTransitEncryption = new FlowTransitEncryptionProperty {
                             EncryptionKeyConfiguration = new FlowTransitEncryptionKeyConfigurationProperty {
                                 Automatic = automatic,
                                 SecretsManager = new SecretsManagerEncryptionKeyConfigurationProperty {
                                     RoleArn = "roleArn",
                                     SecretArn = "secretArn"
                                 }
                             },
                             EncryptionKeyType = "encryptionKeyType"
                         },
                         FlowArn = "flowArn",
                         FlowSourceArn = "flowSourceArn"
                     },
                     MediaLiveInput = new MediaLiveInputRouterOutputConfigurationProperty {
                         DestinationTransitEncryption = new MediaLiveTransitEncryptionProperty {
                             EncryptionKeyConfiguration = new MediaLiveTransitEncryptionKeyConfigurationProperty {
                                 Automatic = automatic,
                                 SecretsManager = new SecretsManagerEncryptionKeyConfigurationProperty {
                                     RoleArn = "roleArn",
                                     SecretArn = "secretArn"
                                 }
                             },
                             EncryptionKeyType = "encryptionKeyType"
                         },
                         MediaLiveInputArn = "mediaLiveInputArn",
                         MediaLivePipelineId = "mediaLivePipelineId"
                     },
                     Standard = new StandardRouterOutputConfigurationProperty {
                         NetworkInterfaceArn = "networkInterfaceArn",
                         Protocol = "protocol",
                         ProtocolConfiguration = new RouterOutputProtocolConfigurationProperty {
                             Rist = new RistRouterOutputConfigurationProperty {
                                 DestinationAddress = "destinationAddress",
                                 DestinationPort = 123
                             },
                             Rtp = new RtpRouterOutputConfigurationProperty {
                                 DestinationAddress = "destinationAddress",
                                 DestinationPort = 123,
                                 ForwardErrorCorrection = "forwardErrorCorrection"
                             },
                             SrtCaller = new SrtCallerRouterOutputConfigurationProperty {
                                 DestinationAddress = "destinationAddress",
                                 DestinationPort = 123,
                                 EncryptionConfiguration = new SrtEncryptionConfigurationProperty {
                                     EncryptionKey = new SecretsManagerEncryptionKeyConfigurationProperty {
                                         RoleArn = "roleArn",
                                         SecretArn = "secretArn"
                                     }
                                 },
                                 MinimumLatencyMilliseconds = 123,
                                 StreamId = "streamId"
                             },
                             SrtListener = new SrtListenerRouterOutputConfigurationProperty {
                                 EncryptionConfiguration = new SrtEncryptionConfigurationProperty {
                                     EncryptionKey = new SecretsManagerEncryptionKeyConfigurationProperty {
                                         RoleArn = "roleArn",
                                         SecretArn = "secretArn"
                                     }
                                 },
                                 MinimumLatencyMilliseconds = 123,
                                 Port = 123
                             }
                         }
                     }
                 },
                 MaintenanceConfiguration = new MaintenanceConfigurationProperty {
                     Default = default_,
                     PreferredDayTime = new PreferredDayTimeMaintenanceConfigurationProperty {
                         Day = "day",
                         Time = "time"
                     }
                 },
                 MaximumBitrate = 123,
                 Name = "name",
                 RegionName = "regionName",
                 RoutingScope = "routingScope",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 Tier = "tier"
             }, new CfnPropertyMixinOptions {
                 Strategy = PropertyMergeStrategy.OVERRIDE
             });

Props

Represents a router input in AWS Elemental MediaConnect that can be used to egress content transmitted from router inputs.

protected virtual ICfnRouterOutputMixinProps Props { get; }
Property Value

ICfnRouterOutputMixinProps

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routeroutput.html

CloudformationResource: AWS::MediaConnect::RouterOutput

Mixin: true

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.Mixins;
             using Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins;

             var automatic;
             var default_;

             var cfnRouterOutputPropsMixin = new CfnRouterOutputPropsMixin(new CfnRouterOutputMixinProps {
                 AvailabilityZone = "availabilityZone",
                 Configuration = new RouterOutputConfigurationProperty {
                     MediaConnectFlow = new MediaConnectFlowRouterOutputConfigurationProperty {
                         DestinationTransitEncryption = new FlowTransitEncryptionProperty {
                             EncryptionKeyConfiguration = new FlowTransitEncryptionKeyConfigurationProperty {
                                 Automatic = automatic,
                                 SecretsManager = new SecretsManagerEncryptionKeyConfigurationProperty {
                                     RoleArn = "roleArn",
                                     SecretArn = "secretArn"
                                 }
                             },
                             EncryptionKeyType = "encryptionKeyType"
                         },
                         FlowArn = "flowArn",
                         FlowSourceArn = "flowSourceArn"
                     },
                     MediaLiveInput = new MediaLiveInputRouterOutputConfigurationProperty {
                         DestinationTransitEncryption = new MediaLiveTransitEncryptionProperty {
                             EncryptionKeyConfiguration = new MediaLiveTransitEncryptionKeyConfigurationProperty {
                                 Automatic = automatic,
                                 SecretsManager = new SecretsManagerEncryptionKeyConfigurationProperty {
                                     RoleArn = "roleArn",
                                     SecretArn = "secretArn"
                                 }
                             },
                             EncryptionKeyType = "encryptionKeyType"
                         },
                         MediaLiveInputArn = "mediaLiveInputArn",
                         MediaLivePipelineId = "mediaLivePipelineId"
                     },
                     Standard = new StandardRouterOutputConfigurationProperty {
                         NetworkInterfaceArn = "networkInterfaceArn",
                         Protocol = "protocol",
                         ProtocolConfiguration = new RouterOutputProtocolConfigurationProperty {
                             Rist = new RistRouterOutputConfigurationProperty {
                                 DestinationAddress = "destinationAddress",
                                 DestinationPort = 123
                             },
                             Rtp = new RtpRouterOutputConfigurationProperty {
                                 DestinationAddress = "destinationAddress",
                                 DestinationPort = 123,
                                 ForwardErrorCorrection = "forwardErrorCorrection"
                             },
                             SrtCaller = new SrtCallerRouterOutputConfigurationProperty {
                                 DestinationAddress = "destinationAddress",
                                 DestinationPort = 123,
                                 EncryptionConfiguration = new SrtEncryptionConfigurationProperty {
                                     EncryptionKey = new SecretsManagerEncryptionKeyConfigurationProperty {
                                         RoleArn = "roleArn",
                                         SecretArn = "secretArn"
                                     }
                                 },
                                 MinimumLatencyMilliseconds = 123,
                                 StreamId = "streamId"
                             },
                             SrtListener = new SrtListenerRouterOutputConfigurationProperty {
                                 EncryptionConfiguration = new SrtEncryptionConfigurationProperty {
                                     EncryptionKey = new SecretsManagerEncryptionKeyConfigurationProperty {
                                         RoleArn = "roleArn",
                                         SecretArn = "secretArn"
                                     }
                                 },
                                 MinimumLatencyMilliseconds = 123,
                                 Port = 123
                             }
                         }
                     }
                 },
                 MaintenanceConfiguration = new MaintenanceConfigurationProperty {
                     Default = default_,
                     PreferredDayTime = new PreferredDayTimeMaintenanceConfigurationProperty {
                         Day = "day",
                         Time = "time"
                     }
                 },
                 MaximumBitrate = 123,
                 Name = "name",
                 RegionName = "regionName",
                 RoutingScope = "routingScope",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 Tier = "tier"
             }, new CfnPropertyMixinOptions {
                 Strategy = PropertyMergeStrategy.OVERRIDE
             });

Strategy

Represents a router input in AWS Elemental MediaConnect that can be used to egress content transmitted from router inputs.

protected virtual PropertyMergeStrategy Strategy { get; }
Property Value

PropertyMergeStrategy

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routeroutput.html

CloudformationResource: AWS::MediaConnect::RouterOutput

Mixin: true

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.Mixins;
             using Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins;

             var automatic;
             var default_;

             var cfnRouterOutputPropsMixin = new CfnRouterOutputPropsMixin(new CfnRouterOutputMixinProps {
                 AvailabilityZone = "availabilityZone",
                 Configuration = new RouterOutputConfigurationProperty {
                     MediaConnectFlow = new MediaConnectFlowRouterOutputConfigurationProperty {
                         DestinationTransitEncryption = new FlowTransitEncryptionProperty {
                             EncryptionKeyConfiguration = new FlowTransitEncryptionKeyConfigurationProperty {
                                 Automatic = automatic,
                                 SecretsManager = new SecretsManagerEncryptionKeyConfigurationProperty {
                                     RoleArn = "roleArn",
                                     SecretArn = "secretArn"
                                 }
                             },
                             EncryptionKeyType = "encryptionKeyType"
                         },
                         FlowArn = "flowArn",
                         FlowSourceArn = "flowSourceArn"
                     },
                     MediaLiveInput = new MediaLiveInputRouterOutputConfigurationProperty {
                         DestinationTransitEncryption = new MediaLiveTransitEncryptionProperty {
                             EncryptionKeyConfiguration = new MediaLiveTransitEncryptionKeyConfigurationProperty {
                                 Automatic = automatic,
                                 SecretsManager = new SecretsManagerEncryptionKeyConfigurationProperty {
                                     RoleArn = "roleArn",
                                     SecretArn = "secretArn"
                                 }
                             },
                             EncryptionKeyType = "encryptionKeyType"
                         },
                         MediaLiveInputArn = "mediaLiveInputArn",
                         MediaLivePipelineId = "mediaLivePipelineId"
                     },
                     Standard = new StandardRouterOutputConfigurationProperty {
                         NetworkInterfaceArn = "networkInterfaceArn",
                         Protocol = "protocol",
                         ProtocolConfiguration = new RouterOutputProtocolConfigurationProperty {
                             Rist = new RistRouterOutputConfigurationProperty {
                                 DestinationAddress = "destinationAddress",
                                 DestinationPort = 123
                             },
                             Rtp = new RtpRouterOutputConfigurationProperty {
                                 DestinationAddress = "destinationAddress",
                                 DestinationPort = 123,
                                 ForwardErrorCorrection = "forwardErrorCorrection"
                             },
                             SrtCaller = new SrtCallerRouterOutputConfigurationProperty {
                                 DestinationAddress = "destinationAddress",
                                 DestinationPort = 123,
                                 EncryptionConfiguration = new SrtEncryptionConfigurationProperty {
                                     EncryptionKey = new SecretsManagerEncryptionKeyConfigurationProperty {
                                         RoleArn = "roleArn",
                                         SecretArn = "secretArn"
                                     }
                                 },
                                 MinimumLatencyMilliseconds = 123,
                                 StreamId = "streamId"
                             },
                             SrtListener = new SrtListenerRouterOutputConfigurationProperty {
                                 EncryptionConfiguration = new SrtEncryptionConfigurationProperty {
                                     EncryptionKey = new SecretsManagerEncryptionKeyConfigurationProperty {
                                         RoleArn = "roleArn",
                                         SecretArn = "secretArn"
                                     }
                                 },
                                 MinimumLatencyMilliseconds = 123,
                                 Port = 123
                             }
                         }
                     }
                 },
                 MaintenanceConfiguration = new MaintenanceConfigurationProperty {
                     Default = default_,
                     PreferredDayTime = new PreferredDayTimeMaintenanceConfigurationProperty {
                         Day = "day",
                         Time = "time"
                     }
                 },
                 MaximumBitrate = 123,
                 Name = "name",
                 RegionName = "regionName",
                 RoutingScope = "routingScope",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 Tier = "tier"
             }, new CfnPropertyMixinOptions {
                 Strategy = PropertyMergeStrategy.OVERRIDE
             });

Methods

ApplyTo(IConstruct)

Apply the mixin properties to the construct.

public override IConstruct ApplyTo(IConstruct construct)
Parameters
construct IConstruct
Returns

IConstruct

Overrides
Mixin.ApplyTo(IConstruct)
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routeroutput.html

CloudformationResource: AWS::MediaConnect::RouterOutput

Mixin: true

ExampleMetadata: fixture=_generated

Supports(IConstruct)

Check if this mixin supports the given construct.

public override bool Supports(IConstruct construct)
Parameters
construct IConstruct
Returns

bool

Overrides
Mixin.Supports(IConstruct)
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routeroutput.html

CloudformationResource: AWS::MediaConnect::RouterOutput

Mixin: true

ExampleMetadata: fixture=_generated

Implements

IMixin
Back to top Generated by DocFX