DeleteModelManifestResponse

DeleteModelManifestResponse schema

AutomotiveConnected VehiclesIoTTelematicsVehicle Data

Properties

Name Type Description
name object
arn object
View JSON Schema on GitHub

JSON Schema

iot-fleetwise-delete-model-manifest-response-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-delete-model-manifest-response-schema.json",
  "title": "DeleteModelManifestResponse",
  "description": "DeleteModelManifestResponse schema",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/resourceName"
        },
        {
          "description": "The name of the deleted model manifest."
        }
      ]
    },
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/arn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the deleted model manifest."
        }
      ]
    }
  },
  "required": [
    "name",
    "arn"
  ]
}