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

DBClusterBacktrack

import type { DBClusterBacktrack } from "https://aws-api.deno.dev/v0.4/services/rds.ts?docs=full";

This data type is used as a response element in the DescribeDBClusterBacktracks action.

interface DBClusterBacktrack {
BacktrackedFrom?: Date | number | null;
BacktrackIdentifier?: string | null;
BacktrackRequestCreationTime?: Date | number | null;
BacktrackTo?: Date | number | null;
DBClusterIdentifier?: string | null;
Status?: string | null;
}

§Properties

§
BacktrackedFrom?: Date | number | null
[src]

The timestamp of the time from which the DB cluster was backtracked.

§
BacktrackIdentifier?: string | null
[src]

Contains the backtrack identifier.

§
BacktrackRequestCreationTime?: Date | number | null
[src]

The timestamp of the time at which the backtrack was requested.

§
BacktrackTo?: Date | number | null
[src]

The timestamp of the time to which the DB cluster was backtracked.

§
DBClusterIdentifier?: string | null
[src]

Contains a user-supplied DB cluster identifier. This identifier is the unique key that identifies a DB cluster.

§
Status?: string | null
[src]

The status of the backtrack. This property returns one of the following values:

  • applying - The backtrack is currently being applied to or rolled back from the DB cluster.
  • completed - The backtrack has successfully been applied to or rolled back from the DB cluster.
  • failed - An error occurred while the backtrack was applied to or rolled back from the DB cluster.
  • pending - The backtrack is currently pending application to or rollback from the DB cluster.