aws-cdk-lib.aws_databrew.CfnRecipe.RecipeStepProperty

interface RecipeStepProperty

LanguageType name
.NETAmazon.CDK.AWS.DataBrew.CfnRecipe.RecipeStepProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdatabrew#CfnRecipe_RecipeStepProperty
Javasoftware.amazon.awscdk.services.databrew.CfnRecipe.RecipeStepProperty
Pythonaws_cdk.aws_databrew.CfnRecipe.RecipeStepProperty
TypeScript 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

NameTypeDescription
actionIResolvable | ActionPropertyThe particular action to be performed in the recipe step.
conditionExpressions?IResolvable | IResolvable | ConditionExpressionProperty[]One or more conditions that must be met for the recipe step to succeed.

action

Type: IResolvable | ActionProperty

The particular action to be performed in the recipe step.


conditionExpressions?

Type: IResolvable | IResolvable | ConditionExpressionProperty[] (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.