Class: Aws::Pinpoint::Types::JourneyLimits
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::JourneyLimits
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
When making an API call, you may pass JourneyLimits data as a hash:
{
daily_cap: 1,
endpoint_reentry_cap: 1,
messages_per_second: 1,
}
Specifies limits on the messages that a journey can send and the number of times participants can enter a journey.
Instance Attribute Summary collapse
-
#daily_cap ⇒ Integer
The maximum number of messages that the journey can send to a single participant during a 24-hour period.
-
#endpoint_reentry_cap ⇒ Integer
The maximum number of times that a participant can enter the journey.
-
#messages_per_second ⇒ Integer
The maximum number of messages that the journey can send each second.
Instance Attribute Details
#daily_cap ⇒ Integer
The maximum number of messages that the journey can send to a single participant during a 24-hour period. The maximum value is 100.
10037 10038 10039 10040 10041 10042 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 10037 class JourneyLimits < Struct.new( :daily_cap, :endpoint_reentry_cap, :messages_per_second) include Aws::Structure end |
#endpoint_reentry_cap ⇒ Integer
The maximum number of times that a participant can enter the journey. The maximum value is 100. To allow participants to enter the journey an unlimited number of times, set this value to 0.
10037 10038 10039 10040 10041 10042 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 10037 class JourneyLimits < Struct.new( :daily_cap, :endpoint_reentry_cap, :messages_per_second) include Aws::Structure end |
#messages_per_second ⇒ Integer
The maximum number of messages that the journey can send each second.
10037 10038 10039 10040 10041 10042 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 10037 class JourneyLimits < Struct.new( :daily_cap, :endpoint_reentry_cap, :messages_per_second) include Aws::Structure end |