interface RecipeStepProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.DataBrew.CfnRecipe.RecipeStepProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsdatabrew#CfnRecipe_RecipeStepProperty |
![]() | software.amazon.awscdk.services.databrew.CfnRecipe.RecipeStepProperty |
![]() | aws_cdk.aws_databrew.CfnRecipe.RecipeStepProperty |
![]() | aws-cdk-lib » aws_databrew » CfnRecipe » RecipeStepProperty |
Represents a single step from a DataBrew recipe to be performed.
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 recipeStepProperty: databrew.CfnRecipe.RecipeStepProperty = {
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',
}],
};
Properties
Name | Type | Description |
---|---|---|
action | IResolvable | Action | The particular action to be performed in the recipe step. |
condition | IResolvable | IResolvable | Condition [] | One or more conditions that must be met for the recipe step to succeed. |
action
Type:
IResolvable
|
Action
The particular action to be performed in the recipe step.
conditionExpressions?
Type:
IResolvable
|
IResolvable
|
Condition
[]
(optional)
One or more conditions that must be met for the recipe step to succeed.
All of the conditions in the array must be met. In other words, all of the conditions must be combined using a logical AND operation.