ImportJobResponse

public struct ImportJobResponse : AWSShape

Undocumented

  • Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

    public let definition: ImportJobResource
  • The number of pieces that weren’t processed successfully (failed) by the import 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 import job, if any.

    Declaration

    Swift

    public let failures: [String]?
  • id

    The unique identifier for the import job.

    Declaration

    Swift

    public let id: String
  • The status of the import 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 import 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 import job. Each piece consists of an approximately equal portion of the endpoint definitions that are part of the import job.

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

    public let type: String
  • Undocumented

    Declaration

    Swift

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