interface EventTriggerConditionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnEventTriggerPropsMixin.EventTriggerConditionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnEventTriggerPropsMixin_EventTriggerConditionProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnEventTriggerPropsMixin.EventTriggerConditionProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnEventTriggerPropsMixin.EventTriggerConditionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnEventTriggerPropsMixin » 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 { mixins as customerprofiles_mixins } from '@aws-cdk/mixins-preview/aws-customerprofiles';
const eventTriggerConditionProperty: customerprofiles_mixins.CfnEventTriggerPropsMixin.EventTriggerConditionProperty = {
eventTriggerDimensions: [{
objectAttributes: [{
comparisonOperator: 'comparisonOperator',
fieldName: 'fieldName',
source: 'source',
values: ['values'],
}],
}],
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)[]
(optional)
A list of dimensions to be evaluated for the event.
logicalOperator?
Type:
string
(optional)
The operator used to combine multiple dimensions.

.NET
Go
Java
Python
TypeScript