{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-device-defender/refs/heads/main/json-schema/iot-device-defender-describe-job-template-response-schema.json", "title": "DescribeJobTemplateResponse", "description": "DescribeJobTemplateResponse schema", "type": "object", "properties": { "jobTemplateArn": { "allOf": [ { "$ref": "#/components/schemas/JobTemplateArn" }, { "description": "The ARN of the job template." } ] }, "jobTemplateId": { "allOf": [ { "$ref": "#/components/schemas/JobTemplateId" }, { "description": "The unique identifier of the job template." } ] }, "description": { "allOf": [ { "$ref": "#/components/schemas/JobDescription" }, { "description": "A description of the job template." } ] }, "documentSource": { "allOf": [ { "$ref": "#/components/schemas/JobDocumentSource" }, { "description": "An S3 link to the job document." } ] }, "document": { "allOf": [ { "$ref": "#/components/schemas/JobDocument" }, { "description": "The job document." } ] }, "createdAt": { "allOf": [ { "$ref": "#/components/schemas/DateType" }, { "description": "The time, in seconds since the epoch, when the job template was created." } ] }, "presignedUrlConfig": { "type": "object", "properties": { "roleArn": { "allOf": [ { "$ref": "#/components/schemas/RoleArn" }, { "description": "
The ARN of an IAM role that grants grants permission to download files from the S3 bucket where the job data/updates are stored. The role must also grant permission for IoT to download the files.
For information about addressing the confused deputy problem, see cross-service confused deputy prevention in the Amazon Web Services IoT Core developer guide.
TIMED_OUT status."
}
]
}
},
"description": "Specifies the amount of time each device has to finish its execution of the job. A timer is started when the job execution status is set to IN_PROGRESS. If the job execution status is not set to another terminal state before the timer expires, it will be automatically set to TIMED_OUT."
},
"jobExecutionsRetryConfig": {
"allOf": [
{
"$ref": "#/components/schemas/JobExecutionsRetryConfig"
},
{
"description": "The configuration that determines how many retries are allowed for each failure type for a job."
}
]
},
"maintenanceWindows": {
"allOf": [
{
"$ref": "#/components/schemas/MaintenanceWindows"
},
{
"description": "Allows you to configure an optional maintenance window for the rollout of a job document to all devices in the target group for a job."
}
]
}
}
}