Amazon IoT TwinMaker · Schema
UpdateSceneRequest
UpdateSceneRequest schema
3D VisualizationDigital TwinIndustrial IoTIoT
Properties
| Name | Type | Description |
|---|---|---|
| contentLocation | object | |
| description | object | |
| capabilities | object | |
| sceneMetadata | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-twinmaker/refs/heads/main/json-schema/iot-twinmaker-update-scene-request-schema.json",
"title": "UpdateSceneRequest",
"description": "UpdateSceneRequest schema",
"type": "object",
"properties": {
"contentLocation": {
"allOf": [
{
"$ref": "#/components/schemas/S3Url"
},
{
"description": "The relative path that specifies the location of the content definition file."
}
]
},
"description": {
"allOf": [
{
"$ref": "#/components/schemas/Description"
},
{
"description": "The description of this scene."
}
]
},
"capabilities": {
"allOf": [
{
"$ref": "#/components/schemas/SceneCapabilities"
},
{
"description": "A list of capabilities that the scene uses to render."
}
]
},
"sceneMetadata": {
"allOf": [
{
"$ref": "#/components/schemas/SceneMetadataMap"
},
{
"description": "The scene metadata."
}
]
}
}
}