{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-fleetwise/refs/heads/main/json-schema/iot-fleetwise-timestream-resources-schema.json", "title": "TimestreamResources", "description": "The registered Amazon Timestream resources that Amazon Web Services IoT FleetWise edge agent software can transfer your vehicle data to.", "type": "object", "properties": { "timestreamDatabaseName": { "allOf": [ { "$ref": "#/components/schemas/TimestreamDatabaseName" }, { "description": "The name of the registered Amazon Timestream database." } ] }, "timestreamTableName": { "allOf": [ { "$ref": "#/components/schemas/TimestreamTableName" }, { "description": "The name of the registered Amazon Timestream database table." } ] } }, "required": [ "timestreamDatabaseName", "timestreamTableName" ] }