Interface ICfnRecipeProps
Properties for defining a CfnRecipe
.
Namespace: Amazon.CDK.AWS.DataBrew
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnRecipeProps
Syntax (vb)
Public Interface ICfnRecipeProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-recipe.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DataBrew;
var cfnRecipeProps = new CfnRecipeProps {
Name = "name",
Steps = new [] { new RecipeStepProperty {
Action = new ActionProperty {
Operation = "operation",
// the properties below are optional
Parameters = new Dictionary<string, string> {
{ "parametersKey", "parameters" }
}
},
// the properties below are optional
ConditionExpressions = new [] { new ConditionExpressionProperty {
Condition = "condition",
TargetColumn = "targetColumn",
// the properties below are optional
Value = "value"
} }
} },
// the properties below are optional
Description = "description",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
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. |
Properties
Description
The description of the recipe.
virtual string Description { get; }
Property Value
System.
Remarks
Name
The unique name for the recipe.
string Name { get; }
Property Value
System.
Remarks
Steps
A list of steps that are defined by the recipe.
object Steps { get; }
Property Value
System.
Remarks
Tags
Metadata tags that have been applied to the recipe.
virtual ICfnTag[] Tags { get; }
Property Value
ICfn