Interface CfnRecipePropsMixin.ActionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRecipePropsMixin.ActionProperty.Jsii$Proxy
- Enclosing class:
CfnRecipePropsMixin
@Stability(Stable)
public static interface CfnRecipePropsMixin.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.cfnpropertymixins.services.databrew.*;
ActionProperty actionProperty = ActionProperty.builder()
.operation("operation")
.parameters(Map.of(
"parametersKey", "parameters"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRecipePropsMixin.ActionPropertystatic final classAn implementation forCfnRecipePropsMixin.ActionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOperation
The name of a valid DataBrew transformation to be performed on the data.- See Also:
-
getParameters
Contextual parameters for the transformation.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
builder
-