本文属于机器翻译版本。若本译文内容与英语原文存在差异,则一律以英文原文为准。
Job
对象包含有关任务的详细信息。以下示例显示该语法:
{
"jobArn": "string",
"jobId": "string",
"status": "IN_PROGRESS|CANCELED|SUCCEEDED",
"forceCanceled": boolean,
"targetSelection": "CONTINUOUS|SNAPSHOT",
"comment": "string",
"targets": ["string"],
"description": "string",
"createdAt": timestamp,
"lastUpdatedAt": timestamp,
"completedAt": timestamp,
"jobProcessDetails": {
"processingTargets": ["string"],
"numberOfCanceledThings": long,
"numberOfSucceededThings": long,
"numberOfFailedThings": long,
"numberOfRejectedThings": long,
"numberOfQueuedThings": long,
"numberOfInProgressThings": long,
"numberOfRemovedThings": long,
"numberOfTimedOutThings": long
},
"presignedUrlConfig": {
"expiresInSec": number,
"roleArn": "string"
},
"jobExecutionsRolloutConfig": {
"exponentialRate": {
"baseRatePerMinute": integer,
"incrementFactor": integer,
"rateIncreaseCriteria": {
"numberOfNotifiedThings": integer, // Set one or the other
"numberOfSucceededThings": integer // of these two values.
},
"maximumPerMinute": integer
}
},
"abortConfig": {
"criteriaList": [
{
"action": "string",
"failureType": "string",
"minNumberOfExecutedThings": integer,
"thresholdPercentage": integer
}
]
},
"SchedulingConfig": {
"startTime": string
"endTime": string
"timeZone": string
"endTimeBehavior": string
},
"timeoutConfig": {
"inProgressTimeoutInMinutes": long
}
}
有关更多信息,请参阅 Job
或 job
。
JobSummary
对象包含任务摘要。以下示例显示该语法:
{
"jobArn": "string",
"jobId": "string",
"status": "IN_PROGRESS|CANCELED|SUCCEEDED|SCHEDULED",
"targetSelection": "CONTINUOUS|SNAPSHOT",
"thingGroupId": "string",
"createdAt": timestamp,
"lastUpdatedAt": timestamp,
"completedAt": timestamp
}
有关更多信息,请参阅 JobSummary
或 job-summary
。
JobExecution
对象表示设备上的任务执行。以下示例显示该语法:
{
"approximateSecondsBeforeTimedOut": 50,
"executionNumber": 1234567890,
"forceCanceled": true|false,
"jobId": "string",
"lastUpdatedAt": timestamp,
"queuedAt": timestamp,
"startedAt": timestamp,
"status": "QUEUED|IN_PROGRESS|FAILED|SUCCEEDED|CANCELED|TIMED_OUT|REJECTED|REMOVED",
"forceCanceled": boolean,
"statusDetails": {
"detailsMap": {
"string": "string" ...
},
"status": "string"
},
"thingArn": "string",
"versionNumber": 123
}
有关更多信息,请参阅 JobExecution
或 job-execution
。
JobExecutionSummary
对象包含任务执行摘要信息。以下示例显示该语法:
{
"executionNumber": 1234567890,
"queuedAt": timestamp,
"lastUpdatedAt": timestamp,
"startedAt": timestamp,
"status": "QUEUED|IN_PROGRESS|FAILED|SUCCEEDED|CANCELED|TIMED_OUT|REJECTED|REMOVED"
}
有关更多信息,请参阅 JobExecutionSummary
或 job-execution-summary
。
JobExecutionSummaryForJob
对象包含有关特定任务的任务执行的信息摘要。以下示例显示该语法:
{
"executionSummaries": [
{
"thingArn": "arn:aws:iot:us-west-2:123456789012:thing/MyThing",
"jobExecutionSummary": {
"status": "IN_PROGRESS",
"lastUpdatedAt": 1549395301.389,
"queuedAt": 1541526002.609,
"executionNumber": 1
}
},
...
]
}
有关更多信息,请参阅 JobExecutionSummaryForJob
或 job-execution-summary-for-job
。
该JobExecutionSummaryForThing
对象包含有关在特定事物上执行任务的信息摘要。 FThe以下示例显示了语法:
{
"executionSummaries": [
{
"jobExecutionSummary": {
"status": "IN_PROGRESS",
"lastUpdatedAt": 1549395301.389,
"queuedAt": 1541526002.609,
"executionNumber": 1
},
"jobId": "MyThingJob"
},
...
]
}
有关更多信息,请参阅 JobExecutionSummaryForThing
或 job-execution-summary-for-thing
。
将组与持续任务关联。必须满足以下标准:
- HTTPS request
POST /jobs/jobId
/targets
{
"targets": [ "string" ],
"comment": "string"
}
有关更多信息,请参阅 AssociateTargetsWithJob
。
- CLI syntax
aws iot associate-targets-with-job \
--targets <value> \
--job-id <value> \
[--comment <value>] \
[--cli-input-json <value>] \
[--generate-cli-skeleton]
cli-input-json
格式:
{
"targets": [
"string"
],
"jobId": "string",
"comment": "string"
}
有关更多信息,请参阅 associate-targets-with-job
。
取消任务。
- HTTPS request
PUT /jobs/jobId
/cancel
{
"force": boolean,
"comment": "string",
"reasonCode": "string"
}
有关更多信息,请参阅 CancelJob
。
- CLI syntax
-
aws iot cancel-job \
--job-id <value> \
[--force <value>] \
[--comment <value>] \
[--reasonCode <value>] \
[--cli-input-json <value>] \
[--generate-cli-skeleton]
cli-input-json
格式:
{
"jobId": "string",
"force": boolean,
"comment": "string"
}
有关更多信息,请参阅 cancel-job
。
取消设备上的任务执行。
- HTTPS request
PUT /things/thingName
/jobs/jobId
/cancel
{
"force": boolean,
"expectedVersion": "string",
"statusDetails": {
"string": "string"
...
}
}
有关更多信息,请参阅 CancelJobExecution
。
- CLI syntax
aws iot cancel-job-execution \
--job-id <value> \
--thing-name <value> \
[--force | --no-force] \
[--expected-version <value>] \
[--status-details <value>] \
[--cli-input-json <value>] \
[--generate-cli-skeleton]
cli-input-json
格式:
{
"jobId": "string",
"thingName": "string",
"force": boolean,
"expectedVersion": long,
"statusDetails": {
"string": "string"
}
}
有关更多信息,请参阅 cancel-job-execution
。
创建任务。您可以提供任务文档,作为指向 Amazon S3 桶(documentSource
参数)中或请求正文(document
参数)中的文件的链接。
通过将可选的 targetSelection
参数设置为 CONTINUOUS
(默认为 SNAPSHOT
),可使任务成为连续任务。连续任务可用于在将设备添加到组时登记或升级设备,因为它将继续运行并在新添加的事物上启动。即使在创建任务时组中的事物已完成任务,也可能发生这种情况。
作业可以有一个可选的 TimeoutConfig,用于设置正在进行的计时器的值。进行中计时器无法更新,应用到该任务的全部执行。
对的参数执行以下验证:CreateJob
API
-
targets
参数必须是有效事物或事物组的列表ARNs。所有事物和事物组都必须位于您的中 AWS 账户。
-
对于任务文档,该documentSource
参数必须是有效的 Amazon S3 URL。亚马逊 URLs S3 的格式为:https://s3.amazonaws.com/bucketName
/objectName
.
-
存储在documentSource
参数URL指定的中的文档必须是 UTF -8 编码JSON的文档。
-
由于MQTT消息大小限制 (128 KB) 和加密,任务文档的大小限制为 32 KB。
-
在您的中jobId
必须是唯一的 AWS 账户。
- HTTPS request
PUT /jobs/jobId
{
"targets": [ "string" ],
"document": "string",
"documentSource": "string",
"description": "string",
"jobTemplateArn": "string",
"presignedUrlConfigData": {
"roleArn": "string",
"expiresInSec": "integer"
},
"targetSelection": "CONTINUOUS|SNAPSHOT",
"jobExecutionsRolloutConfig": {
"exponentialRate": {
"baseRatePerMinute": integer,
"incrementFactor": integer,
"rateIncreaseCriteria": {
"numberOfNotifiedThings": integer, // Set one or the other
"numberOfSucceededThings": integer // of these two values.
},
"maximumPerMinute": integer
}
},
"abortConfig": {
"criteriaList": [
{
"action": "string",
"failureType": "string",
"minNumberOfExecutedThings": integer,
"thresholdPercentage": integer
}
]
},
"SchedulingConfig": {
"startTime": string
"endTime": string
"timeZone": string
"endTimeBehavior": string
}
"timeoutConfig": {
"inProgressTimeoutInMinutes": long
}
}
有关更多信息,请参阅 CreateJob
。
- CLI syntax
aws iot create-job \
--job-id <value> \
--targets <value> \
[--document-source <value>] \
[--document <value>] \
[--description <value>] \
[--job-template-arn <value>] \
[--presigned-url-config <value>] \
[--target-selection <value>] \
[--job-executions-rollout-config <value>] \
[--abort-config <value>] \
[--timeout-config <value>] \
[--document-parameters <value>] \
[--cli-input-json <value>] \
[--generate-cli-skeleton]
cli-input-json
格式:
{
"jobId": "string",
"targets": [ "string" ],
"documentSource": "string",
"document": "string",
"description": "string",
"jobTemplateArn": "string",
"presignedUrlConfig": {
"roleArn": "string",
"expiresInSec": long
},
"targetSelection": "string",
"jobExecutionsRolloutConfig": {
"exponentialRate": {
"baseRatePerMinute": integer,
"incrementFactor": integer,
"rateIncreaseCriteria": {
"numberOfNotifiedThings": integer, // Set one or the other
"numberOfSucceededThings": integer // of these two values.
},
"maximumPerMinute": integer
}
},
"abortConfig": {
"criteriaList": [
{
"action": "string",
"failureType": "string",
"minNumberOfExecutedThings": integer,
"thresholdPercentage": integer
}
]
},
"timeoutConfig": {
"inProgressTimeoutInMinutes": long
},
"documentParameters": {
"string": "string"
}
}
有关更多信息,请参阅 create-job
。
删除任务及其相关的任务执行。
删除任务可能需要一些时间,具体取决于为该任务创建的任务执行的数量以及其它各种因素。删除作业时,作业的状态显示为 “DELETION_IN_PROGRESS”。尝试删除或取消状态已为 “DELETION_IN_PROGRESS” 的任务会导致错误。
- HTTPS request
DELETE /jobs/jobId
?force=force
有关更多信息,请参阅 DeleteJob
。
- CLI syntax
aws iot delete-job \
--job-id <value> \
[--force | --no-force] \
[--cli-input-json <value>] \
[--generate-cli-skeleton]
cli-input-json
格式:
{
"jobId": "string",
"force": boolean
}
有关更多信息,请参阅 delete-job
。
删除任务执行。
- HTTPS request
DELETE /things/thingName
/jobs/jobId
/executionNumber/executionNumber
?force=force
有关更多信息,请参阅 DeleteJobExecution
。
- CLI syntax
aws iot delete-job-execution \
--job-id <value> \
--thing-name <value> \
--execution-number <value> \
[--force | --no-force] \
[--cli-input-json <value>] \
[--generate-cli-skeleton]
cli-input-json
格式:
{
"jobId": "string",
"thingName": "string",
"executionNumber": long,
"force": boolean
}
有关更多信息,请参阅 delete-job-execution
。
获取任务执行的详细信息。
- HTTPS request
GET /jobs/jobId
有关更多信息,请参阅 DescribeJob
。
- CLI syntax
-
aws iot describe-job \
--job-id <value> \
[--cli-input-json <value>] \
[--generate-cli-skeleton]
cli-input-json
格式:
{
"jobId": "string"
}
有关更多信息,请参阅 describe-job
。
获取任务执行的详细信息。任务的执行状态必须为 SUCCEEDED
或 FAILED
。
- HTTPS request
GET /things/thingName
/jobs/jobId
?executionNumber=executionNumber
有关更多信息,请参阅 DescribeJobExecution
。
- CLI syntax
-
aws iot describe-job-execution \
--job-id <value> \
--thing-name <value> \
[--execution-number <value>] \
[--cli-input-json <value>] \
[--generate-cli-skeleton]
cli-input-json
格式:
{
"jobId": "string",
"thingName": "string",
"executionNumber": long
}
有关更多信息,请参阅 describe-job-execution
。
获取任务的任务文档。
在返回的文档URLs中,占位符不会替换为预签名的 Amazon S3 URLs。仅当 AWS IoT 作业服务收到请求时,才会生成预签名URLs。MQTT
- HTTPS request
GET /jobs/jobId
/job-document
有关更多信息,请参阅 GetJobDocument
。
- CLI syntax
-
aws iot get-job-document \
--job-id <value> \
[--cli-input-json <value>] \
[--generate-cli-skeleton]
cli-input-json
格式:
{
"jobId": "string"
}
有关更多信息,请参阅 get-job-document
。
获取任务的任务执行的列表。
- HTTPS request
-
GET /jobs/jobId
/things?status=status
&maxResults=maxResults
&nextToken=nextToken
有关更多信息,请参阅 ListJobExecutionsForJob
。
- CLI syntax
aws iot list-job-executions-for-job \
--job-id <value> \
[--status <value>] \
[--max-results <value>] \
[--next-token <value>] \
[--cli-input-json <value>] \
[--generate-cli-skeleton]
cli-input-json
格式:
{
"jobId": "string",
"status": "string",
"maxResults": "integer",
"nextToken": "string"
}
有关更多信息,请参阅 list-job-executions-for-job
。
获取事物的任务执行的列表。
- HTTPS request
GET /things/thingName
/jobs?status=status
&maxResults=maxResults
&nextToken=nextToken
有关更多信息,请参阅 ListJobExecutionsForThing
。
- CLI syntax
aws iot list-job-executions-for-thing \
--thing-name <value> \
[--status <value>] \
[--max-results <value>] \
[--next-token <value>] \
[--cli-input-json <value>] \
[--generate-cli-skeleton]
cli-input-json
格式:
{
"thingName": "string",
"status": "string",
"maxResults": "integer",
"nextToken": "string"
}
有关更多信息,请参阅 list-job-executions-for-thing
。
获取您的职位列表 AWS 账户。
- HTTPS request
GET /jobs?status=status
&targetSelection=targetSelection
&thingGroupName=thingGroupName
&thingGroupId=thingGroupId
&maxResults=maxResults
&nextToken=nextToken
有关更多信息,请参阅 ListJobs
。
- CLI syntax
aws iot list-jobs \
[--status <value>] \
[--target-selection <value>] \
[--max-results <value>] \
[--next-token <value>] \
[--thing-group-name <value>] \
[--thing-group-id <value>] \
[--cli-input-json <value>] \
[--generate-cli-skeleton]
cli-input-json
格式:
{
"status": "string",
"targetSelection": "string",
"maxResults": "integer",
"nextToken": "string",
"thingGroupName": "string",
"thingGroupId": "string"
}
有关更多信息,请参阅 list-jobs
。
更新指定任务的受支持字段。timeoutConfig
的更新值仅对新的正在进行的启动生效。目前,正在进行的启动将继续使用之前的超时配置启动。
- HTTPS request
PATCH /jobs/jobId
{
"description": "string",
"presignedUrlConfig": {
"expiresInSec": number,
"roleArn": "string"
},
"jobExecutionsRolloutConfig": {
"exponentialRate": {
"baseRatePerMinute": number,
"incrementFactor": number,
"rateIncreaseCriteria": {
"numberOfNotifiedThings": number,
"numberOfSucceededThings": number
},
"maximumPerMinute": number
},
"abortConfig": {
"criteriaList": [
{
"action": "string",
"failureType": "string",
"minNumberOfExecutedThings": number,
"thresholdPercentage": number
}
]
},
"timeoutConfig": {
"inProgressTimeoutInMinutes": number
}
}
有关更多信息,请参阅 UpdateJob
。
- CLI syntax
-
aws iot update-job \
--job-id <value> \
[--description <value>] \
[--presigned-url-config <value>] \
[--job-executions-rollout-config <value>] \
[--abort-config <value>] \
[--timeout-config <value>] \
[--cli-input-json <value>] \
[--generate-cli-skeleton]
cli-input-json
格式:
{
"description": "string",
"presignedUrlConfig": {
"expiresInSec": number,
"roleArn": "string"
},
"jobExecutionsRolloutConfig": {
"exponentialRate": {
"baseRatePerMinute": number,
"incrementFactor": number,
"rateIncreaseCriteria": {
"numberOfNotifiedThings": number,
"numberOfSucceededThings": number
}
},
"maximumPerMinute": number
},
"abortConfig": {
"criteriaList": [
{
"action": "string",
"failureType": "string",
"minNumberOfExecutedThings": number,
"thresholdPercentage": number
}
]
},
"timeoutConfig": {
"inProgressTimeoutInMinutes": number
}
}
有关更多信息,请参阅 update-job
。