VpcNetworkConfigurationProps
- class aws_cdk.aws_mediaconnect_alpha.VpcNetworkConfigurationProps(*, security_groups, subnet)
Bases:
object(experimental) Properties for VPC network configuration.
- Parameters:
security_groups (
Sequence[ISecurityGroup]) – (experimental) Security groups to associate with the network interface.subnet (
ISubnet) – (experimental) Subnet where the network interface will be created.
- Stability:
experimental
- ExampleMetadata:
infused
Example:
# stack: Stack # security_group: ec2.ISecurityGroup # subnet: ec2.ISubnet private_interface = RouterNetworkInterface(stack, "PrivateInterface", router_network_interface_name="private-interface", configuration=RouterNetworkConfiguration.vpc( security_groups=[security_group], subnet=subnet ) )
Attributes
- security_groups
(experimental) Security groups to associate with the network interface.
- Stability:
experimental
- subnet
(experimental) Subnet where the network interface will be created.
- Stability:
experimental