AWSIoTJobExecutionSummary

Objective-C

@interface AWSIoTJobExecutionSummary

Swift

class AWSIoTJobExecutionSummary

The job execution summary.

  • A string (consisting of the digits “0” through “9”) which identifies this particular job execution on this particular device. It can be used later in commands which return or update job execution information.

    Declaration

    Objective-C

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

    Swift

    var executionNumber: NSNumber? { get set }
  • The time, in seconds since the epoch, when the job execution was last updated.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable lastUpdatedAt;

    Swift

    var lastUpdatedAt: Date? { get set }
  • The time, in seconds since the epoch, when the job execution was queued.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable queuedAt;

    Swift

    var queuedAt: Date? { get set }
  • The number that indicates how many retry attempts have been completed for this job on this device.

    Declaration

    Objective-C

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

    Swift

    var retryAttempt: NSNumber? { get set }
  • The time, in seconds since the epoch, when the job execution started.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable startedAt;

    Swift

    var startedAt: Date? { get set }
  • The status of the job execution.

    Declaration

    Objective-C

    @property (nonatomic) AWSIoTJobExecutionStatus status;

    Swift

    var status: AWSIoTJobExecutionStatus { get set }