interface CfnRecipeProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.DataBrew.CfnRecipeProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsdatabrew#CfnRecipeProps |
![]() | software.amazon.awscdk.services.databrew.CfnRecipeProps |
![]() | aws_cdk.aws_databrew.CfnRecipeProps |
![]() | aws-cdk-lib » aws_databrew » CfnRecipeProps |
Properties for defining a CfnRecipe
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-recipe.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_databrew as databrew } from 'aws-cdk-lib';
const cfnRecipeProps: databrew.CfnRecipeProps = {
name: 'name',
steps: [{
action: {
operation: 'operation',
// the properties below are optional
parameters: {
parametersKey: 'parameters',
},
},
// the properties below are optional
conditionExpressions: [{
condition: 'condition',
targetColumn: 'targetColumn',
// the properties below are optional
value: 'value',
}],
}],
// the properties below are optional
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
name | string | The unique name for the recipe. |
steps | IResolvable | IResolvable | Recipe [] | A list of steps that are defined by the recipe. |
description? | string | The description of the recipe. |
tags? | Cfn [] | Metadata tags that have been applied to the recipe. |
name
Type:
string
The unique name for the recipe.
steps
Type:
IResolvable
|
IResolvable
|
Recipe
[]
A list of steps that are defined by the recipe.
description?
Type:
string
(optional)
The description of the recipe.
tags?
Type:
Cfn
[]
(optional)
Metadata tags that have been applied to the recipe.