Amazon IoT SiteWise · Schema
AssociateAssetsRequest
AssociateAssetsRequest schema
Asset ManagementIndustrial IoTIoTTime Series Data
Properties
| Name | Type | Description |
|---|---|---|
| hierarchyId | object | |
| childAssetId | object | |
| clientToken | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-sitewise/refs/heads/main/json-schema/iot-sitewise-associate-assets-request-schema.json",
"title": "AssociateAssetsRequest",
"description": "AssociateAssetsRequest schema",
"type": "object",
"properties": {
"hierarchyId": {
"allOf": [
{
"$ref": "#/components/schemas/ID"
},
{
"description": "The ID of a hierarchy in the parent asset's model. Hierarchies allow different groupings of assets to be formed that all come from the same asset model. For more information, see <a href=\"https://docs.aws.amazon.com/iot-sitewise/latest/userguide/asset-hierarchies.html\">Asset hierarchies</a> in the <i>IoT SiteWise User Guide</i>."
}
]
},
"childAssetId": {
"allOf": [
{
"$ref": "#/components/schemas/ID"
},
{
"description": "The ID of the child asset to be associated."
}
]
},
"clientToken": {
"allOf": [
{
"$ref": "#/components/schemas/ClientToken"
},
{
"description": "A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required."
}
]
}
},
"required": [
"hierarchyId",
"childAssetId"
]
}