Class CfnRecipe.RecipeStepProperty
Represents a single step from a DataBrew recipe to be performed.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.DataBrew
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class RecipeStepProperty : Object, CfnRecipe.IRecipeStepProperty
Syntax (vb)
Public Class RecipeStepProperty
Inherits Object
Implements CfnRecipe.IRecipeStepProperty
Remarks
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 recipeStepProperty = 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"
} }
};
Synopsis
Constructors
Recipe |
Properties
Action | The particular action to be performed in the recipe step. |
Condition |
One or more conditions that must be met for the recipe step to succeed. |
Constructors
RecipeStepProperty()
public RecipeStepProperty()
Properties
Action
The particular action to be performed in the recipe step.
public object Action { get; set; }
Property Value
System.
Remarks
ConditionExpressions
One or more conditions that must be met for the recipe step to succeed.
public object ConditionExpressions { get; set; }
Property Value
System.
Remarks
All of the conditions in the array must be met. In other words, all of the conditions must be combined using a logical AND operation.