DataRepositoryTaskStatus

public struct DataRepositoryTaskStatus : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A running total of the number of files that the task failed to process.

    Declaration

    Swift

    public let failedCount: Int64?
  • The time at which the task status was last updated.

    Declaration

    Swift

    public let lastUpdatedTime: TimeStamp?
  • A running total of the number of files that the task has successfully processed.

    Declaration

    Swift

    public let succeededCount: Int64?
  • The total number of files that the task will process. While a task is executing, the sum of SucceededCount plus FailedCount may not equal TotalCount. When the task is complete, TotalCount equals the sum of SucceededCount plus FailedCount.

    Declaration

    Swift

    public let totalCount: Int64?
  • Undocumented

    Declaration

    Swift

    public init(failedCount: Int64? = nil, lastUpdatedTime: TimeStamp? = nil, succeededCount: Int64? = nil, totalCount: Int64? = nil)