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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnEnvironment.NetworkConfigurationProperty
static final class
An implementation forCfnEnvironment.NetworkConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
A list of one or more security group IDs.A list of subnet IDs.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecurityGroupIds
A list of one or more security group IDs.Accepts up to 5 security group IDs. A security group must be attached to the same VPC as the subnets. To learn more, see Security in your VPC on Amazon MWAA .
-
getSubnetIds
A list of subnet IDs.Required to create an environment. Must be private subnets in two different availability zones. A subnet must be attached to the same VPC as the security group. To learn more, see About networking on Amazon MWAA .
-
builder
-