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

Backup

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

A backup of an Amazon FSx for Windows File Server, Amazon FSx for Lustre file system, Amazon FSx for NetApp ONTAP volume, or Amazon FSx for OpenZFS file system.

interface Backup {
BackupId: string;
CreationTime: Date | number;
DirectoryInformation?: ActiveDirectoryBackupAttributes | null;
FailureDetails?: BackupFailureDetails | null;
FileSystem: FileSystem;
KmsKeyId?: string | null;
Lifecycle: BackupLifecycle;
OwnerId?: string | null;
ProgressPercent?: number | null;
ResourceARN?: string | null;
ResourceType?: ResourceType | null;
SourceBackupId?: string | null;
SourceBackupRegion?: string | null;
Tags?: Tag[] | null;
Type: BackupType;
Volume?: Volume | null;
}

§Properties

§
BackupId: string
[src]

The ID of the backup.

§
CreationTime: Date | number
[src]

The time when a particular backup was created.

§
DirectoryInformation?: ActiveDirectoryBackupAttributes | null
[src]

The configuration of the self-managed Microsoft Active Directory directory to which the Windows File Server instance is joined.

§
FailureDetails?: BackupFailureDetails | null
[src]

Details explaining any failures that occurred when creating a backup.

§
FileSystem: FileSystem
[src]

The metadata of the file system associated with the backup. This metadata is persisted even if the file system is deleted.

§
KmsKeyId?: string | null
[src]

The ID of the Key Management Service (KMS) key used to encrypt the backup of the Amazon FSx file system's data at rest.

§

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 backup.
  • TRANSFERRING - For user-initiated backups on Lustre file systems only; Amazon FSx is transferring the backup to Amazon S3.
  • 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.
§
OwnerId?: string | null
[src]
§
ProgressPercent?: number | null
[src]
§
ResourceARN?: string | null
[src]

The Amazon Resource Name (ARN) for the backup resource.

§
ResourceType?: ResourceType | null
[src]

Specifies the resource type that's backed up.

§
SourceBackupId?: string | null
[src]
§
SourceBackupRegion?: string | null
[src]

The source Region of the backup. Specifies the Region from where this backup is copied.

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

The tags associated with a particular file system.

§

The type of the file-system backup.

§
Volume?: Volume | null
[src]