interface CfnEventTriggerProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CustomerProfiles.CfnEventTriggerProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnEventTriggerProps |
Java | software.amazon.awscdk.services.customerprofiles.CfnEventTriggerProps |
Python | aws_cdk.aws_customerprofiles.CfnEventTriggerProps |
TypeScript | aws-cdk-lib » aws_customerprofiles » CfnEventTriggerProps |
Properties for defining a CfnEventTrigger.
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 cfnEventTriggerProps: customerprofiles.CfnEventTriggerProps = {
domainName: 'domainName',
eventTriggerConditions: [{
eventTriggerDimensions: [{
objectAttributes: [{
comparisonOperator: 'comparisonOperator',
values: ['values'],
// the properties below are optional
fieldName: 'fieldName',
source: 'source',
}],
}],
logicalOperator: 'logicalOperator',
}],
eventTriggerName: 'eventTriggerName',
objectTypeName: 'objectTypeName',
// the properties below are optional
description: 'description',
eventTriggerLimits: {
eventExpiration: 123,
periods: [{
unit: 'unit',
value: 123,
// the properties below are optional
maxInvocationsPerProfile: 123,
unlimited: false,
}],
},
segmentFilter: 'segmentFilter',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The unique name of the domain. |
| event | IResolvable | (IResolvable | Event)[] | A list of conditions that determine when an event should trigger the destination. |
| event | string | The unique name of the event trigger. |
| object | string | The unique name of the object type. |
| description? | string | The description of the event trigger. |
| event | IResolvable | Event | Defines limits controlling whether an event triggers the destination, based on ingestion latency and the number of invocations per profile over specific time periods. |
| segment | string | The destination is triggered only for profiles that meet the criteria of a segment definition. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
domainName
Type:
string
The unique name of the domain.
eventTriggerConditions
Type:
IResolvable | (IResolvable | Event)[]
A list of conditions that determine when an event should trigger the destination.
eventTriggerName
Type:
string
The unique name of the event trigger.
objectTypeName
Type:
string
The unique name of the object type.
description?
Type:
string
(optional)
The description of the event trigger.
eventTriggerLimits?
Type:
IResolvable | Event
(optional)
Defines limits controlling whether an event triggers the destination, based on ingestion latency and the number of invocations per profile over specific time periods.
segmentFilter?
Type:
string
(optional)
The destination is triggered only for profiles that meet the criteria of a segment definition.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript