interface NetworkConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MWAA.Mixins.CfnEnvironmentPropsMixin.NetworkConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmwaa/mixins#CfnEnvironmentPropsMixin_NetworkConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.mwaa.mixins.CfnEnvironmentPropsMixin.NetworkConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_mwaa.mixins.CfnEnvironmentPropsMixin.NetworkConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mwaa » mixins » CfnEnvironmentPropsMixin » NetworkConfigurationProperty |
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 { mixins as mwaa_mixins } from '@aws-cdk/mixins-preview/aws-mwaa';
const networkConfigurationProperty: mwaa_mixins.CfnEnvironmentPropsMixin.NetworkConfigurationProperty = {
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| security | (string | ISecurity)[] | A list of one or more security group IDs. |
| subnet | (string | ISubnet)[] | A list of subnet IDs. |
securityGroupIds?
Type:
(string | ISecurity)[]
(optional)
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 .
subnetIds?
Type:
(string | ISubnet)[]
(optional)
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 .

.NET
Go
Java
Python
TypeScript