DiscoveredResource

Object representing the on-premises resource being migrated.

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
ConfigurationId object
Description object
View JSON Schema on GitHub

JSON Schema

migration-hub-api-discovered-resource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-migration-hub/refs/heads/main/json-schema/migration-hub-api-discovered-resource-schema.json",
  "title": "DiscoveredResource",
  "description": "Object representing the on-premises resource being migrated.",
  "type": "object",
  "properties": {
    "ConfigurationId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ConfigurationId"
        },
        {
          "description": "The configurationId in Application Discovery Service that uniquely identifies the on-premise resource."
        }
      ]
    },
    "Description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DiscoveredResourceDescription"
        },
        {
          "description": "A description that can be free-form text to record additional detail about the discovered resource for clarity or later reference."
        }
      ]
    }
  },
  "required": [
    "ConfigurationId"
  ]
}