interface EventTriggerLimitsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CustomerProfiles.CfnEventTriggerPropsMixin.EventTriggerLimitsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscustomerprofiles#CfnEventTriggerPropsMixin_EventTriggerLimitsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.CfnEventTriggerPropsMixin.EventTriggerLimitsProperty |
Python | aws_cdk.cfn_property_mixins.aws_customerprofiles.CfnEventTriggerPropsMixin.EventTriggerLimitsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_customerprofiles » CfnEventTriggerPropsMixin » EventTriggerLimitsProperty |
Defines limits controlling whether an event triggers the destination, based on ingestion latency and the number of invocations per profile over specific time periods.
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/cfn-property-mixins';
const eventTriggerLimitsProperty: customerprofiles.CfnEventTriggerPropsMixin.EventTriggerLimitsProperty = {
eventExpiration: 123,
periods: [{
maxInvocationsPerProfile: 123,
unit: 'unit',
unlimited: false,
value: 123,
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| event | number | Specifies that an event will only trigger the destination if it is processed within a certain latency period. |
| periods? | IResolvable | (IResolvable | Period)[] | A list of time periods during which the limits apply. |
eventExpiration?
Type:
number
(optional)
Specifies that an event will only trigger the destination if it is processed within a certain latency period.
periods?
Type:
IResolvable | (IResolvable | Period)[]
(optional)
A list of time periods during which the limits apply.

.NET
Go
Java
Python
TypeScript