BatchGetAssetPropertyAggregatesErrorInfo

Contains the error code and the timestamp for an asset property aggregate entry that is associated with the BatchGetAssetPropertyAggregates API.

Asset ManagementIndustrial IoTIoTTime Series Data

Properties

Name Type Description
errorCode object
errorTimestamp object
View JSON Schema on GitHub

JSON Schema

iot-sitewise-batch-get-asset-property-aggregates-error-info-schema.json Raw ↑
{
  "$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-batch-get-asset-property-aggregates-error-info-schema.json",
  "title": "BatchGetAssetPropertyAggregatesErrorInfo",
  "description": "Contains the error code and the timestamp for an asset property aggregate entry that is associated with the <a href=\"https://docs.aws.amazon.com/iot-sitewise/latest/APIReference/API_BatchGetAssetPropertyAggregates.html\">BatchGetAssetPropertyAggregates</a> API.",
  "type": "object",
  "properties": {
    "errorCode": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BatchGetAssetPropertyAggregatesErrorCode"
        },
        {
          "description": "The error code."
        }
      ]
    },
    "errorTimestamp": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The date the error occurred, in Unix epoch time."
        }
      ]
    }
  },
  "required": [
    "errorCode",
    "errorTimestamp"
  ]
}