Show / Hide Table of Contents

Interface CfnEventTrigger.IEventTriggerConditionProperty

Specifies the circumstances under which the event should trigger the destination.

Namespace: Amazon.CDK.AWS.CustomerProfiles
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnEventTrigger.IEventTriggerConditionProperty
Syntax (vb)
Public Interface CfnEventTrigger.IEventTriggerConditionProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-eventtrigger-eventtriggercondition.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.CustomerProfiles;

             var eventTriggerConditionProperty = new EventTriggerConditionProperty {
                 EventTriggerDimensions = new [] { new EventTriggerDimensionProperty {
                     ObjectAttributes = new [] { new ObjectAttributeProperty {
                         ComparisonOperator = "comparisonOperator",
                         Values = new [] { "values" },

                         // the properties below are optional
                         FieldName = "fieldName",
                         Source = "source"
                     } }
                 } },
                 LogicalOperator = "logicalOperator"
             };

Synopsis

Properties

EventTriggerDimensions

A list of dimensions to be evaluated for the event.

LogicalOperator

The operator used to combine multiple dimensions.

Properties

EventTriggerDimensions

A list of dimensions to be evaluated for the event.

object EventTriggerDimensions { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-eventtrigger-eventtriggercondition.html#cfn-customerprofiles-eventtrigger-eventtriggercondition-eventtriggerdimensions

Type union: either IResolvable or (either IResolvable or CfnEventTrigger.IEventTriggerDimensionProperty)[]

LogicalOperator

The operator used to combine multiple dimensions.

string LogicalOperator { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-eventtrigger-eventtriggercondition.html#cfn-customerprofiles-eventtrigger-eventtriggercondition-logicaloperator

Back to top Generated by DocFX