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.3/services/neptune.ts?docs=full";

Contains the details of an Amazon Neptune DB subnet group.

This data type is used as a response element in the "DescribeDBSubnetGroups" action.

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 DB subnet group.

§
DBSubnetGroupName?: string | null
[src]

The name of the DB subnet group.

§
SubnetGroupStatus?: string | null
[src]

Provides the status of the DB subnet group.

§
Subnets: Subnet[]
[src]

Contains a list of "Subnet" elements.

§
VpcId?: string | null
[src]

Provides the VpcId of the DB subnet group.