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

CreateDBSecurityGroupMessage

import type { CreateDBSecurityGroupMessage } from "https://aws-api.deno.dev/v0.4/services/rds.ts?docs=full";
interface CreateDBSecurityGroupMessage {
DBSecurityGroupDescription: string;
DBSecurityGroupName: string;
Tags?: Tag[] | null;
}

§Properties

§
DBSecurityGroupDescription: string
[src]

The description for the DB security group.

§
DBSecurityGroupName: string
[src]

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

Constraints:

  • Must be 1 to 255 letters, numbers, or hyphens.
  • First character must be a letter
  • Can't end with a hyphen or contain two consecutive hyphens
  • Must not be "Default"

Example: mysecuritygroup

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

Tags to assign to the DB security group.