public static interface CfnApplicationSettings.LimitsProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnApplicationSettings.LimitsProperty.Builder
A builder for
CfnApplicationSettings.LimitsProperty |
static class |
CfnApplicationSettings.LimitsProperty.Jsii$Proxy
An implementation for
CfnApplicationSettings.LimitsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnApplicationSettings.LimitsProperty.Builder |
builder() |
default java.lang.Number |
getDaily()
The maximum number of messages that a campaign can send to a single endpoint during a 24-hour period.
|
default java.lang.Number |
getMaximumDuration()
The maximum amount of time, in seconds, that a campaign can attempt to deliver a message after the scheduled start time for the campaign.
|
default java.lang.Number |
getMessagesPerSecond()
The maximum number of messages that a campaign can send each second.
|
default java.lang.Number |
getTotal()
The maximum number of messages that a campaign can send to a single endpoint during the course of the campaign.
|
default java.lang.Number getDaily()
The maximum value is 100.
default java.lang.Number getMaximumDuration()
The minimum value is 60 seconds.
default java.lang.Number getMessagesPerSecond()
The minimum value is 1. The maximum value is 20,000.
default java.lang.Number getTotal()
The maximum value is 100.
static CfnApplicationSettings.LimitsProperty.Builder builder()