Application Discovery Service Export Filter Structure

ExportFilter schema from Amazon Application Discovery Service API

Type: object Properties: 3 Required: 3
Amazon Application Discovery ServiceMigrationDiscoveryInfrastructure

Application Discovery Service Export Filter Structure is a JSON Structure definition published by Amazon Application Discovery Service, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name values condition

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "ExportFilter schema from Amazon Application Discovery Service API",
  "properties": {
    "name": {
      "type": "string",
      "description": "A single ExportFilter name. Supported filters \u2014 agentIds.",
      "example": "agentIds"
    },
    "values": {
      "type": "array",
      "description": "A single agent ID for a Discovery Agent. An agent ID can be found using the DescribeAgents action.",
      "items": {
        "type": "string"
      },
      "example": [
        "d-agent-500123"
      ]
    },
    "condition": {
      "type": "string",
      "description": "Supported condition \u2014 EQUALS.",
      "example": "EQUALS"
    }
  },
  "required": [
    "name",
    "values",
    "condition"
  ],
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-application-discovery-service/refs/heads/main/json-structure/application-discovery-service-export-filter-structure.json"
}