Class: Aws::Pinpoint::Types::CampaignLimits
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::CampaignLimits
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass CampaignLimits data as a hash:
{
daily: 1,
total: 1,
}
Campaign Limits are used to limit the number of messages that can be sent to a user.
Instance Attribute Summary collapse
-
#daily ⇒ Integer
The maximum number of messages that the campaign can send daily.
-
#total ⇒ Integer
The maximum total number of messages that the campaign can send.
Instance Attribute Details
#daily ⇒ Integer
The maximum number of messages that the campaign can send daily.
573 574 575 576 577 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 573 class CampaignLimits < Struct.new( :daily, :total) include Aws::Structure end |
#total ⇒ Integer
The maximum total number of messages that the campaign can send.
573 574 575 576 577 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 573 class CampaignLimits < Struct.new( :daily, :total) include Aws::Structure end |