Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
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.
Synopsis
- data DeleteMLTransform = DeleteMLTransform' {
- transformId :: Text
- newDeleteMLTransform :: Text -> DeleteMLTransform
- deleteMLTransform_transformId :: Lens' DeleteMLTransform Text
- data DeleteMLTransformResponse = DeleteMLTransformResponse' {
- transformId :: Maybe Text
- httpStatus :: Int
- newDeleteMLTransformResponse :: Int -> DeleteMLTransformResponse
- deleteMLTransformResponse_transformId :: Lens' DeleteMLTransformResponse (Maybe Text)
- deleteMLTransformResponse_httpStatus :: Lens' DeleteMLTransformResponse Int
Creating a Request
data DeleteMLTransform Source #
See: newDeleteMLTransform
smart constructor.
DeleteMLTransform' | |
|
Instances
Create a value of DeleteMLTransform
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:transformId:DeleteMLTransform'
, deleteMLTransform_transformId
- The unique identifier of the transform to delete.
Request Lenses
deleteMLTransform_transformId :: Lens' DeleteMLTransform Text Source #
The unique identifier of the transform to delete.
Destructuring the Response
data DeleteMLTransformResponse Source #
See: newDeleteMLTransformResponse
smart constructor.
DeleteMLTransformResponse' | |
|
Instances
newDeleteMLTransformResponse Source #
Create a value of DeleteMLTransformResponse
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:transformId:DeleteMLTransform'
, deleteMLTransformResponse_transformId
- The unique identifier of the transform that was deleted.
$sel:httpStatus:DeleteMLTransformResponse'
, deleteMLTransformResponse_httpStatus
- The response's http status code.
Response Lenses
deleteMLTransformResponse_transformId :: Lens' DeleteMLTransformResponse (Maybe Text) Source #
The unique identifier of the transform that was deleted.
deleteMLTransformResponse_httpStatus :: Lens' DeleteMLTransformResponse Int Source #
The response's http status code.