Amazon Migration Hub · JSON Structure

Migration Hub Api Application State Structure

The state of an application discovered through Migration Hub import, the AWS Agentless Discovery Connector, or the AWS Application Discovery Agent.

Type: object Properties: 3
BroadcastingMedia ProcessingMedia

ApplicationState is a JSON Structure definition published by Amazon Migration Hub, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

ApplicationId ApplicationStatus LastUpdatedTime

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-migration-hub/refs/heads/main/json-structure/migration-hub-api-application-state-structure.json",
  "name": "ApplicationState",
  "type": "object",
  "description": "The state of an application discovered through Migration Hub import, the AWS Agentless Discovery Connector, or the AWS Application Discovery Agent.",
  "properties": {
    "ApplicationId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ApplicationId"
        },
        {
          "description": "The configurationId from the Application Discovery Service that uniquely identifies an application."
        }
      ]
    },
    "ApplicationStatus": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ApplicationStatus"
        },
        {
          "description": "The current status of an application."
        }
      ]
    },
    "LastUpdatedTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UpdateDateTime"
        },
        {
          "description": "The timestamp when the application status was last updated."
        }
      ]
    }
  }
}