AWSPinpointTargetingExportJobResponse
Objective-C
@interface AWSPinpointTargetingExportJobResponse
Swift
class AWSPinpointTargetingExportJobResponse
Provides information about the status and settings of a job that exports endpoint definitions to a file. The file can be added directly to an Amazon Simple Storage Service (Amazon S3) bucket by using the Amazon Pinpoint API or downloaded directly to 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 export 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 export 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 export 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 export 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 export job.
Declaration
Objective-C
@property (nonatomic, strong) AWSPinpointTargetingExportJobResource *_Nullable definition;
Swift
var definition: AWSPinpointTargetingExportJobResource? { get set }
-
The number of pieces that weren’t processed successfully (failed) by the export 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 export job, if any.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nullable failures;
Swift
var failures: [String]? { get set }
-
The unique identifier for the export job.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable identifier;
Swift
var identifier: String? { get set }
-
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
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 export 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 export job. Each piece consists of an approximately equal portion of the endpoint definitions that are part of the export 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 export job.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable totalProcessed;
Swift
var totalProcessed: NSNumber? { get set }
-
The job type. This value is EXPORT for export jobs.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable types;
Swift
var types: String? { get set }