StartDataCollectionByAgentIdsRequest

StartDataCollectionByAgentIdsRequest schema from Amazon Application Discovery Service API

Amazon Application Discovery ServiceMigrationDiscoveryInfrastructure

Properties

Name Type Description
agentIds array The IDs of the agents from which to start collecting data. If you send a request to an agent that you do not have permission to contact, according to your AWS account's permission settings, the agent
View JSON Schema on GitHub

JSON Schema

application-discovery-service-start-data-collection-by-agent-ids-request-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-request-schema.json",
  "title": "StartDataCollectionByAgentIdsRequest",
  "description": "StartDataCollectionByAgentIdsRequest schema from Amazon Application Discovery Service API",
  "type": "object",
  "properties": {
    "agentIds": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": [
        "d-agent-500123"
      ],
      "description": "The IDs of the agents from which to start collecting data. If you send a request to an agent that you do not have permission to contact, according to your AWS account's permission settings, the agent is not included in the list of agents that are started."
    }
  },
  "required": [
    "agentIds"
  ]
}