interface NetworkConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MWAA.CfnEnvironmentPropsMixin.NetworkConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmwaa#CfnEnvironmentPropsMixin_NetworkConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mwaa.CfnEnvironmentPropsMixin.NetworkConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_mwaa.CfnEnvironmentPropsMixin.NetworkConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mwaa » 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 { aws_mwaa as mwaa } from '@aws-cdk/cfn-property-mixins';
const networkConfigurationProperty: mwaa.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