CreateThingResponse

The output of the CreateThing operation.

Device ManagementFleet ManagementIoTOTA Updates

Properties

Name Type Description
thingName object
thingArn object
thingId object
View JSON Schema on GitHub

JSON Schema

iot-device-management-create-thing-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-device-management/refs/heads/main/json-schema/iot-device-management-create-thing-response-schema.json",
  "title": "CreateThingResponse",
  "description": "The output of the CreateThing operation.",
  "type": "object",
  "properties": {
    "thingName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ThingName"
        },
        {
          "description": "The name of the new thing."
        }
      ]
    },
    "thingArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ThingArn"
        },
        {
          "description": "The ARN of the new thing."
        }
      ]
    },
    "thingId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ThingId"
        },
        {
          "description": "The thing ID."
        }
      ]
    }
  }
}