Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html

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

double?

Remarks

The maximum value is 100.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-daily

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

double?

Remarks

The minimum value is 60 seconds.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-maximumduration

MessagesPerSecond

The maximum number of messages that a campaign can send each second.

double? MessagesPerSecond { get; }
Property Value

double?

Remarks

The minimum value is 1. The maximum value is 20,000.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-messagespersecond

Session

The maximum number of messages that the campaign can send per user session.

double? Session { get; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-session

Total

The maximum number of messages that a campaign can send to a single endpoint during the course of the campaign.

double? Total { get; }
Property Value

double?

Remarks

The maximum value is 100.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-total

Back to top Generated by DocFX