interface CfnEventTriggerMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnEventTriggerMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnEventTriggerMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnEventTriggerMixinProps |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnEventTriggerMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnEventTriggerMixinProps |
Properties for CfnEventTriggerPropsMixin.
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 cfnEventTriggerMixinProps: customerprofiles_mixins.CfnEventTriggerMixinProps = {
description: 'description',
domainName: 'domainName',
eventTriggerConditions: [{
eventTriggerDimensions: [{
objectAttributes: [{
comparisonOperator: 'comparisonOperator',
fieldName: 'fieldName',
source: 'source',
values: ['values'],
}],
}],
logicalOperator: 'logicalOperator',
}],
eventTriggerLimits: {
eventExpiration: 123,
periods: [{
maxInvocationsPerProfile: 123,
unit: 'unit',
unlimited: false,
value: 123,
}],
},
eventTriggerName: 'eventTriggerName',
objectTypeName: 'objectTypeName',
segmentFilter: 'segmentFilter',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the event trigger. |
| 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 | 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. |
| event | string | The unique name of the event trigger. |
| object | string | The unique name of the object type. |
| 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. |
description?
Type:
string
(optional)
The description of the event trigger.
domainName?
Type:
string
(optional)
The unique name of the domain.
eventTriggerConditions?
Type:
IResolvable | (IResolvable | Event)[]
(optional)
A list of conditions that determine when an event should trigger the destination.
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.
eventTriggerName?
Type:
string
(optional)
The unique name of the event trigger.
objectTypeName?
Type:
string
(optional)
The unique name of the object type.
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