Personalize.Client.
describe_recipe
(**kwargs)¶Describes a recipe.
A recipe contains three items:
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.
See also: AWS API Documentation
Request Syntax
response = client.describe_recipe(
recipeArn='string'
)
[REQUIRED]
The Amazon Resource Name (ARN) of the recipe to describe.
{
'recipe': {
'name': 'string',
'recipeArn': 'string',
'algorithmArn': 'string',
'featureTransformationArn': 'string',
'status': 'string',
'description': 'string',
'creationDateTime': datetime(2015, 1, 1),
'recipeType': 'string',
'lastUpdatedDateTime': datetime(2015, 1, 1)
}
}
Response Structure
An object that describes the recipe.
The name of the recipe.
The Amazon Resource Name (ARN) of the recipe.
The Amazon Resource Name (ARN) of the algorithm that Amazon Personalize uses to train the model.
The ARN of the FeatureTransformation object.
The status of the recipe.
The description of the recipe.
The date and time (in Unix format) that the recipe was created.
One of the following values:
The date and time (in Unix format) that the recipe was last updated.
Exceptions
Personalize.Client.exceptions.InvalidInputException
Personalize.Client.exceptions.ResourceNotFoundException