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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEnvironmentPropsMixin.NetworkConfigurationPropertystatic final classAn implementation forCfnEnvironmentPropsMixin.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 .
Returns union: Listinvalid input: '<'either
StringorISecurityGroupRef>- See Also:
-
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 .
Returns union: Listinvalid input: '<'either
StringorISubnetRef>- See Also:
-
builder
-