Interface CfnEnvironment.NetworkConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEnvironment.NetworkConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnEnvironment

@Stability(Stable) public static interface CfnEnvironment.NetworkConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The VPC networking components used to secure and enable network traffic between the AWS resources for your environment.

To learn more, see About networking on Amazon MWAA .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.mwaa.*;
 NetworkConfigurationProperty networkConfigurationProperty = NetworkConfigurationProperty.builder()
         .securityGroupIds(List.of("securityGroupIds"))
         .subnetIds(List.of("subnetIds"))
         .build();