AgentConfigurationStatus

AgentConfigurationStatus schema from Amazon Application Discovery Service API

Amazon Application Discovery ServiceMigrationDiscoveryInfrastructure

Properties

Name Type Description
agentId string The agent ID.
operationSucceeded boolean Information about the status of the StartDataCollection and StopDataCollection operations.
description string A description of the operation performed.
View JSON Schema on GitHub

JSON Schema

application-discovery-service-agent-configuration-status-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-agent-configuration-status-schema.json",
  "title": "AgentConfigurationStatus",
  "description": "AgentConfigurationStatus schema from Amazon Application Discovery Service API",
  "type": "object",
  "properties": {
    "agentId": {
      "type": "string",
      "example": "d-agent-500123",
      "description": "The agent ID."
    },
    "operationSucceeded": {
      "type": "boolean",
      "example": true,
      "description": "Information about the status of the StartDataCollection and StopDataCollection operations."
    },
    "description": {
      "type": "string",
      "example": "Started data collection",
      "description": "A description of the operation performed."
    }
  }
}