Show / Hide Table of Contents

Interface CfnRouterNetworkInterfacePropsMixin.IRouterNetworkInterfaceConfigurationProperty

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.MediaConnect
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnRouterNetworkInterfacePropsMixin.IRouterNetworkInterfaceConfigurationProperty
Syntax (vb)
Public Interface CfnRouterNetworkInterfacePropsMixin.IRouterNetworkInterfaceConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routernetworkinterface-routernetworkinterfaceconfiguration.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 routerNetworkInterfaceConfigurationProperty = new RouterNetworkInterfaceConfigurationProperty {
                 Public = new PublicRouterNetworkInterfaceConfigurationProperty {
                     AllowRules = new [] { new PublicRouterNetworkInterfaceRuleProperty {
                         Cidr = "cidr"
                     } }
                 },
                 Vpc = new VpcRouterNetworkInterfaceConfigurationProperty {
                     SecurityGroupIds = new [] { "securityGroupIds" },
                     SubnetId = "subnetId"
                 }
             };

Synopsis

Properties

Public

The configuration settings for a public router network interface, including the list of allowed CIDR blocks.

Vpc

The configuration settings for a router network interface within a VPC, including the security group IDs and subnet ID.

Properties

Public

The configuration settings for a public router network interface, including the list of allowed CIDR blocks.

object? Public { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routernetworkinterface-routernetworkinterfaceconfiguration.html#cfn-mediaconnect-routernetworkinterface-routernetworkinterfaceconfiguration-public

Type union: either IResolvable or CfnRouterNetworkInterfacePropsMixin.IPublicRouterNetworkInterfaceConfigurationProperty

Vpc

The configuration settings for a router network interface within a VPC, including the security group IDs and subnet ID.

object? Vpc { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routernetworkinterface-routernetworkinterfaceconfiguration.html#cfn-mediaconnect-routernetworkinterface-routernetworkinterfaceconfiguration-vpc

Type union: either IResolvable or CfnRouterNetworkInterfacePropsMixin.IVpcRouterNetworkInterfaceConfigurationProperty

Back to top Generated by DocFX