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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEventTriggerPropsMixin.EventTriggerLimitsPropertystatic final classAn implementation forCfnEventTriggerPropsMixin.EventTriggerLimitsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEventExpiration
Specifies that an event will only trigger the destination if it is processed within a certain latency period.- See Also:
-
getPeriods
A list of time periods during which the limits apply.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnEventTriggerPropsMixin.PeriodProperty>- See Also:
-
builder
-