Interface CfnRecipe.ActionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRecipe.ActionProperty.Jsii$Proxy
Enclosing class:
CfnRecipe

@Stability(Stable) public static interface CfnRecipe.ActionProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.databrew.*;
 ActionProperty actionProperty = ActionProperty.builder()
         .operation("operation")
         // the properties below are optional
         .parameters(Map.of(
                 "parametersKey", "parameters"))
         .build();
 

See Also: