Interface CfnCampaign.ILimitsProperty
Specifies the limits on the messages that a campaign can send.
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnCampaign.ILimitsProperty
Syntax (vb)
Public Interface CfnCampaign.ILimitsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Pinpoint;
var limitsProperty = new LimitsProperty {
Daily = 123,
MaximumDuration = 123,
MessagesPerSecond = 123,
Session = 123,
Total = 123
};
Synopsis
Properties
| Daily | The maximum number of messages that a campaign can send to a single endpoint during a 24-hour period. |
| MaximumDuration | The maximum amount of time, in seconds, that a campaign can attempt to deliver a message after the scheduled start time for the campaign. |
| MessagesPerSecond | The maximum number of messages that a campaign can send each second. |
| Session | The maximum number of messages that the campaign can send per user session. |
| Total | The maximum number of messages that a campaign can send to a single endpoint during the course of the campaign. |
Properties
Daily
The maximum number of messages that a campaign can send to a single endpoint during a 24-hour period.
double? Daily { get; }
Property Value
Remarks
MaximumDuration
The maximum amount of time, in seconds, that a campaign can attempt to deliver a message after the scheduled start time for the campaign.
double? MaximumDuration { get; }
Property Value
Remarks
The minimum value is 60 seconds.
MessagesPerSecond
The maximum number of messages that a campaign can send each second.
double? MessagesPerSecond { get; }
Property Value
Remarks
The minimum value is 1. The maximum value is 20,000.
Session
The maximum number of messages that the campaign can send per user session.
double? Session { get; }
Property Value
Remarks
Total
The maximum number of messages that a campaign can send to a single endpoint during the course of the campaign.
double? Total { get; }