interface EventTriggerConditionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CustomerProfiles.CfnEventTrigger.EventTriggerConditionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnEventTrigger_EventTriggerConditionProperty |
Java | software.amazon.awscdk.services.customerprofiles.CfnEventTrigger.EventTriggerConditionProperty |
Python | aws_cdk.aws_customerprofiles.CfnEventTrigger.EventTriggerConditionProperty |
TypeScript | aws-cdk-lib » aws_customerprofiles » CfnEventTrigger » EventTriggerConditionProperty |
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 { aws_customerprofiles as customerprofiles } from 'aws-cdk-lib';
const eventTriggerConditionProperty: customerprofiles.CfnEventTrigger.EventTriggerConditionProperty = {
eventTriggerDimensions: [{
objectAttributes: [{
comparisonOperator: 'comparisonOperator',
values: ['values'],
// the properties below are optional
fieldName: 'fieldName',
source: 'source',
}],
}],
logicalOperator: 'logicalOperator',
};
Properties
| Name | Type | Description |
|---|---|---|
| event | IResolvable | (IResolvable | Event)[] | A list of dimensions to be evaluated for the event. |
| logical | string | The operator used to combine multiple dimensions. |
eventTriggerDimensions
Type:
IResolvable | (IResolvable | Event)[]
A list of dimensions to be evaluated for the event.
logicalOperator
Type:
string
The operator used to combine multiple dimensions.

.NET
Go
Java
Python
TypeScript