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

CreateDBSubnetGroupMessage

import type { CreateDBSubnetGroupMessage } from "https://aws-api.deno.dev/v0.3/services/neptune.ts?docs=full";
interface CreateDBSubnetGroupMessage {
DBSubnetGroupDescription: string;
DBSubnetGroupName: string;
SubnetIds: string[];
Tags?: Tag[] | null;
}

§Properties

§
DBSubnetGroupDescription: string
[src]

The description for the DB subnet group.

§
DBSubnetGroupName: string
[src]

The name for the DB subnet group. This value is stored as a lowercase string.

Constraints: Must contain no more than 255 letters, numbers, periods, underscores, spaces, or hyphens. Must not be default.

Example: mySubnetgroup

§
SubnetIds: string[]
[src]

The EC2 Subnet IDs for the DB subnet group.

§
Tags?: Tag[] | null
[src]

The tags to be assigned to the new DB subnet group.