notify_message_spend_limit_overrides
Creates, updates, deletes, gets or lists a notify_message_spend_limit_overrides resource.
Overview
| Name | notify_message_spend_limit_overrides |
| Type | Resource |
| Id | aws.pinpoint_sms_voice_v2.notify_message_spend_limit_overrides |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
set_notify_message_spend_limit_override | update | region, MonthlyLimit | Sets an account level monthly spend limit override for sending notify messages. The requested spend limit must be less than or equal to the MaxLimit, which is set by Amazon Web Services. | |
delete_notify_message_spend_limit_override | delete | region | Deletes an account-level monthly spending limit override for sending notify messages. Deleting a spend limit override will set the EnforcedLimit to equal the MaxLimit, which is controlled by Amazon Web Services. For more information on spend limits (quotas) see Quotas in the End User Messaging SMS User Guide. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
UPDATE examples
- set_notify_message_spend_limit_override
Sets an account level monthly spend limit override for sending notify messages. The requested spend limit must be less than or equal to the MaxLimit, which is set by Amazon Web Services.
UPDATE aws.pinpoint_sms_voice_v2.notify_message_spend_limit_overrides
SET
MonthlyLimit = {{ MonthlyLimit }}
WHERE
region = '{{ region }}' --required
AND MonthlyLimit = '{{ MonthlyLimit }}' --required
RETURNING
monthly_limit;
DELETE examples
- delete_notify_message_spend_limit_override
Deletes an account-level monthly spending limit override for sending notify messages. Deleting a spend limit override will set the EnforcedLimit to equal the MaxLimit, which is controlled by Amazon Web Services. For more information on spend limits (quotas) see Quotas in the End User Messaging SMS User Guide.
DELETE FROM aws.pinpoint_sms_voice_v2.notify_message_spend_limit_overrides
WHERE region = '{{ region }}' --required
;