aws-cdk-lib.aws_databrew.CfnRecipe.ActionProperty

interface ActionProperty

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

Represents a transformation and associated parameters that are used to apply a change to an AWS Glue 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-lib';
const actionProperty: databrew.CfnRecipe.ActionProperty = {
  operation: 'operation',

  // the properties below are optional
  parameters: {
    parametersKey: 'parameters',
  },
};

Properties

NameTypeDescription
operationstringThe name of a valid DataBrew transformation to be performed on the data.
parameters?IResolvable | { [string]: string }Contextual parameters for the transformation.

operation

Type: string

The name of a valid DataBrew transformation to be performed on the data.


parameters?

Type: IResolvable | { [string]: string } (optional)

Contextual parameters for the transformation.