Amazon Migration Hub · JSON Structure

Migration Hub Api List Created Artifacts Result Structure

ListCreatedArtifactsResult schema from Amazon Migration Hub API

Type: object Properties: 2
BroadcastingMedia ProcessingMedia

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

Properties

NextToken CreatedArtifactList

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-list-created-artifacts-result-structure.json",
  "name": "ListCreatedArtifactsResult",
  "type": "object",
  "description": "ListCreatedArtifactsResult schema from Amazon Migration Hub API",
  "properties": {
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Token"
        },
        {
          "description": "If there are more created artifacts than the max result, return the next token to be passed to the next call as a bookmark of where to start from."
        }
      ]
    },
    "CreatedArtifactList": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CreatedArtifactList"
        },
        {
          "description": "List of created artifacts up to the maximum number of results specified in the request."
        }
      ]
    }
  }
}