Amazon Migration Hub · JSON Structure

Migration Hub Api Created Artifact Structure

An ARN of the AWS cloud resource target receiving the migration (e.g., AMI, EC2 instance, RDS instance, etc.).

Type: object Properties: 2 Required: 1
BroadcastingMedia ProcessingMedia

CreatedArtifact is a JSON Structure definition published by Amazon Migration Hub, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Name Description

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-created-artifact-structure.json",
  "name": "CreatedArtifact",
  "type": "object",
  "description": "An ARN of the AWS cloud resource target receiving the migration (e.g., AMI, EC2 instance, RDS instance, etc.).",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CreatedArtifactName"
        },
        {
          "description": "An ARN that uniquely identifies the result of a migration task."
        }
      ]
    },
    "Description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CreatedArtifactDescription"
        },
        {
          "description": "A description that can be free-form text to record additional detail about the artifact for clarity or for later reference."
        }
      ]
    }
  },
  "required": [
    "Name"
  ]
}