ExportJobResponse

public struct ExportJobResponse : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The unique identifier for the application that’s associated with the export job.

    Declaration

    Swift

    public let applicationId: String
  • The number of pieces that were processed successfully (completed) by the export job, as of the time of the request.

    Declaration

    Swift

    public let completedPieces: Int?
  • The date, in ISO 8601 format, when the export job was completed.

    Declaration

    Swift

    public let completionDate: String?
  • The date, in ISO 8601 format, when the export job was created.

    Declaration

    Swift

    public let creationDate: String
  • The resource settings that apply to the export job.

    Declaration

    Swift

    public let definition: ExportJobResource
  • The number of pieces that weren’t processed successfully (failed) by the export job, as of the time of the request.

    Declaration

    Swift

    public let failedPieces: Int?
  • An array of entries, one for each of the first 100 entries that weren’t processed successfully (failed) by the export job, if any.

    Declaration

    Swift

    public let failures: [String]?
  • id

    The unique identifier for the export job.

    Declaration

    Swift

    public let id: String
  • The status of the export job. The job status is FAILED if Amazon Pinpoint wasn’t able to process one or more pieces in the job.

    Declaration

    Swift

    public let jobStatus: JobStatus
  • The total number of endpoint definitions that weren’t processed successfully (failed) by the export job, typically because an error, such as a syntax error, occurred.

    Declaration

    Swift

    public let totalFailures: Int?
  • The total number of pieces that must be processed to complete the export job. Each piece consists of an approximately equal portion of the endpoint definitions that are part of the export job.

    Declaration

    Swift

    public let totalPieces: Int?
  • The total number of endpoint definitions that were processed by the export job.

    Declaration

    Swift

    public let totalProcessed: Int?
  • The job type. This value is EXPORT for export jobs.

    Declaration

    Swift

    public let type: String
  • Undocumented

    Declaration

    Swift

    public init(applicationId: String, completedPieces: Int? = nil, completionDate: String? = nil, creationDate: String, definition: ExportJobResource, failedPieces: Int? = nil, failures: [String]? = nil, id: String, jobStatus: JobStatus, totalFailures: Int? = nil, totalPieces: Int? = nil, totalProcessed: Int? = nil, type: String)