StartBatchDeleteConfigurationTaskRequest

StartBatchDeleteConfigurationTaskRequest schema from Amazon Application Discovery Service API

Amazon Application Discovery ServiceMigrationDiscoveryInfrastructure

Properties

Name Type Description
configurationType string The type of configuration item to delete. Supported types are SERVER.
configurationIds array The list of configuration IDs that will be deleted by this task.
View JSON Schema on GitHub

JSON Schema

application-discovery-service-start-batch-delete-configuration-task-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-batch-delete-configuration-task-request-schema.json",
  "title": "StartBatchDeleteConfigurationTaskRequest",
  "description": "StartBatchDeleteConfigurationTaskRequest schema from Amazon Application Discovery Service API",
  "type": "object",
  "properties": {
    "configurationType": {
      "type": "string",
      "enum": [
        "SERVER"
      ],
      "example": "SERVER",
      "description": "The type of configuration item to delete. Supported types are SERVER."
    },
    "configurationIds": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": [
        "d-SERVER-500456"
      ],
      "description": "The list of configuration IDs that will be deleted by this task."
    }
  },
  "required": [
    "configurationType",
    "configurationIds"
  ]
}