interface VpcNetworkConfigurationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.VpcNetworkConfigurationProps |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#VpcNetworkConfigurationProps |
Java | software.amazon.awscdk.services.mediaconnect.alpha.VpcNetworkConfigurationProps |
Python | aws_cdk.aws_mediaconnect_alpha.VpcNetworkConfigurationProps |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป VpcNetworkConfigurationProps |
Properties for VPC network configuration.
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 |
|---|---|---|
| security | ISecurity[] | Security groups to associate with the network interface. |
| subnet | ISubnet | Subnet where the network interface will be created. |
securityGroups
Type:
ISecurity[]
Security groups to associate with the network interface.
subnet
Type:
ISubnet
Subnet where the network interface will be created.

.NET
Go
Java
Python
TypeScript (