aws-cdk-lib.aws_databrew.CfnRecipeProps

interface CfnRecipeProps

LanguageType name
.NETAmazon.CDK.AWS.DataBrew.CfnRecipeProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdatabrew#CfnRecipeProps
Javasoftware.amazon.awscdk.services.databrew.CfnRecipeProps
Pythonaws_cdk.aws_databrew.CfnRecipeProps
TypeScript aws-cdk-lib » aws_databrew » CfnRecipeProps

Properties for defining a CfnRecipe.

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 cfnRecipeProps: databrew.CfnRecipeProps = {
  name: 'name',
  steps: [{
    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',
    }],
  }],

  // the properties below are optional
  description: 'description',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
namestringThe unique name for the recipe.
stepsIResolvable | IResolvable | RecipeStepProperty[]A list of steps that are defined by the recipe.
description?stringThe description of the recipe.
tags?CfnTag[]Metadata tags that have been applied to the recipe.

name

Type: string

The unique name for the recipe.


steps

Type: IResolvable | IResolvable | RecipeStepProperty[]

A list of steps that are defined by the recipe.


description?

Type: string (optional)

The description of the recipe.


tags?

Type: CfnTag[] (optional)

Metadata tags that have been applied to the recipe.