Amazon IoT Device Defender · JSON Structure

Iot Device Defender Add Things To Thing Group Params Structure

Parameters used when defining a mitigation action that move a set of things to a thing group.

Type: object Properties: 2 Required: 1
ComplianceIoTSecurityVulnerability Management

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

Properties

thingGroupNames overrideDynamicGroups

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-add-things-to-thing-group-params-structure.json",
  "name": "AddThingsToThingGroupParams",
  "description": "Parameters used when defining a mitigation action that move a set of things to a thing group.",
  "type": "object",
  "properties": {
    "thingGroupNames": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ThingGroupNames"
        },
        {
          "description": "The list of groups to which you want to add the things that triggered the mitigation action. You can add a thing to a maximum of 10 groups, but you can't add a thing to more than one group in the same hierarchy."
        }
      ]
    },
    "overrideDynamicGroups": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NullableBoolean"
        },
        {
          "description": "Specifies if this mitigation action can move the things that triggered the mitigation action even if they are part of one or more dynamic thing groups."
        }
      ]
    }
  },
  "required": [
    "thingGroupNames"
  ]
}