interface NetworkAclReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.EC2.NetworkAclReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsec2#NetworkAclReference |
Java | software.amazon.awscdk.interfaces.ec2.NetworkAclReference |
Python | aws_cdk.interfaces.aws_ec2.NetworkAclReference |
TypeScript | aws-cdk-lib » interfaces » aws_ec2 » NetworkAclReference |
A reference to a NetworkAcl resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as interfaces_aws_ec2 } from 'aws-cdk-lib/interfaces';
const networkAclReference: interfaces_aws_ec2.NetworkAclReference = {
networkAclId: 'networkAclId',
};
Properties
| Name | Type | Description |
|---|---|---|
| network | string | The Id of the NetworkAcl resource. |
networkAclId
Type:
string
The Id of the NetworkAcl resource.

.NET
Go
Java
Python
TypeScript