interface ActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataBrew.CfnRecipePropsMixin.ActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatabrew#CfnRecipePropsMixin_ActionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.databrew.CfnRecipePropsMixin.ActionProperty |
Python | aws_cdk.cfn_property_mixins.aws_databrew.CfnRecipePropsMixin.ActionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_databrew » CfnRecipePropsMixin » 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/cfn-property-mixins';
const actionProperty: databrew.CfnRecipePropsMixin.ActionProperty = {
operation: 'operation',
parameters: {
parametersKey: 'parameters',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| operation? | string | The name of a valid DataBrew transformation to be performed on the data. |
| parameters? | { [string]: string } | IResolvable | Contextual parameters for the transformation. |
operation?
Type:
string
(optional)
The name of a valid DataBrew transformation to be performed on the data.
parameters?
Type:
{ [string]: string } | IResolvable
(optional)
Contextual parameters for the transformation.

.NET
Go
Java
Python
TypeScript