AWSIoTListJobExecutionsForThingRequest
Objective-C
@interface AWSIoTListJobExecutionsForThingRequest
Swift
class AWSIoTListJobExecutionsForThingRequest
-
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 maximum number of results to be returned per request.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable maxResults;
Swift
var maxResults: NSNumber? { get set }
-
The namespace used to indicate that a job is a customer-managed job.
When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.
$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/
The
namespaceId
feature is only supported by IoT Greengrass at this time. For more information, see Setting up IoT Greengrass core devices.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable namespaceId;
Swift
var namespaceId: String? { get set }
-
The token to retrieve the next set of results.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable nextToken;
Swift
var nextToken: String? { get set }
-
An optional filter that lets you search for jobs that have the specified status.
Declaration
Objective-C
@property (nonatomic) AWSIoTJobExecutionStatus status;
Swift
var status: AWSIoTJobExecutionStatus { get set }
-
The thing name.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable thingName;
Swift
var thingName: String? { get set }