Skip to content

Delete Ml Transform

glue_delete_ml_transform R Documentation

Deletes an Glue machine learning transform

Description

Deletes an Glue machine learning transform. Machine learning transforms are a special type of transform that use machine learning to learn the details of the transformation to be performed by learning from examples provided by humans. These transformations are then saved by Glue. If you no longer need a transform, you can delete it by calling DeleteMLTransforms. However, any Glue jobs that still reference the deleted transform will no longer succeed.

Usage

glue_delete_ml_transform(TransformId)

Arguments

TransformId

[required] The unique identifier of the transform to delete.

Value

A list with the following syntax:

list(
  TransformId = "string"
)

Request syntax

svc$delete_ml_transform(
  TransformId = "string"
)