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

Contains the details of an Amazon RDS 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[];
SupportedNetworkTypes: string[];
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.

§
SupportedNetworkTypes: string[]
[src]

The network type of the DB subnet group.

Valid values:

  • IPV4
    
  • DUAL
    

A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL).

For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide.

§
VpcId?: string | null
[src]

Provides the VpcId of the DB subnet group.