interface CfnSubnetNetworkAclAssociationProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.EC2.CfnSubnetNetworkAclAssociationProps | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnSubnetNetworkAclAssociationProps | 
|  Java | software.amazon.awscdk.services.ec2.CfnSubnetNetworkAclAssociationProps | 
|  Python | aws_cdk.aws_ec2.CfnSubnetNetworkAclAssociationProps | 
|  TypeScript | aws-cdk-lib»aws_ec2»CfnSubnetNetworkAclAssociationProps | 
Properties for defining a CfnSubnetNetworkAclAssociation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from 'aws-cdk-lib';
const cfnSubnetNetworkAclAssociationProps: ec2.CfnSubnetNetworkAclAssociationProps = {
  networkAclId: 'networkAclId',
  subnetId: 'subnetId',
};
Properties
| Name | Type | Description | 
|---|---|---|
| network | string | The ID of the network ACL. | 
| subnet | string | The ID of the subnet. | 
networkAclId
Type:
string
The ID of the network ACL.
subnetId
Type:
string
The ID of the subnet.
