aws-cdk-lib.aws_pinpoint.CfnCampaign.LimitsProperty

interface LimitsProperty

LanguageType name
.NETAmazon.CDK.AWS.Pinpoint.CfnCampaign.LimitsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awspinpoint#CfnCampaign_LimitsProperty
Javasoftware.amazon.awscdk.services.pinpoint.CfnCampaign.LimitsProperty
Pythonaws_cdk.aws_pinpoint.CfnCampaign.LimitsProperty
TypeScript aws-cdk-lib » aws_pinpoint » CfnCampaign » LimitsProperty

Specifies the limits on the messages that a campaign can send.

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.CfnCampaign.LimitsProperty = {
  daily: 123,
  maximumDuration: 123,
  messagesPerSecond: 123,
  session: 123,
  total: 123,
};

Properties

NameTypeDescription
daily?numberThe maximum number of messages that a campaign can send to a single endpoint during a 24-hour period.
maximumDuration?numberThe maximum amount of time, in seconds, that a campaign can attempt to deliver a message after the scheduled start time for the campaign.
messagesPerSecond?numberThe maximum number of messages that a campaign can send each second.
session?numberThe maximum number of messages that the campaign can send per user session.
total?numberThe 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.


session?

Type: number (optional)

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


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.