Skip to content

List Ml Transforms

glue_list_ml_transforms R Documentation

Retrieves a sortable, filterable list of existing Glue machine learning transforms in this Amazon Web Services account, or the resources with the specified tag

Description

Retrieves a sortable, filterable list of existing Glue machine learning transforms in this Amazon Web Services account, or the resources with the specified tag. This operation takes the optional Tags field, which you can use as a filter of the responses so that tagged resources can be retrieved as a group. If you choose to use tag filtering, only resources with the tags are retrieved.

Usage

glue_list_ml_transforms(NextToken, MaxResults, Filter, Sort, Tags)

Arguments

NextToken

A continuation token, if this is a continuation request.

MaxResults

The maximum size of a list to return.

Filter

A TransformFilterCriteria used to filter the machine learning transforms.

Sort

A TransformSortCriteria used to sort the machine learning transforms.

Tags

Specifies to return only these tagged resources.

Value

A list with the following syntax:

list(
  TransformIds = list(
    "string"
  ),
  NextToken = "string"
)

Request syntax

svc$list_ml_transforms(
  NextToken = "string",
  MaxResults = 123,
  Filter = list(
    Name = "string",
    TransformType = "FIND_MATCHES",
    Status = "NOT_READY"|"READY"|"DELETING",
    GlueVersion = "string",
    CreatedBefore = as.POSIXct(
      "2015-01-01"
    ),
    CreatedAfter = as.POSIXct(
      "2015-01-01"
    ),
    LastModifiedBefore = as.POSIXct(
      "2015-01-01"
    ),
    LastModifiedAfter = as.POSIXct(
      "2015-01-01"
    ),
    Schema = list(
      list(
        Name = "string",
        DataType = "string"
      )
    )
  ),
  Sort = list(
    Column = "NAME"|"TRANSFORM_TYPE"|"STATUS"|"CREATED"|"LAST_MODIFIED",
    SortDirection = "DESCENDING"|"ASCENDING"
  ),
  Tags = list(
    "string"
  )
)