interface LimitsProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Pinpoint.CfnApplicationSettings.LimitsProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awspinpoint#CfnApplicationSettings_LimitsProperty |
![]() | software.amazon.awscdk.services.pinpoint.CfnApplicationSettings.LimitsProperty |
![]() | aws_cdk.aws_pinpoint.CfnApplicationSettings.LimitsProperty |
![]() | aws-cdk-lib » aws_pinpoint » CfnApplicationSettings » 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 { aws_pinpoint as pinpoint } from 'aws-cdk-lib';
const limitsProperty: pinpoint.CfnApplicationSettings.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.