AWSIoTJobSummary

Objective-C

@interface AWSIoTJobSummary

Swift

class AWSIoTJobSummary

The job summary.

  • The time, in seconds since the epoch, when the job completed.

    Declaration

    Objective-C

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

    Swift

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

    Declaration

    Objective-C

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

    Swift

    var createdAt: Date? { get set }
  • Indicates whether a job is concurrent. Will be true when a job is rolling out new job executions or canceling previously created executions, otherwise false.

    Declaration

    Objective-C

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

    Swift

    var isConcurrent: NSNumber? { get set }
  • The job ARN.

    Declaration

    Objective-C

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

    Swift

    var jobArn: String? { get set }
  • The unique identifier you assigned to this job when it was created.

    Declaration

    Objective-C

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

    Swift

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

    Declaration

    Objective-C

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

    Swift

    var lastUpdatedAt: Date? { get set }
  • The job summary status.

    Declaration

    Objective-C

    @property (nonatomic) AWSIoTJobStatus status;

    Swift

    var status: AWSIoTJobStatus { get set }
  • Specifies whether the job will continue to run (CONTINUOUS), or will be complete after all those things specified as targets have completed the job (SNAPSHOT). If continuous, the job may also be run on a thing when a change is detected in a target. For example, a job will run on a thing when the thing is added to a target group, even after the job was completed by all things originally in the group.

    We recommend that you use continuous jobs instead of snapshot jobs for dynamic thing group targets. By using continuous jobs, devices that join the group receive the job execution even after the job has been created.

    Declaration

    Objective-C

    @property (nonatomic) AWSIoTTargetSelection targetSelection;

    Swift

    var targetSelection: AWSIoTTargetSelection { get set }
  • The ID of the thing group.

    Declaration

    Objective-C

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

    Swift

    var thingGroupId: String? { get set }