Class: Aws::PinpointSMSVoiceV2::Types::MessagingLimits
- Inherits:
-
Struct
- Object
- Struct
- Aws::PinpointSMSVoiceV2::Types::MessagingLimits
- Defined in:
- gems/aws-sdk-pinpointsmsvoicev2/lib/aws-sdk-pinpointsmsvoicev2/types.rb
Overview
The messaging limits that apply to an origination identity, such as a phone number, sender ID, or RCS agent. Includes the per-capability send rates and, for supported origination identities, advisory per-provider daily message caps.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#daily_message_caps ⇒ Hash<String,Integer>
The advisory maximum number of messages that can be sent per day, keyed by provider (for example,
T-MOBILE). -
#rate_limits ⇒ Hash<String,Integer>
The maximum send rate for each supported capability, in messages per second.
Instance Attribute Details
#daily_message_caps ⇒ Hash<String,Integer>
The advisory maximum number of messages that can be sent per day,
keyed by provider (for example, T-MOBILE). Applies to 10DLC phone
numbers and is omitted when no daily cap applies.
4950 4951 4952 4953 4954 4955 |
# File 'gems/aws-sdk-pinpointsmsvoicev2/lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 4950 class MessagingLimits < Struct.new( :rate_limits, :daily_message_caps) SENSITIVE = [] include Aws::Structure end |
#rate_limits ⇒ Hash<String,Integer>
The maximum send rate for each supported capability, in messages per
second. The map is keyed by capability, such as SMS, MMS,
VOICE, or RCS.
4950 4951 4952 4953 4954 4955 |
# File 'gems/aws-sdk-pinpointsmsvoicev2/lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 4950 class MessagingLimits < Struct.new( :rate_limits, :daily_message_caps) SENSITIVE = [] include Aws::Structure end |