interface RecipeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins.CfnJobPropsMixin.RecipeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatabrew/mixins#CfnJobPropsMixin_RecipeProperty |
Java | software.amazon.awscdk.mixins.preview.services.databrew.mixins.CfnJobPropsMixin.RecipeProperty |
Python | aws_cdk.mixins_preview.aws_databrew.mixins.CfnJobPropsMixin.RecipeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_databrew » mixins » CfnJobPropsMixin » RecipeProperty |
Represents one or more actions to be performed on a DataBrew dataset.
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 recipeProperty: databrew_mixins.CfnJobPropsMixin.RecipeProperty = {
name: 'name',
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The unique name for the recipe. |
| version? | string | The identifier for the version for the recipe. |
name?
Type:
string
(optional)
The unique name for the recipe.
version?
Type:
string
(optional)
The identifier for the version for the recipe.

.NET
Go
Java
Python
TypeScript