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

BackupLifecycle

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

The lifecycle status of the backup.

  • AVAILABLE - The backup is fully available.
  • PENDING - For user-initiated backups on Lustre file systems only; Amazon FSx hasn't started creating the backup.
  • CREATING - Amazon FSx is creating the new user-initiated backup.
  • TRANSFERRING - For user-initiated backups on Lustre file systems only; Amazon FSx is backing up the file system.
  • COPYING - Amazon FSx is copying the backup.
  • DELETED - Amazon FSx deleted the backup and it's no longer available.
  • FAILED - Amazon FSx couldn't finish the backup.
type BackupLifecycle =
| "AVAILABLE"
| "CREATING"
| "TRANSFERRING"
| "DELETED"
| "FAILED"
| "PENDING"
| "COPYING"

§Type

§
"AVAILABLE" | "CREATING" | "TRANSFERRING" | "DELETED" | "FAILED" | "PENDING" | "COPYING" | cmnP.UnexpectedEnumValue
[src]