interface ActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins.CfnRecipePropsMixin.ActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatabrew/mixins#CfnRecipePropsMixin_ActionProperty |
Java | software.amazon.awscdk.mixins.preview.services.databrew.mixins.CfnRecipePropsMixin.ActionProperty |
Python | aws_cdk.mixins_preview.aws_databrew.mixins.CfnRecipePropsMixin.ActionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_databrew » mixins » 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 { mixins as databrew_mixins } from '@aws-cdk/mixins-preview/aws-databrew';
const actionProperty: databrew_mixins.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