Amazon IoT Device Defender · JSON Structure

Iot Device Defender Alert Target Structure

A structure containing the alert target ARN and the role ARN.

Type: object Properties: 2 Required: 2
ComplianceIoTSecurityVulnerability Management

AlertTarget is a JSON Structure definition published by Amazon IoT Device Defender, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

alertTargetArn roleArn

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-device-defender/refs/heads/main/json-structure/iot-device-defender-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"
  ]
}