Amazon IoT Device Defender · Schema
DescribeManagedJobTemplateResponse
DescribeManagedJobTemplateResponse schema
ComplianceIoTSecurityVulnerability Management
Properties
| Name | Type | Description |
|---|---|---|
| templateName | object | |
| templateArn | object | |
| description | object | |
| templateVersion | object | |
| environments | object | |
| documentParameters | object | |
| document | object |
JSON Schema
{
"$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-managed-job-template-response-schema.json",
"title": "DescribeManagedJobTemplateResponse",
"description": "DescribeManagedJobTemplateResponse schema",
"type": "object",
"properties": {
"templateName": {
"allOf": [
{
"$ref": "#/components/schemas/ManagedJobTemplateName"
},
{
"description": "The unique name of a managed template, such as <code>AWS-Reboot</code>."
}
]
},
"templateArn": {
"allOf": [
{
"$ref": "#/components/schemas/JobTemplateArn"
},
{
"description": "The unique Amazon Resource Name (ARN) of the managed template."
}
]
},
"description": {
"allOf": [
{
"$ref": "#/components/schemas/JobDescription"
},
{
"description": "The unique description of a managed template."
}
]
},
"templateVersion": {
"allOf": [
{
"$ref": "#/components/schemas/ManagedTemplateVersion"
},
{
"description": "The version for a managed template."
}
]
},
"environments": {
"allOf": [
{
"$ref": "#/components/schemas/Environments"
},
{
"description": "A list of environments that are supported with the managed job template."
}
]
},
"documentParameters": {
"allOf": [
{
"$ref": "#/components/schemas/DocumentParameters"
},
{
"description": "<p>A map of key-value pairs that you can use as guidance to specify the inputs for creating a job from a managed template.</p> <note> <p> <code>documentParameters</code> can only be used when creating jobs from Amazon Web Services managed templates. This parameter can't be used with custom job templates or to create jobs from them.</p> </note>"
}
]
},
"document": {
"allOf": [
{
"$ref": "#/components/schemas/JobDocument"
},
{
"description": "The document schema for a managed job template."
}
]
}
}
}