CreateThingTypeResponse

The output of the CreateThingType operation.

ComplianceIoTSecurityVulnerability Management

Properties

Name Type Description
thingTypeName object
thingTypeArn object
thingTypeId object
View JSON Schema on GitHub

JSON Schema

iot-device-defender-create-thing-type-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-device-defender/refs/heads/main/json-schema/iot-device-defender-create-thing-type-response-schema.json",
  "title": "CreateThingTypeResponse",
  "description": "The output of the CreateThingType operation.",
  "type": "object",
  "properties": {
    "thingTypeName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ThingTypeName"
        },
        {
          "description": "The name of the thing type."
        }
      ]
    },
    "thingTypeArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ThingTypeArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the thing type."
        }
      ]
    },
    "thingTypeId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ThingTypeId"
        },
        {
          "description": "The thing type ID."
        }
      ]
    }
  }
}