Show / Hide Table of Contents

Class CfnRecipe.ConditionExpressionProperty

Represents an individual condition that evaluates to true or false.

Inheritance
object
CfnRecipe.ConditionExpressionProperty
Implements
CfnRecipe.IConditionExpressionProperty
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.ConditionExpressionProperty : CfnRecipe.IConditionExpressionProperty
Syntax (vb)
Public Class CfnRecipe.ConditionExpressionProperty Implements 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

Constructors

ConditionExpressionProperty()

Represents an individual condition that evaluates to true or false.

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.

Constructors

ConditionExpressionProperty()

Represents an individual condition that evaluates to true or false.

public ConditionExpressionProperty()
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"
             };

Properties

Condition

A specific condition to apply to a recipe action.

public string Condition { get; set; }
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.

public string TargetColumn { get; set; }
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.

public string? Value { get; set; }
Property Value

string

Remarks

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

Implements

CfnRecipe.IConditionExpressionProperty
Back to top Generated by DocFX