Amazon IoT Core · Schema

ListTargetsForPolicyResponse

ListTargetsForPolicyResponse schema

Device ManagementIoTMQTTMessage Routing

Properties

Name Type Description
targets object
nextMarker object
View JSON Schema on GitHub

JSON Schema

iot-core-list-targets-for-policy-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-core/refs/heads/main/json-schema/iot-core-list-targets-for-policy-response-schema.json",
  "title": "ListTargetsForPolicyResponse",
  "description": "ListTargetsForPolicyResponse schema",
  "type": "object",
  "properties": {
    "targets": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PolicyTargets"
        },
        {
          "description": "The policy targets."
        }
      ]
    },
    "nextMarker": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Marker"
        },
        {
          "description": "A marker used to get the next set of results."
        }
      ]
    }
  }
}