Amazon Glue · Schema

ListMLTransformsResponse

ListMLTransformsResponse schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

Name Type Description
TransformIds object
NextToken object
View JSON Schema on GitHub

JSON Schema

glue-list-ml-transforms-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-list-ml-transforms-response-schema.json",
  "title": "ListMLTransformsResponse",
  "description": "ListMLTransformsResponse schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "TransformIds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TransformIdList"
        },
        {
          "description": "The identifiers of all the machine learning transforms in the account, or the machine learning transforms with the specified tags."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PaginationToken"
        },
        {
          "description": "A continuation token, if the returned list does not contain the last metric available."
        }
      ]
    }
  },
  "required": [
    "TransformIds"
  ]
}