CfnRecipeMixinProps

class aws_cdk.mixins_preview.aws_databrew.mixins.CfnRecipeMixinProps(*, description=None, name=None, steps=None, tags=None)

Bases: object

Properties for CfnRecipePropsMixin.

Parameters:
  • description (Optional[str]) – The description of the recipe.

  • name (Optional[str]) – The unique name for the recipe.

  • steps (Union[IResolvable, Sequence[Union[IResolvable, RecipeStepProperty, Dict[str, Any]]], None]) – A list of steps that are defined by the recipe.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – Metadata tags that have been applied to the recipe.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-recipe.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_databrew import mixins as databrew_mixins

cfn_recipe_mixin_props = databrew_mixins.CfnRecipeMixinProps(
    description="description",
    name="name",
    steps=[databrew_mixins.CfnRecipePropsMixin.RecipeStepProperty(
        action=databrew_mixins.CfnRecipePropsMixin.ActionProperty(
            operation="operation",
            parameters={
                "parameters_key": "parameters"
            }
        ),
        condition_expressions=[databrew_mixins.CfnRecipePropsMixin.ConditionExpressionProperty(
            condition="condition",
            target_column="targetColumn",
            value="value"
        )]
    )],
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

description

The description of the recipe.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-recipe.html#cfn-databrew-recipe-description

name

The unique name for the recipe.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-recipe.html#cfn-databrew-recipe-name

steps

A list of steps that are defined by the recipe.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-recipe.html#cfn-databrew-recipe-steps

tags

Metadata tags that have been applied to the recipe.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-recipe.html#cfn-databrew-recipe-tags