interface EventTriggerLimitsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnEventTriggerPropsMixin.EventTriggerLimitsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnEventTriggerPropsMixin_EventTriggerLimitsProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnEventTriggerPropsMixin.EventTriggerLimitsProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnEventTriggerPropsMixin.EventTriggerLimitsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » 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 { mixins as customerprofiles_mixins } from '@aws-cdk/mixins-preview/aws-customerprofiles';
const eventTriggerLimitsProperty: customerprofiles_mixins.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