AWSPinpointTargetingImportJobResponse

Objective-C

@interface AWSPinpointTargetingImportJobResponse

Swift

class AWSPinpointTargetingImportJobResponse

Provides information about the status and settings of a job that imports endpoint definitions from one or more files. The files can be stored in an Amazon Simple Storage Service (Amazon S3) bucket or uploaded directly from a computer by using the Amazon Pinpoint console.

Required parameters: [JobStatus, CreationDate, Type, Definition, Id, ApplicationId]

  • The unique identifier for the application that’s associated with the import job.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable applicationId;

    Swift

    var applicationId: String? { get set }
  • The number of pieces that were processed successfully (completed) by the import job, as of the time of the request.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable completedPieces;

    Swift

    var completedPieces: NSNumber? { get set }
  • The date, in ISO 8601 format, when the import job was completed.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable completionDate;

    Swift

    var completionDate: String? { get set }
  • The date, in ISO 8601 format, when the import job was created.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable creationDate;

    Swift

    var creationDate: String? { get set }
  • The resource settings that apply to the import job.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSPinpointTargetingImportJobResource *_Nullable definition;

    Swift

    var definition: AWSPinpointTargetingImportJobResource? { get set }
  • The number of pieces that weren’t processed successfully (failed) by the import job, as of the time of the request.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable failedPieces;

    Swift

    var failedPieces: NSNumber? { get set }
  • 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

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable failures;

    Swift

    var failures: [String]? { get set }
  • The unique identifier for the import job.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable identifier;

    Swift

    var identifier: String? { get set }
  • 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

    Objective-C

    @property (nonatomic) AWSPinpointTargetingJobStatus jobStatus;

    Swift

    var jobStatus: AWSPinpointTargetingJobStatus { get set }
  • 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

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable totalFailures;

    Swift

    var totalFailures: NSNumber? { get set }
  • 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

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable totalPieces;

    Swift

    var totalPieces: NSNumber? { get set }
  • The total number of endpoint definitions that were processed by the import job.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable totalProcessed;

    Swift

    var totalProcessed: NSNumber? { get set }
  • The job type. This value is IMPORT for import jobs.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable types;

    Swift

    var types: String? { get set }