libZSservicesZSamazonka-personalizeZSamazonka-personalize
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.Personalize.DescribeRecipe

Description

Describes a recipe.

A recipe contains three items:

  • An algorithm that trains a model.
  • Hyperparameters that govern the training.
  • Feature transformation information for modifying the input data before training.

Amazon Personalize provides a set of predefined recipes. You specify a recipe when you create a solution with the CreateSolution API. CreateSolution trains a model by using the algorithm in the specified recipe and a training dataset. The solution, when deployed as a campaign, can provide recommendations using the GetRecommendations API.

Synopsis

Creating a Request

data DescribeRecipe Source #

See: newDescribeRecipe smart constructor.

Constructors

DescribeRecipe' 

Fields

  • recipeArn :: Text

    The Amazon Resource Name (ARN) of the recipe to describe.

Instances

Instances details
Eq DescribeRecipe Source # 
Instance details

Defined in Amazonka.Personalize.DescribeRecipe

Read DescribeRecipe Source # 
Instance details

Defined in Amazonka.Personalize.DescribeRecipe

Show DescribeRecipe Source # 
Instance details

Defined in Amazonka.Personalize.DescribeRecipe

Generic DescribeRecipe Source # 
Instance details

Defined in Amazonka.Personalize.DescribeRecipe

Associated Types

type Rep DescribeRecipe :: Type -> Type #

NFData DescribeRecipe Source # 
Instance details

Defined in Amazonka.Personalize.DescribeRecipe

Methods

rnf :: DescribeRecipe -> () #

Hashable DescribeRecipe Source # 
Instance details

Defined in Amazonka.Personalize.DescribeRecipe

ToJSON DescribeRecipe Source # 
Instance details

Defined in Amazonka.Personalize.DescribeRecipe

AWSRequest DescribeRecipe Source # 
Instance details

Defined in Amazonka.Personalize.DescribeRecipe

Associated Types

type AWSResponse DescribeRecipe #

ToHeaders DescribeRecipe Source # 
Instance details

Defined in Amazonka.Personalize.DescribeRecipe

ToPath DescribeRecipe Source # 
Instance details

Defined in Amazonka.Personalize.DescribeRecipe

ToQuery DescribeRecipe Source # 
Instance details

Defined in Amazonka.Personalize.DescribeRecipe

type Rep DescribeRecipe Source # 
Instance details

Defined in Amazonka.Personalize.DescribeRecipe

type Rep DescribeRecipe = D1 ('MetaData "DescribeRecipe" "Amazonka.Personalize.DescribeRecipe" "libZSservicesZSamazonka-personalizeZSamazonka-personalize" 'False) (C1 ('MetaCons "DescribeRecipe'" 'PrefixI 'True) (S1 ('MetaSel ('Just "recipeArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse DescribeRecipe Source # 
Instance details

Defined in Amazonka.Personalize.DescribeRecipe

newDescribeRecipe Source #

Create a value of DescribeRecipe 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:recipeArn:DescribeRecipe', describeRecipe_recipeArn - The Amazon Resource Name (ARN) of the recipe to describe.

Request Lenses

describeRecipe_recipeArn :: Lens' DescribeRecipe Text Source #

The Amazon Resource Name (ARN) of the recipe to describe.

Destructuring the Response

data DescribeRecipeResponse Source #

See: newDescribeRecipeResponse smart constructor.

Constructors

DescribeRecipeResponse' 

Fields

Instances

Instances details
Eq DescribeRecipeResponse Source # 
Instance details

Defined in Amazonka.Personalize.DescribeRecipe

Read DescribeRecipeResponse Source # 
Instance details

Defined in Amazonka.Personalize.DescribeRecipe

Show DescribeRecipeResponse Source # 
Instance details

Defined in Amazonka.Personalize.DescribeRecipe

Generic DescribeRecipeResponse Source # 
Instance details

Defined in Amazonka.Personalize.DescribeRecipe

Associated Types

type Rep DescribeRecipeResponse :: Type -> Type #

NFData DescribeRecipeResponse Source # 
Instance details

Defined in Amazonka.Personalize.DescribeRecipe

Methods

rnf :: DescribeRecipeResponse -> () #

type Rep DescribeRecipeResponse Source # 
Instance details

Defined in Amazonka.Personalize.DescribeRecipe

type Rep DescribeRecipeResponse = D1 ('MetaData "DescribeRecipeResponse" "Amazonka.Personalize.DescribeRecipe" "libZSservicesZSamazonka-personalizeZSamazonka-personalize" 'False) (C1 ('MetaCons "DescribeRecipeResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "recipe") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Recipe)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDescribeRecipeResponse Source #

Create a value of DescribeRecipeResponse 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:recipe:DescribeRecipeResponse', describeRecipeResponse_recipe - An object that describes the recipe.

$sel:httpStatus:DescribeRecipeResponse', describeRecipeResponse_httpStatus - The response's http status code.

Response Lenses