libZSservicesZSamazonka-databrewZSamazonka-databrew
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.DataBrew.ListRecipeVersions

Description

Lists the versions of a particular DataBrew recipe, except for LATEST_WORKING.

This operation returns paginated results.

Synopsis

Creating a Request

data ListRecipeVersions Source #

See: newListRecipeVersions smart constructor.

Constructors

ListRecipeVersions' 

Fields

  • nextToken :: Maybe Text

    The token returned by a previous call to retrieve the next set of results.

  • maxResults :: Maybe Natural

    The maximum number of results to return in this request.

  • name :: Text

    The name of the recipe for which to return version information.

Instances

Instances details
Eq ListRecipeVersions Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipeVersions

Read ListRecipeVersions Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipeVersions

Show ListRecipeVersions Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipeVersions

Generic ListRecipeVersions Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipeVersions

Associated Types

type Rep ListRecipeVersions :: Type -> Type #

NFData ListRecipeVersions Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipeVersions

Methods

rnf :: ListRecipeVersions -> () #

Hashable ListRecipeVersions Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipeVersions

AWSPager ListRecipeVersions Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipeVersions

AWSRequest ListRecipeVersions Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipeVersions

Associated Types

type AWSResponse ListRecipeVersions #

ToHeaders ListRecipeVersions Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipeVersions

ToPath ListRecipeVersions Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipeVersions

ToQuery ListRecipeVersions Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipeVersions

type Rep ListRecipeVersions Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipeVersions

type Rep ListRecipeVersions = D1 ('MetaData "ListRecipeVersions" "Amazonka.DataBrew.ListRecipeVersions" "libZSservicesZSamazonka-databrewZSamazonka-databrew" 'False) (C1 ('MetaCons "ListRecipeVersions'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse ListRecipeVersions Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipeVersions

newListRecipeVersions Source #

Create a value of ListRecipeVersions 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:nextToken:ListRecipeVersions', listRecipeVersions_nextToken - The token returned by a previous call to retrieve the next set of results.

$sel:maxResults:ListRecipeVersions', listRecipeVersions_maxResults - The maximum number of results to return in this request.

$sel:name:ListRecipeVersions', listRecipeVersions_name - The name of the recipe for which to return version information.

Request Lenses

listRecipeVersions_nextToken :: Lens' ListRecipeVersions (Maybe Text) Source #

The token returned by a previous call to retrieve the next set of results.

listRecipeVersions_maxResults :: Lens' ListRecipeVersions (Maybe Natural) Source #

The maximum number of results to return in this request.

listRecipeVersions_name :: Lens' ListRecipeVersions Text Source #

The name of the recipe for which to return version information.

Destructuring the Response

data ListRecipeVersionsResponse Source #

See: newListRecipeVersionsResponse smart constructor.

Constructors

ListRecipeVersionsResponse' 

Fields

Instances

Instances details
Eq ListRecipeVersionsResponse Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipeVersions

Read ListRecipeVersionsResponse Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipeVersions

Show ListRecipeVersionsResponse Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipeVersions

Generic ListRecipeVersionsResponse Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipeVersions

Associated Types

type Rep ListRecipeVersionsResponse :: Type -> Type #

NFData ListRecipeVersionsResponse Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipeVersions

type Rep ListRecipeVersionsResponse Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipeVersions

type Rep ListRecipeVersionsResponse = D1 ('MetaData "ListRecipeVersionsResponse" "Amazonka.DataBrew.ListRecipeVersions" "libZSservicesZSamazonka-databrewZSamazonka-databrew" 'False) (C1 ('MetaCons "ListRecipeVersionsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "recipes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Recipe]))))

newListRecipeVersionsResponse Source #

Create a value of ListRecipeVersionsResponse 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:nextToken:ListRecipeVersions', listRecipeVersionsResponse_nextToken - A token that you can use in a subsequent call to retrieve the next set of results.

$sel:httpStatus:ListRecipeVersionsResponse', listRecipeVersionsResponse_httpStatus - The response's http status code.

$sel:recipes:ListRecipeVersionsResponse', listRecipeVersionsResponse_recipes - A list of versions for the specified recipe.

Response Lenses

listRecipeVersionsResponse_nextToken :: Lens' ListRecipeVersionsResponse (Maybe Text) Source #

A token that you can use in a subsequent call to retrieve the next set of results.

listRecipeVersionsResponse_recipes :: Lens' ListRecipeVersionsResponse [Recipe] Source #

A list of versions for the specified recipe.