Amazon IoT TwinMaker · Schema
ListEntitiesRequest
ListEntitiesRequest schema
3D VisualizationDigital TwinIndustrial IoTIoT
Properties
| Name | Type | Description |
|---|---|---|
| filters | object | |
| maxResults | object | |
| nextToken | 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-list-entities-request-schema.json",
"title": "ListEntitiesRequest",
"description": "ListEntitiesRequest schema",
"type": "object",
"properties": {
"filters": {
"allOf": [
{
"$ref": "#/components/schemas/ListEntitiesFilters"
},
{
"description": "<p>A list of objects that filter the request.</p> <note> <p>Only one object is accepted as a valid input.</p> </note>"
}
]
},
"maxResults": {
"allOf": [
{
"$ref": "#/components/schemas/MaxResults"
},
{
"description": "<p>The maximum number of results to return at one time. The default is 25.</p> <p>Valid Range: Minimum value of 1. Maximum value of 250.</p>"
}
]
},
"nextToken": {
"allOf": [
{
"$ref": "#/components/schemas/NextToken"
},
{
"description": "The string that specifies the next page of results."
}
]
}
}
}