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¶
Arguments¶
NextTokenA continuation token, if this is a continuation request.
MaxResultsThe maximum size of a list to return.
FilterA
TransformFilterCriteriaused to filter the machine learning transforms.SortA
TransformSortCriteriaused to sort the machine learning transforms.TagsSpecifies to return only these tagged resources.
Value¶
A list with the following syntax:
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"
)
)