Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AwsEc2NetworkAclDetails

import type { AwsEc2NetworkAclDetails } from "https://aws-api.deno.dev/v0.4/services/securityhub.ts?docs=full";

Contains details about an Amazon EC2 network access control list (ACL).

interface AwsEc2NetworkAclDetails {
Associations?: AwsEc2NetworkAclAssociation[] | null;
Entries?: AwsEc2NetworkAclEntry[] | null;
IsDefault?: boolean | null;
NetworkAclId?: string | null;
OwnerId?: string | null;
VpcId?: string | null;
}

§Properties

§
Associations?: AwsEc2NetworkAclAssociation[] | null
[src]

Associations between the network ACL and subnets.

§
Entries?: AwsEc2NetworkAclEntry[] | null
[src]

The set of rules in the network ACL.

§
IsDefault?: boolean | null
[src]

Whether this is the default network ACL for the VPC.

§
NetworkAclId?: string | null
[src]

The identifier of the network ACL.

§
OwnerId?: string | null
[src]

The identifier of the Amazon Web Services account that owns the network ACL.

§
VpcId?: string | null
[src]

The identifier of the VPC for the network ACL.