AWS IoT Device SDK C:
Jobs
AWS IoT Jobs library
|
Return to main page ↑ |
Get detailed information about a job execution and receive an asynchronous notification when the response arrives.
This function implements the DescribeJobExecution command of the Jobs API, which gets detailed information about a job execution. The description is returned as the pResponse
member in AwsIotJobsCallbackParam_t, or through the AwsIotJobsResponse_t parameter of AwsIotJobs_Wait.
[in] | pRequestInfo | Jobs request parameters. |
[in] | executionNumber | The execution number to describe. Optional; pass AWS_IOT_JOBS_NO_EXECUTION_NUMBER to ignore. |
[in] | includeJobDocument | Whether the response should include the full Job document. |
[in] | flags | Flags which modify the behavior of the Jobs request. See Jobs Function Flags. |
[in] | pCallbackInfo | Asynchronous notification of this function's completion. |
[out] | pDescribeOperation | Set to a handle by which this operation may be referenced after this function returns. This reference is invalidated once the Jobs operation completes. |
Example