CloudWatchLogDeliveryOptions

The log delivery option to send data to Amazon CloudWatch Logs.

AutomotiveConnected VehiclesIoTTelematicsVehicle Data

Properties

Name Type Description
logType object
logGroupName object
View JSON Schema on GitHub

JSON Schema

iot-fleetwise-cloud-watch-log-delivery-options-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-cloud-watch-log-delivery-options-schema.json",
  "title": "CloudWatchLogDeliveryOptions",
  "description": "The log delivery option to send data to Amazon CloudWatch Logs.",
  "type": "object",
  "properties": {
    "logType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LogType"
        },
        {
          "description": "The type of log to send data to Amazon CloudWatch Logs."
        }
      ]
    },
    "logGroupName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CloudWatchLogGroupName"
        },
        {
          "description": "The Amazon CloudWatch Logs group the operation sends data to."
        }
      ]
    }
  },
  "required": [
    "logType"
  ]
}