Show / Hide Table of Contents

Interface CfnRecipe.IConditionExpressionProperty

Represents an individual condition that evaluates to true or false.

Namespace: Amazon.CDK.AWS.DataBrew
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnRecipe.IConditionExpressionProperty
Syntax (vb)
Public Interface CfnRecipe.IConditionExpressionProperty
Remarks

Conditions are used with recipe actions. The action is only performed for column values where the condition evaluates to true.

If a recipe requires more than one condition, then the recipe must specify multiple ConditionExpression elements. Each condition is applied to the rows in a dataset first, before the recipe action is performed.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-recipe-conditionexpression.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 conditionExpressionProperty = new ConditionExpressionProperty {
                 Condition = "condition",
                 TargetColumn = "targetColumn",

                 // the properties below are optional
                 Value = "value"
             };

Synopsis

Properties

Condition

A specific condition to apply to a recipe action.

TargetColumn

A column to apply this condition to.

Value

A value that the condition must evaluate to for the condition to succeed.

Properties

Condition

A specific condition to apply to a recipe action.

string Condition { get; }
Property Value

string

Remarks

For more information, see Recipe structure in the AWS Glue DataBrew Developer Guide .

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

TargetColumn

A column to apply this condition to.

string TargetColumn { get; }
Property Value

string

Remarks

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

Value

A value that the condition must evaluate to for the condition to succeed.

string? Value { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX