Interface CfnCampaign.LimitsProperty

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

@Stability(Stable) public static interface CfnCampaign.LimitsProperty extends software.amazon.jsii.JsiiSerializable
Specifies the limits on the messages that a campaign can send.

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)
         .session(123)
         .total(123)
         .build();
 

See Also: