Show / Hide Table of Contents

Class CfnApplicationSettings.LimitsProperty

Specifies the default sending limits for campaigns in the application.

Inheritance
object
CfnApplicationSettings.LimitsProperty
Implements
CfnApplicationSettings.ILimitsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnApplicationSettings.LimitsProperty : CfnApplicationSettings.ILimitsProperty
Syntax (vb)
Public Class CfnApplicationSettings.LimitsProperty Implements CfnApplicationSettings.ILimitsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-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,
                 Total = 123
             };

Synopsis

Constructors

LimitsProperty()

Specifies the default sending limits for campaigns in the application.

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()

Specifies the default sending limits for campaigns in the application.

public LimitsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-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,
                 Total = 123
             };

Properties

Daily

The maximum number of messages that a campaign can send to a single endpoint during a 24-hour period.

public double? Daily { get; set; }
Property Value

double?

Remarks

The maximum value is 100.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-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.

public double? MaximumDuration { get; set; }
Property Value

double?

Remarks

The minimum value is 60 seconds.

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

MessagesPerSecond

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

public double? MessagesPerSecond { get; set; }
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-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-limits-messagespersecond

Total

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

public double? Total { get; set; }
Property Value

double?

Remarks

The maximum value is 100.

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

Implements

CfnApplicationSettings.ILimitsProperty
Back to top Generated by DocFX