Interface CfnEventTriggerPropsMixin.PeriodProperty

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

@Stability(Stable) public static interface CfnEventTriggerPropsMixin.PeriodProperty extends software.amazon.jsii.JsiiSerializable
Defines a limit and the time period during which it is enforced.

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.*;
 PeriodProperty periodProperty = PeriodProperty.builder()
         .maxInvocationsPerProfile(123)
         .unit("unit")
         .unlimited(false)
         .value(123)
         .build();
 

See Also: