Interface CfnEnvironmentPropsMixin.NetworkConfigurationProperty

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

@Stability(Stable) public static interface CfnEnvironmentPropsMixin.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.cfnpropertymixins.services.mwaa.*;
 NetworkConfigurationProperty networkConfigurationProperty = NetworkConfigurationProperty.builder()
         .securityGroupIds(List.of("securityGroupIds"))
         .subnetIds(List.of("subnetIds"))
         .build();
 

See Also: