Show / Hide Table of Contents

Class CfnTrigger.PredicateProperty

Defines the predicate of the trigger, which determines when it fires.

Inheritance
System.Object
CfnTrigger.PredicateProperty
Implements
CfnTrigger.IPredicateProperty
Namespace: Amazon.CDK.AWS.Glue
Assembly: Amazon.CDK.AWS.Glue.dll
Syntax (csharp)
public class PredicateProperty : Object, CfnTrigger.IPredicateProperty
Syntax (vb)
Public Class PredicateProperty
    Inherits Object
    Implements CfnTrigger.IPredicateProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-predicate.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.Glue;

var predicateProperty = new PredicateProperty {
    Conditions = new [] { new ConditionProperty {
        CrawlerName = "crawlerName",
        CrawlState = "crawlState",
        JobName = "jobName",
        LogicalOperator = "logicalOperator",
        State = "state"
    } },
    Logical = "logical"
};

Synopsis

Constructors

PredicateProperty()

Properties

Conditions

A list of the conditions that determine when the trigger will fire.

Logical

An optional field if only one condition is listed.

Constructors

PredicateProperty()

public PredicateProperty()

Properties

Conditions

A list of the conditions that determine when the trigger will fire.

public object Conditions { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-predicate.html#cfn-glue-trigger-predicate-conditions

Logical

An optional field if only one condition is listed.

public string Logical { get; set; }
Property Value

System.String

Remarks

If multiple conditions are listed, then this field is required.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-predicate.html#cfn-glue-trigger-predicate-logical

Implements

CfnTrigger.IPredicateProperty
Back to top Generated by DocFX