BatchDeleteAgentError

BatchDeleteAgentError schema from Amazon Application Discovery Service API

Amazon Application Discovery ServiceMigrationDiscoveryInfrastructure

Properties

Name Type Description
agentId string The ID of the agent that failed to delete.
errorCode string The type of error that occurred.
errorMessage string The text of the error message.
View JSON Schema on GitHub

JSON Schema

application-discovery-service-batch-delete-agent-error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-application-discovery-service/refs/heads/main/json-schema/application-discovery-service-batch-delete-agent-error-schema.json",
  "title": "BatchDeleteAgentError",
  "description": "BatchDeleteAgentError schema from Amazon Application Discovery Service API",
  "type": "object",
  "properties": {
    "agentId": {
      "type": "string",
      "example": "d-agent-500123",
      "description": "The ID of the agent that failed to delete."
    },
    "errorCode": {
      "type": "string",
      "example": "NOT_FOUND",
      "description": "The type of error that occurred."
    },
    "errorMessage": {
      "type": "string",
      "example": "Agent not found",
      "description": "The text of the error message."
    }
  }
}