CfnRecipeProps
- class aws_cdk.aws_databrew.CfnRecipeProps(*, name, steps, description=None, tags=None)
Bases:
object
Properties for defining a
CfnRecipe
.- Parameters:
name (
str
) – The unique name for the recipe.steps (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,RecipeStepProperty
,Dict
[str
,Any
]]]]) – A list of steps that are defined by the recipe.description (
Optional
[str
]) – The description of 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 import aws_databrew as databrew cfn_recipe_props = databrew.CfnRecipeProps( name="name", steps=[databrew.CfnRecipe.RecipeStepProperty( action=databrew.CfnRecipe.ActionProperty( operation="operation", # the properties below are optional parameters={ "parameters_key": "parameters" } ), # the properties below are optional condition_expressions=[databrew.CfnRecipe.ConditionExpressionProperty( condition="condition", target_column="targetColumn", # the properties below are optional value="value" )] )], # the properties below are optional description="description", tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
The description of the recipe.
- name
The unique name for the recipe.
- steps
A list of steps that are defined by the recipe.
- tags
Metadata tags that have been applied to the recipe.