Interface CfnApplicationSettings.LimitsProperty

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

@Stability(Stable) public static interface CfnApplicationSettings.LimitsProperty extends software.amazon.jsii.JsiiSerializable
Specifies the default sending limits for campaigns in the application.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.pinpoint.*;
 LimitsProperty limitsProperty = LimitsProperty.builder()
         .daily(123)
         .maximumDuration(123)
         .messagesPerSecond(123)
         .total(123)
         .build();
 

See Also: