interface RecipeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataBrew.CfnJobPropsMixin.RecipeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatabrew#CfnJobPropsMixin_RecipeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.databrew.CfnJobPropsMixin.RecipeProperty |
Python | aws_cdk.cfn_property_mixins.aws_databrew.CfnJobPropsMixin.RecipeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_databrew » 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 { aws_databrew as databrew } from '@aws-cdk/cfn-property-mixins';
const recipeProperty: databrew.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