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.ListRecipes

Description

Lists all of the DataBrew recipes that are defined.

This operation returns paginated results.

Synopsis

Creating a Request

data ListRecipes Source #

See: newListRecipes smart constructor.

Constructors

ListRecipes' 

Fields

  • nextToken :: Maybe Text

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

  • recipeVersion :: Maybe Text

    Return only those recipes with a version identifier of LATEST_WORKING or LATEST_PUBLISHED. If RecipeVersion is omitted, ListRecipes returns all of the LATEST_PUBLISHED recipe versions.

    Valid values: LATEST_WORKING | LATEST_PUBLISHED

  • maxResults :: Maybe Natural

    The maximum number of results to return in this request.

Instances

Instances details
Eq ListRecipes Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipes

Read ListRecipes Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipes

Show ListRecipes Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipes

Generic ListRecipes Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipes

Associated Types

type Rep ListRecipes :: Type -> Type #

NFData ListRecipes Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipes

Methods

rnf :: ListRecipes -> () #

Hashable ListRecipes Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipes

AWSPager ListRecipes Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipes

AWSRequest ListRecipes Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipes

Associated Types

type AWSResponse ListRecipes #

ToHeaders ListRecipes Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipes

Methods

toHeaders :: ListRecipes -> [Header] #

ToPath ListRecipes Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipes

ToQuery ListRecipes Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipes

type Rep ListRecipes Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipes

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

Defined in Amazonka.DataBrew.ListRecipes

newListRecipes :: ListRecipes Source #

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

$sel:recipeVersion:ListRecipes', listRecipes_recipeVersion - Return only those recipes with a version identifier of LATEST_WORKING or LATEST_PUBLISHED. If RecipeVersion is omitted, ListRecipes returns all of the LATEST_PUBLISHED recipe versions.

Valid values: LATEST_WORKING | LATEST_PUBLISHED

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

Request Lenses

listRecipes_nextToken :: Lens' ListRecipes (Maybe Text) Source #

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

listRecipes_recipeVersion :: Lens' ListRecipes (Maybe Text) Source #

Return only those recipes with a version identifier of LATEST_WORKING or LATEST_PUBLISHED. If RecipeVersion is omitted, ListRecipes returns all of the LATEST_PUBLISHED recipe versions.

Valid values: LATEST_WORKING | LATEST_PUBLISHED

listRecipes_maxResults :: Lens' ListRecipes (Maybe Natural) Source #

The maximum number of results to return in this request.

Destructuring the Response

data ListRecipesResponse Source #

See: newListRecipesResponse smart constructor.

Constructors

ListRecipesResponse' 

Fields

Instances

Instances details
Eq ListRecipesResponse Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipes

Read ListRecipesResponse Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipes

Show ListRecipesResponse Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipes

Generic ListRecipesResponse Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipes

Associated Types

type Rep ListRecipesResponse :: Type -> Type #

NFData ListRecipesResponse Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipes

Methods

rnf :: ListRecipesResponse -> () #

type Rep ListRecipesResponse Source # 
Instance details

Defined in Amazonka.DataBrew.ListRecipes

type Rep ListRecipesResponse = D1 ('MetaData "ListRecipesResponse" "Amazonka.DataBrew.ListRecipes" "libZSservicesZSamazonka-databrewZSamazonka-databrew" 'False) (C1 ('MetaCons "ListRecipesResponse'" '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]))))

newListRecipesResponse Source #

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

$sel:httpStatus:ListRecipesResponse', listRecipesResponse_httpStatus - The response's http status code.

$sel:recipes:ListRecipesResponse', listRecipesResponse_recipes - A list of recipes that are defined.

Response Lenses

listRecipesResponse_nextToken :: Lens' ListRecipesResponse (Maybe Text) Source #

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

listRecipesResponse_recipes :: Lens' ListRecipesResponse [Recipe] Source #

A list of recipes that are defined.