amazonka-glue-2.0: Amazon Glue SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Glue.ListMLTransforms

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.

Synopsis

Creating a Request

data ListMLTransforms Source #

See: newListMLTransforms smart constructor.

Constructors

ListMLTransforms' 

Fields

Instances

Instances details
ToJSON ListMLTransforms Source # 
Instance details

Defined in Amazonka.Glue.ListMLTransforms

ToHeaders ListMLTransforms Source # 
Instance details

Defined in Amazonka.Glue.ListMLTransforms

ToPath ListMLTransforms Source # 
Instance details

Defined in Amazonka.Glue.ListMLTransforms

ToQuery ListMLTransforms Source # 
Instance details

Defined in Amazonka.Glue.ListMLTransforms

AWSRequest ListMLTransforms Source # 
Instance details

Defined in Amazonka.Glue.ListMLTransforms

Associated Types

type AWSResponse ListMLTransforms #

Generic ListMLTransforms Source # 
Instance details

Defined in Amazonka.Glue.ListMLTransforms

Associated Types

type Rep ListMLTransforms :: Type -> Type #

Read ListMLTransforms Source # 
Instance details

Defined in Amazonka.Glue.ListMLTransforms

Show ListMLTransforms Source # 
Instance details

Defined in Amazonka.Glue.ListMLTransforms

NFData ListMLTransforms Source # 
Instance details

Defined in Amazonka.Glue.ListMLTransforms

Methods

rnf :: ListMLTransforms -> () #

Eq ListMLTransforms Source # 
Instance details

Defined in Amazonka.Glue.ListMLTransforms

Hashable ListMLTransforms Source # 
Instance details

Defined in Amazonka.Glue.ListMLTransforms

type AWSResponse ListMLTransforms Source # 
Instance details

Defined in Amazonka.Glue.ListMLTransforms

type Rep ListMLTransforms Source # 
Instance details

Defined in Amazonka.Glue.ListMLTransforms

newListMLTransforms :: ListMLTransforms Source #

Create a value of ListMLTransforms 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:

ListMLTransforms, listMLTransforms_filter - A TransformFilterCriteria used to filter the machine learning transforms.

$sel:maxResults:ListMLTransforms', listMLTransforms_maxResults - The maximum size of a list to return.

ListMLTransforms, listMLTransforms_nextToken - A continuation token, if this is a continuation request.

ListMLTransforms, listMLTransforms_sort - A TransformSortCriteria used to sort the machine learning transforms.

$sel:tags:ListMLTransforms', listMLTransforms_tags - Specifies to return only these tagged resources.

Request Lenses

listMLTransforms_filter :: Lens' ListMLTransforms (Maybe TransformFilterCriteria) Source #

A TransformFilterCriteria used to filter the machine learning transforms.

listMLTransforms_maxResults :: Lens' ListMLTransforms (Maybe Natural) Source #

The maximum size of a list to return.

listMLTransforms_nextToken :: Lens' ListMLTransforms (Maybe Text) Source #

A continuation token, if this is a continuation request.

listMLTransforms_sort :: Lens' ListMLTransforms (Maybe TransformSortCriteria) Source #

A TransformSortCriteria used to sort the machine learning transforms.

listMLTransforms_tags :: Lens' ListMLTransforms (Maybe (HashMap Text Text)) Source #

Specifies to return only these tagged resources.

Destructuring the Response

data ListMLTransformsResponse Source #

See: newListMLTransformsResponse smart constructor.

Constructors

ListMLTransformsResponse' 

Fields

  • nextToken :: Maybe Text

    A continuation token, if the returned list does not contain the last metric available.

  • httpStatus :: Int

    The response's http status code.

  • transformIds :: [Text]

    The identifiers of all the machine learning transforms in the account, or the machine learning transforms with the specified tags.

Instances

Instances details
Generic ListMLTransformsResponse Source # 
Instance details

Defined in Amazonka.Glue.ListMLTransforms

Associated Types

type Rep ListMLTransformsResponse :: Type -> Type #

Read ListMLTransformsResponse Source # 
Instance details

Defined in Amazonka.Glue.ListMLTransforms

Show ListMLTransformsResponse Source # 
Instance details

Defined in Amazonka.Glue.ListMLTransforms

NFData ListMLTransformsResponse Source # 
Instance details

Defined in Amazonka.Glue.ListMLTransforms

Eq ListMLTransformsResponse Source # 
Instance details

Defined in Amazonka.Glue.ListMLTransforms

type Rep ListMLTransformsResponse Source # 
Instance details

Defined in Amazonka.Glue.ListMLTransforms

type Rep ListMLTransformsResponse = D1 ('MetaData "ListMLTransformsResponse" "Amazonka.Glue.ListMLTransforms" "amazonka-glue-2.0-7miPWwBHdfn8N8SvbpLgE0" 'False) (C1 ('MetaCons "ListMLTransformsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "transformIds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Text]))))

newListMLTransformsResponse Source #

Create a value of ListMLTransformsResponse 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:

ListMLTransforms, listMLTransformsResponse_nextToken - A continuation token, if the returned list does not contain the last metric available.

$sel:httpStatus:ListMLTransformsResponse', listMLTransformsResponse_httpStatus - The response's http status code.

$sel:transformIds:ListMLTransformsResponse', listMLTransformsResponse_transformIds - The identifiers of all the machine learning transforms in the account, or the machine learning transforms with the specified tags.

Response Lenses

listMLTransformsResponse_nextToken :: Lens' ListMLTransformsResponse (Maybe Text) Source #

A continuation token, if the returned list does not contain the last metric available.

listMLTransformsResponse_transformIds :: Lens' ListMLTransformsResponse [Text] Source #

The identifiers of all the machine learning transforms in the account, or the machine learning transforms with the specified tags.