class Aws::Glue::Types::ListMLTransformsRequest

@note When making an API call, you may pass ListMLTransformsRequest

data as a hash:

    {
      next_token: "PaginationToken",
      max_results: 1,
      filter: {
        name: "NameString",
        transform_type: "FIND_MATCHES", # accepts FIND_MATCHES
        status: "NOT_READY", # accepts NOT_READY, READY, DELETING
        glue_version: "GlueVersionString",
        created_before: Time.now,
        created_after: Time.now,
        last_modified_before: Time.now,
        last_modified_after: Time.now,
        schema: [
          {
            name: "ColumnNameString",
            data_type: "ColumnTypeString",
          },
        ],
      },
      sort: {
        column: "NAME", # required, accepts NAME, TRANSFORM_TYPE, STATUS, CREATED, LAST_MODIFIED
        sort_direction: "DESCENDING", # required, accepts DESCENDING, ASCENDING
      },
      tags: {
        "TagKey" => "TagValue",
      },
    }

@!attribute [rw] next_token

A continuation token, if this is a continuation request.
@return [String]

@!attribute [rw] max_results

The maximum size of a list to return.
@return [Integer]

@!attribute [rw] filter

A `TransformFilterCriteria` used to filter the machine learning
transforms.
@return [Types::TransformFilterCriteria]

@!attribute [rw] sort

A `TransformSortCriteria` used to sort the machine learning
transforms.
@return [Types::TransformSortCriteria]

@!attribute [rw] tags

Specifies to return only these tagged resources.
@return [Hash<String,String>]

@see docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListMLTransformsRequest AWS API Documentation

Constants

SENSITIVE