StartDataCollectionByAgentIdsResponse

StartDataCollectionByAgentIdsResponse schema from Amazon Application Discovery Service API

Amazon Application Discovery ServiceMigrationDiscoveryInfrastructure

Properties

Name Type Description
agentsConfigurationStatus array Information about agents that were instructed to start collecting data. Information includes the agent ID, a description of the operation performed, and whether the agent configuration was updated suc
View JSON Schema on GitHub

JSON Schema

application-discovery-service-start-data-collection-by-agent-ids-response-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-start-data-collection-by-agent-ids-response-schema.json",
  "title": "StartDataCollectionByAgentIdsResponse",
  "description": "StartDataCollectionByAgentIdsResponse schema from Amazon Application Discovery Service API",
  "type": "object",
  "properties": {
    "agentsConfigurationStatus": {
      "type": "array",
      "items": {
        "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."
          }
        }
      },
      "description": "Information about agents that were instructed to start collecting data. Information includes the agent ID, a description of the operation performed, and whether the agent configuration was updated successfully."
    }
  }
}