Interface CfnEventTrigger.EventTriggerConditionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEventTrigger.EventTriggerConditionProperty.Jsii$Proxy
- Enclosing class:
CfnEventTrigger
@Stability(Stable)
public static interface CfnEventTrigger.EventTriggerConditionProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the circumstances under which the event should trigger the destination.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.customerprofiles.*;
EventTriggerConditionProperty eventTriggerConditionProperty = EventTriggerConditionProperty.builder()
.eventTriggerDimensions(List.of(EventTriggerDimensionProperty.builder()
.objectAttributes(List.of(ObjectAttributeProperty.builder()
.comparisonOperator("comparisonOperator")
.values(List.of("values"))
// the properties below are optional
.fieldName("fieldName")
.source("source")
.build()))
.build()))
.logicalOperator("logicalOperator")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEventTrigger.EventTriggerConditionPropertystatic final classAn implementation forCfnEventTrigger.EventTriggerConditionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()A list of dimensions to be evaluated for the event.The operator used to combine multiple dimensions.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEventTriggerDimensions
A list of dimensions to be evaluated for the event.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnEventTrigger.EventTriggerDimensionProperty>- See Also:
-
getLogicalOperator
The operator used to combine multiple dimensions.- See Also:
-
builder
-