Class CfnApplicationSettings.LimitsProperty
Specifies the default sending limits for campaigns in the application.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class LimitsProperty : Object, CfnApplicationSettings.ILimitsProperty
Syntax (vb)
Public Class LimitsProperty
Inherits Object
Implements CfnApplicationSettings.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,
Total = 123
};
Synopsis
Constructors
LimitsProperty() |
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. |
Total | The maximum number of messages that a campaign can send to a single endpoint during the course of the campaign. |
Constructors
LimitsProperty()
public LimitsProperty()
Properties
Daily
The maximum number of messages that a campaign can send to a single endpoint during a 24-hour period.
public Nullable<double> Daily { get; set; }
Property Value
System.Nullable<System.Double>
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.
public Nullable<double> MaximumDuration { get; set; }
Property Value
System.Nullable<System.Double>
Remarks
MessagesPerSecond
The maximum number of messages that a campaign can send each second.
public Nullable<double> MessagesPerSecond { get; set; }
Property Value
System.Nullable<System.Double>
Remarks
The minimum value is 1. The maximum value is 20,000.
Total
The maximum number of messages that a campaign can send to a single endpoint during the course of the campaign.
public Nullable<double> Total { get; set; }
Property Value
System.Nullable<System.Double>