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
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
Remarks
Vpc
The configuration settings for a router network interface within a VPC, including the security group IDs and subnet ID.
object? Vpc { get; }