Show / Hide Table of Contents

Class CfnRouterNetworkInterfaceMixinProps

Properties for CfnRouterNetworkInterfacePropsMixin.

Inheritance
object
CfnRouterNetworkInterfaceMixinProps
Implements
ICfnRouterNetworkInterfaceMixinProps
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 CfnRouterNetworkInterfaceMixinProps : ICfnRouterNetworkInterfaceMixinProps
Syntax (vb)
Public Class CfnRouterNetworkInterfaceMixinProps Implements ICfnRouterNetworkInterfaceMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routernetworkinterface.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 cfnRouterNetworkInterfaceMixinProps = new CfnRouterNetworkInterfaceMixinProps {
                 Configuration = new RouterNetworkInterfaceConfigurationProperty {
                     Public = new PublicRouterNetworkInterfaceConfigurationProperty {
                         AllowRules = new [] { new PublicRouterNetworkInterfaceRuleProperty {
                             Cidr = "cidr"
                         } }
                     },
                     Vpc = new VpcRouterNetworkInterfaceConfigurationProperty {
                         SecurityGroupIds = new [] { "securityGroupIds" },
                         SubnetId = "subnetId"
                     }
                 },
                 Name = "name",
                 RegionName = "regionName",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnRouterNetworkInterfaceMixinProps()

Properties for CfnRouterNetworkInterfacePropsMixin.

Properties

Configuration

The configuration settings for a router network interface.

Name

The name of the router network interface.

RegionName

The AWS Region where the router network interface is located.

Tags

Key-value pairs that can be used to tag and organize this router network interface.

Constructors

CfnRouterNetworkInterfaceMixinProps()

Properties for CfnRouterNetworkInterfacePropsMixin.

public CfnRouterNetworkInterfaceMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routernetworkinterface.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 cfnRouterNetworkInterfaceMixinProps = new CfnRouterNetworkInterfaceMixinProps {
                 Configuration = new RouterNetworkInterfaceConfigurationProperty {
                     Public = new PublicRouterNetworkInterfaceConfigurationProperty {
                         AllowRules = new [] { new PublicRouterNetworkInterfaceRuleProperty {
                             Cidr = "cidr"
                         } }
                     },
                     Vpc = new VpcRouterNetworkInterfaceConfigurationProperty {
                         SecurityGroupIds = new [] { "securityGroupIds" },
                         SubnetId = "subnetId"
                     }
                 },
                 Name = "name",
                 RegionName = "regionName",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

Configuration

The configuration settings for a router network interface.

public object? Configuration { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routernetworkinterface.html#cfn-mediaconnect-routernetworkinterface-configuration

Type union: either IResolvable or CfnRouterNetworkInterfacePropsMixin.IRouterNetworkInterfaceConfigurationProperty

Name

The name of the router network interface.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routernetworkinterface.html#cfn-mediaconnect-routernetworkinterface-name

RegionName

The AWS Region where the router network interface is located.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routernetworkinterface.html#cfn-mediaconnect-routernetworkinterface-regionname

Tags

Key-value pairs that can be used to tag and organize this router network interface.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routernetworkinterface.html#cfn-mediaconnect-routernetworkinterface-tags

Implements

ICfnRouterNetworkInterfaceMixinProps
Back to top Generated by DocFX