interface RecipeStepProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins.CfnRecipePropsMixin.RecipeStepProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatabrew/mixins#CfnRecipePropsMixin_RecipeStepProperty |
Java | software.amazon.awscdk.mixins.preview.services.databrew.mixins.CfnRecipePropsMixin.RecipeStepProperty |
Python | aws_cdk.mixins_preview.aws_databrew.mixins.CfnRecipePropsMixin.RecipeStepProperty |
TypeScript | @aws-cdk/mixins-preview » aws_databrew » mixins » CfnRecipePropsMixin » 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 { mixins as databrew_mixins } from '@aws-cdk/mixins-preview/aws-databrew';
const recipeStepProperty: databrew_mixins.CfnRecipePropsMixin.RecipeStepProperty = {
action: {
operation: 'operation',
parameters: {
parametersKey: 'parameters',
},
},
conditionExpressions: [{
condition: 'condition',
targetColumn: 'targetColumn',
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
(optional)
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.

.NET
Go
Java
Python
TypeScript