{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-core/refs/heads/main/json-structure/iot-core-alert-target-structure.json", "name": "AlertTarget", "description": "A structure containing the alert target ARN and the role ARN.", "type": "object", "properties": { "alertTargetArn": { "allOf": [ { "$ref": "#/components/schemas/AlertTargetArn" }, { "description": "The Amazon Resource Name (ARN) of the notification target to which alerts are sent." } ] }, "roleArn": { "allOf": [ { "$ref": "#/components/schemas/RoleArn" }, { "description": "The ARN of the role that grants permission to send alerts to the notification target." } ] } }, "required": [ "alertTargetArn", "roleArn" ] }