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

AwsEc2SubnetDetails

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

Contains information about a subnet in Amazon EC2.

interface AwsEc2SubnetDetails {
AssignIpv6AddressOnCreation?: boolean | null;
AvailabilityZone?: string | null;
AvailabilityZoneId?: string | null;
AvailableIpAddressCount?: number | null;
CidrBlock?: string | null;
DefaultForAz?: boolean | null;
Ipv6CidrBlockAssociationSet?: Ipv6CidrBlockAssociation[] | null;
MapPublicIpOnLaunch?: boolean | null;
OwnerId?: string | null;
State?: string | null;
SubnetArn?: string | null;
SubnetId?: string | null;
VpcId?: string | null;
}

§Properties

§
AssignIpv6AddressOnCreation?: boolean | null
[src]

Whether to assign an IPV6 address to a network interface that is created in this subnet.

§
AvailabilityZone?: string | null
[src]

The Availability Zone for the subnet.

§
AvailabilityZoneId?: string | null
[src]

The identifier of the Availability Zone for the subnet.

§
AvailableIpAddressCount?: number | null
[src]

The number of available IPV4 addresses in the subnet. Does not include addresses for stopped instances.

§
CidrBlock?: string | null
[src]

The IPV4 CIDR block that is assigned to the subnet.

§
DefaultForAz?: boolean | null
[src]

Whether this subnet is the default subnet for the Availability Zone.

§
Ipv6CidrBlockAssociationSet?: Ipv6CidrBlockAssociation[] | null
[src]

The IPV6 CIDR blocks that are associated with the subnet.

§
MapPublicIpOnLaunch?: boolean | null
[src]

Whether instances in this subnet receive a public IP address.

§
OwnerId?: string | null
[src]

The identifier of the Amazon Web Services account that owns the subnet.

§
State?: string | null
[src]

The current state of the subnet. Valid values are available or pending.

§
SubnetArn?: string | null
[src]

The ARN of the subnet.

§
SubnetId?: string | null
[src]

The identifier of the subnet.

§
VpcId?: string | null
[src]

The identifier of the VPC that contains the subnet.