Amazon IoT Core · Schema
CreateDynamicThingGroupResponse
CreateDynamicThingGroupResponse schema
Device ManagementIoTMQTTMessage Routing
Properties
| Name | Type | Description |
|---|---|---|
| thingGroupName | object | |
| thingGroupArn | object | |
| thingGroupId | object | |
| indexName | object | |
| queryString | object | |
| queryVersion | object |
JSON Schema
{
"$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-create-dynamic-thing-group-response-schema.json",
"title": "CreateDynamicThingGroupResponse",
"description": "CreateDynamicThingGroupResponse schema",
"type": "object",
"properties": {
"thingGroupName": {
"allOf": [
{
"$ref": "#/components/schemas/ThingGroupName"
},
{
"description": "The dynamic thing group name."
}
]
},
"thingGroupArn": {
"allOf": [
{
"$ref": "#/components/schemas/ThingGroupArn"
},
{
"description": "The dynamic thing group ARN."
}
]
},
"thingGroupId": {
"allOf": [
{
"$ref": "#/components/schemas/ThingGroupId"
},
{
"description": "The dynamic thing group ID."
}
]
},
"indexName": {
"allOf": [
{
"$ref": "#/components/schemas/IndexName"
},
{
"description": "The dynamic thing group index name."
}
]
},
"queryString": {
"allOf": [
{
"$ref": "#/components/schemas/QueryString"
},
{
"description": "The dynamic thing group search query string."
}
]
},
"queryVersion": {
"allOf": [
{
"$ref": "#/components/schemas/QueryVersion"
},
{
"description": "The dynamic thing group query version."
}
]
}
}
}