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

DBInstanceStatusInfo

import type { DBInstanceStatusInfo } from "https://aws-api.deno.dev/v0.3/services/neptune.ts?docs=full";

Provides a list of status information for a DB instance.

interface DBInstanceStatusInfo {
Message?: string | null;
Normal?: boolean | null;
Status?: string | null;
StatusType?: string | null;
}

§Properties

§
Message?: string | null
[src]

Details of the error if there is an error for the instance. If the instance is not in an error state, this value is blank.

§
Normal?: boolean | null
[src]

Boolean value that is true if the instance is operating normally, or false if the instance is in an error state.

§
Status?: string | null
[src]

Status of the DB instance. For a StatusType of read replica, the values can be replicating, error, stopped, or terminated.

§
StatusType?: string | null
[src]

This value is currently "read replication."