interface LimitsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pinpoint.Mixins.CfnApplicationSettingsPropsMixin.LimitsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspinpoint/mixins#CfnApplicationSettingsPropsMixin_LimitsProperty |
Java | software.amazon.awscdk.mixins.preview.services.pinpoint.mixins.CfnApplicationSettingsPropsMixin.LimitsProperty |
Python | aws_cdk.mixins_preview.aws_pinpoint.mixins.CfnApplicationSettingsPropsMixin.LimitsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pinpoint » mixins » CfnApplicationSettingsPropsMixin » LimitsProperty |
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 { mixins as pinpoint_mixins } from '@aws-cdk/mixins-preview/aws-pinpoint';
const limitsProperty: pinpoint_mixins.CfnApplicationSettingsPropsMixin.LimitsProperty = {
daily: 123,
maximumDuration: 123,
messagesPerSecond: 123,
total: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| daily? | number | The maximum number of messages that a campaign can send to a single endpoint during a 24-hour period. |
| maximum | number | The maximum amount of time, in seconds, that a campaign can attempt to deliver a message after the scheduled start time for the campaign. |
| messages | number | The maximum number of messages that a campaign can send each second. |
| total? | number | The maximum number of messages that a campaign can send to a single endpoint during the course of the campaign. |
daily?
Type:
number
(optional)
The maximum number of messages that a campaign can send to a single endpoint during a 24-hour period.
The maximum value is 100.
maximumDuration?
Type:
number
(optional)
The maximum amount of time, in seconds, that a campaign can attempt to deliver a message after the scheduled start time for the campaign.
The minimum value is 60 seconds.
messagesPerSecond?
Type:
number
(optional)
The maximum number of messages that a campaign can send each second.
The minimum value is 1. The maximum value is 20,000.
total?
Type:
number
(optional)
The maximum number of messages that a campaign can send to a single endpoint during the course of the campaign.
The maximum value is 100.

.NET
Go
Java
Python
TypeScript