interface RecipeReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Personalize.RecipeReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awspersonalize#RecipeReference |
Java | software.amazon.awscdk.interfaces.personalize.RecipeReference |
Python | aws_cdk.interfaces.aws_personalize.RecipeReference |
TypeScript | aws-cdk-lib » interfaces » aws_personalize » RecipeReference |
A reference to a Recipe resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_personalize as interfaces_personalize } from 'aws-cdk-lib/interfaces';
const recipeReference: interfaces_personalize.RecipeReference = {
recipeArn: 'recipeArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| recipe | string | The RecipeArn of the Recipe resource. |
recipeArn
Type:
string
The RecipeArn of the Recipe resource.

.NET
Go
Java
Python
TypeScript