interface RouterNetworkInterfaceProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.RouterNetworkInterfaceProps |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#RouterNetworkInterfaceProps |
Java | software.amazon.awscdk.services.mediaconnect.alpha.RouterNetworkInterfaceProps |
Python | aws_cdk.aws_mediaconnect_alpha.RouterNetworkInterfaceProps |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป RouterNetworkInterfaceProps |
Properties for Router Network Interface.
Example
declare const stack: Stack;
declare const securityGroup: ec2.ISecurityGroup;
declare const subnet: ec2.ISubnet;
const privateInterface = new RouterNetworkInterface(stack, 'PrivateInterface', {
routerNetworkInterfaceName: 'private-interface',
configuration: RouterNetworkConfiguration.vpc({
securityGroups: [securityGroup],
subnet: subnet,
}),
});
Properties
| Name | Type | Description |
|---|---|---|
| configuration | Router | Network configuration for the router network interface. |
| region | string | The AWS Region where the router network interface will be created. |
| router | string | The name of the router network interface. |
| tags? | { [string]: string } | Tags to add to the network interface. |
configuration
Type:
Router
Network configuration for the router network interface.
regionName?
Type:
string
(optional, default: Same region as the stack)
The AWS Region where the router network interface will be created.
routerNetworkInterfaceName?
Type:
string
(optional, default: Generated automatically)
The name of the router network interface.
tags?
Type:
{ [string]: string }
(optional, default: No tagging)
Tags to add to the network interface.

.NET
Go
Java
Python
TypeScript (