interface CfnRecipeMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins.CfnRecipeMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatabrew/mixins#CfnRecipeMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.databrew.mixins.CfnRecipeMixinProps |
Python | aws_cdk.mixins_preview.aws_databrew.mixins.CfnRecipeMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_databrew » mixins » CfnRecipeMixinProps |
Properties for CfnRecipePropsMixin.
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 { mixins as databrew_mixins } from '@aws-cdk/mixins-preview/aws-databrew';
const cfnRecipeMixinProps: databrew_mixins.CfnRecipeMixinProps = {
description: 'description',
name: 'name',
steps: [{
action: {
operation: 'operation',
parameters: {
parametersKey: 'parameters',
},
},
conditionExpressions: [{
condition: 'condition',
targetColumn: 'targetColumn',
value: 'value',
}],
}],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the recipe. |
| name? | string | The unique name for the recipe. |
| steps? | IResolvable | (IResolvable | Recipe)[] | A list of steps that are defined by the recipe. |
| tags? | Cfn[] | Metadata tags that have been applied to the recipe. |
description?
Type:
string
(optional)
The description of the recipe.
name?
Type:
string
(optional)
The unique name for the recipe.
steps?
Type:
IResolvable | (IResolvable | Recipe)[]
(optional)
A list of steps that are defined by the recipe.
tags?
Type:
Cfn[]
(optional)
Metadata tags that have been applied to the recipe.

.NET
Go
Java
Python
TypeScript