Show / Hide Table of Contents

Class CfnRecipe.RecipeStepProperty

Represents a single step from a DataBrew recipe to be performed.

Inheritance
object
CfnRecipe.RecipeStepProperty
Implements
CfnRecipe.IRecipeStepProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.DataBrew
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnRecipe.RecipeStepProperty : CfnRecipe.IRecipeStepProperty
Syntax (vb)
Public Class CfnRecipe.RecipeStepProperty Implements CfnRecipe.IRecipeStepProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-recipe-recipestep.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 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

RecipeStepProperty()

Represents a single step from a DataBrew recipe to be performed.

Properties

Action

The particular action to be performed in the recipe step.

ConditionExpressions

One or more conditions that must be met for the recipe step to succeed.

Constructors

RecipeStepProperty()

Represents a single step from a DataBrew recipe to be performed.

public RecipeStepProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-recipe-recipestep.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 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"
                 } }
             };

Properties

Action

The particular action to be performed in the recipe step.

public object Action { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-recipe-recipestep.html#cfn-databrew-recipe-recipestep-action

ConditionExpressions

One or more conditions that must be met for the recipe step to succeed.

public object? ConditionExpressions { get; set; }
Property Value

object

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-recipe-recipestep.html#cfn-databrew-recipe-recipestep-conditionexpressions

Implements

CfnRecipe.IRecipeStepProperty
Back to top Generated by DocFX