DataRepositoryTask

public struct DataRepositoryTask : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Undocumented

    Declaration

    Swift

    public let creationTime: TimeStamp
  • The time that Amazon FSx completed processing the task, populated after the task is complete.

    Declaration

    Swift

    public let endTime: TimeStamp?
  • Failure message describing why the task failed, it is populated only when Lifecycle is set to FAILED.

    Declaration

    Swift

    public let failureDetails: DataRepositoryTaskFailureDetails?
  • Undocumented

    Declaration

    Swift

    public let fileSystemId: 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.

    Declaration

    Swift

    public let lifecycle: DataRepositoryTaskLifecycle
  • 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.

    Declaration

    Swift

    public let paths: [String]?
  • Undocumented

    Declaration

    Swift

    public let report: CompletionReport?
  • Undocumented

    Declaration

    Swift

    public let resourceARN: String?
  • The time that Amazon FSx began processing the task.

    Declaration

    Swift

    public let startTime: TimeStamp?
  • Provides the status of the number of files that the task has processed successfully and failed to process.

    Declaration

    Swift

    public let status: DataRepositoryTaskStatus?
  • Undocumented

    Declaration

    Swift

    public let tags: [Tag]?
  • The system-generated, unique 17-digit ID of the data repository task.

    Declaration

    Swift

    public let taskId: String
  • The type of data repository task; EXPORT_TO_REPOSITORY is the only type currently supported.

    Declaration

    Swift

    public let type: DataRepositoryTaskType
  • Undocumented

    Declaration

    Swift

    public init(creationTime: TimeStamp, endTime: TimeStamp? = nil, failureDetails: DataRepositoryTaskFailureDetails? = nil, fileSystemId: String, lifecycle: DataRepositoryTaskLifecycle, paths: [String]? = nil, report: CompletionReport? = nil, resourceARN: String? = nil, startTime: TimeStamp? = nil, status: DataRepositoryTaskStatus? = nil, tags: [Tag]? = nil, taskId: String, type: DataRepositoryTaskType)