Interface CfnRecipeMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRecipeMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.816Z")
@Stability(Stable)
public interface CfnRecipeMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnRecipePropsMixin.
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.*;
CfnRecipeMixinProps cfnRecipeMixinProps = CfnRecipeMixinProps.builder()
.description("description")
.name("name")
.steps(List.of(RecipeStepProperty.builder()
.action(ActionProperty.builder()
.operation("operation")
.parameters(Map.of(
"parametersKey", "parameters"))
.build())
.conditionExpressions(List.of(ConditionExpressionProperty.builder()
.condition("condition")
.targetColumn("targetColumn")
.value("value")
.build()))
.build()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRecipeMixinPropsstatic final classAn implementation forCfnRecipeMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnRecipeMixinProps.Builderbuilder()default StringThe description of the recipe.default StringgetName()The unique name for the recipe.default ObjectgetSteps()A list of steps that are defined by the recipe.getTags()Metadata tags that have been applied to the recipe.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The description of the recipe.- See Also:
-
getName
The unique name for the recipe.- See Also:
-
getSteps
A list of steps that are defined by the recipe.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnRecipePropsMixin.RecipeStepProperty>- See Also:
-
getTags
Metadata tags that have been applied to the recipe.- See Also:
-
builder
- Returns:
- a
CfnRecipeMixinProps.BuilderofCfnRecipeMixinProps
-