DataDestinationConfig

The destination where the Amazon Web Services IoT FleetWise campaign sends data. You can send data to be stored in Amazon S3 or Amazon Timestream.

AutomotiveConnected VehiclesIoTTelematicsVehicle Data

Properties

Name Type Description
s3Config object
timestreamConfig object
View JSON Schema on GitHub

JSON Schema

iot-fleetwise-data-destination-config-schema.json Raw ↑
{
  "$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-data-destination-config-schema.json",
  "title": "DataDestinationConfig",
  "description": "The destination where the Amazon Web Services IoT FleetWise campaign sends data. You can send data to be stored in Amazon S3 or Amazon Timestream.",
  "type": "object",
  "properties": {
    "s3Config": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Config"
        },
        {
          "description": "The Amazon S3 bucket where the Amazon Web Services IoT FleetWise campaign sends data."
        }
      ]
    },
    "timestreamConfig": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TimestreamConfig"
        },
        {
          "description": "The Amazon Timestream table where the campaign sends data."
        }
      ]
    }
  }
}