Interface CfnEventTriggerPropsMixin.EventTriggerLimitsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEventTriggerPropsMixin.EventTriggerLimitsProperty.Jsii$Proxy
Enclosing class:
CfnEventTriggerPropsMixin

@Stability(Stable) public static interface CfnEventTriggerPropsMixin.EventTriggerLimitsProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.*;
 EventTriggerLimitsProperty eventTriggerLimitsProperty = EventTriggerLimitsProperty.builder()
         .eventExpiration(123)
         .periods(List.of(PeriodProperty.builder()
                 .maxInvocationsPerProfile(123)
                 .unit("unit")
                 .unlimited(false)
                 .value(123)
                 .build()))
         .build();
 

See Also: