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

DBSubnetGroup

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

Detailed information about a subnet group.

interface DBSubnetGroup {
DBSubnetGroupArn?: string | null;
DBSubnetGroupDescription?: string | null;
DBSubnetGroupName?: string | null;
SubnetGroupStatus?: string | null;
Subnets: Subnet[];
VpcId?: string | null;
}

§Properties

§
DBSubnetGroupArn?: string | null
[src]

The Amazon Resource Name (ARN) for the DB subnet group.

§
DBSubnetGroupDescription?: string | null
[src]

Provides the description of the subnet group.

§
DBSubnetGroupName?: string | null
[src]

The name of the subnet group.

§
SubnetGroupStatus?: string | null
[src]

Provides the status of the subnet group.

§
Subnets: Subnet[]
[src]

Detailed information about one or more subnets within a subnet group.

§
VpcId?: string | null
[src]

Provides the virtual private cloud (VPC) ID of the subnet group.