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

CreateDBSnapshotMessage

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

§Properties

§
DBInstanceIdentifier: string
[src]

The identifier of the DB instance that you want to create the snapshot of.

Constraints:

  • Must match the identifier of an existing DBInstance.
§
DBSnapshotIdentifier: string
[src]

The identifier for the DB snapshot.

Constraints:

  • Can't be null, empty, or blank
  • Must contain from 1 to 255 letters, numbers, or hyphens
  • First character must be a letter
  • Can't end with a hyphen or contain two consecutive hyphens

Example: my-snapshot-id

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