[][src]Struct rusoto_fsx::DataRepositoryTask

pub struct DataRepositoryTask {
    pub creation_time: f64,
    pub end_time: Option<f64>,
    pub failure_details: Option<DataRepositoryTaskFailureDetails>,
    pub file_system_id: String,
    pub lifecycle: String,
    pub paths: Option<Vec<String>>,
    pub report: Option<CompletionReport>,
    pub resource_arn: Option<String>,
    pub start_time: Option<f64>,
    pub status: Option<DataRepositoryTaskStatus>,
    pub tags: Option<Vec<Tag>>,
    pub task_id: String,
    pub type_: String,
}

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

Fields

creation_time: f64end_time: Option<f64>

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

failure_details: Option<DataRepositoryTaskFailureDetails>

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

file_system_id: Stringlifecycle: String

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.

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: Option<Vec<String>>

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: Option<CompletionReport>resource_arn: Option<String>start_time: Option<f64>

The time that Amazon FSx began processing the task.

status: Option<DataRepositoryTaskStatus>

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

tags: Option<Vec<Tag>>task_id: String

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

type_: String

The type of data repository task; EXPORT_TO_REPOSITORY is the only type currently supported.

Trait Implementations

impl Clone for DataRepositoryTask[src]

impl Debug for DataRepositoryTask[src]

impl Default for DataRepositoryTask[src]

impl<'de> Deserialize<'de> for DataRepositoryTask[src]

impl PartialEq<DataRepositoryTask> for DataRepositoryTask[src]

impl StructuralPartialEq for DataRepositoryTask[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.