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

DataRepositoryTask

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

A description of the data repository task. You use data repository tasks to perform bulk transfer operations between your Amazon FSx file system and a linked data repository.

interface DataRepositoryTask {
CreationTime: Date | number;
EndTime?: Date | number | null;
FailureDetails?: DataRepositoryTaskFailureDetails | null;
FileSystemId: string;
Paths?: string[] | null;
Report?: CompletionReport | null;
ResourceARN?: string | null;
StartTime?: Date | number | null;
Status?: DataRepositoryTaskStatus | null;
Tags?: Tag[] | null;
TaskId: string;
}

§Properties

§
CreationTime: Date | number
[src]
§
EndTime?: Date | number | null
[src]

The time that Amazon FSx completed processing the task, populated after the task is complete.

§

Failure message describing why the task failed, it is populated only when Lifecycle is set to FAILED.

§
FileSystemId: string
[src]
§

The lifecycle status of the data repository task, as follows:

  • PENDING - Amazon FSx has not started the task.
  • EXECUTING - Amazon FSx is processing the task.
  • FAILED - Amazon FSx was not able to complete the task. For example, there may be files the task failed to process. The "DataRepositoryTaskFailureDetails" property provides more information about task failures.
  • SUCCEEDED - FSx completed the task successfully.
  • CANCELED - Amazon FSx canceled the task and it did not complete.
  • CANCELING - FSx is in process of canceling the task.

Note: You cannot delete an FSx for Lustre file system if there are data repository tasks for the file system in the PENDING or EXECUTING states. Please retry when the data repository task is finished (with a status of CANCELED, SUCCEEDED, or FAILED). You can use the DescribeDataRepositoryTask action to monitor the task status. Contact the FSx team if you need to delete your file system immediately.

§
Paths?: string[] | null
[src]

An array of paths on the Amazon FSx for Lustre file system that specify the data for the data repository task to process. For example, in an EXPORT_TO_REPOSITORY task, the paths specify which data to export to the linked data repository.

(Default) If Paths is not specified, Amazon FSx uses the file system root directory.

§
Report?: CompletionReport | null
[src]
§
ResourceARN?: string | null
[src]
§
StartTime?: Date | number | null
[src]

The time that Amazon FSx began processing the task.

§

Provides the status of the number of files that the task has processed successfully and failed to process.

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

The system-generated, unique 17-digit ID of the data repository task.

§

The type of data repository task.

  • The EXPORT_TO_REPOSITORY data repository task exports from your Lustre file system from to a linked S3 bucket.
  • The IMPORT_METADATA_FROM_REPOSITORY data repository task imports metadata changes from a linked S3 bucket to your Lustre file system.