Skip to main content

notify_message_spend_limit_overrides

Creates, updates, deletes, gets or lists a notify_message_spend_limit_overrides resource.

Overview

Namenotify_message_spend_limit_overrides
TypeResource
Idaws.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:

NameAccessible byRequired ParamsOptional ParamsDescription
set_notify_message_spend_limit_overrideupdateregion, MonthlyLimitSets 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_overridedeleteregionDeletes 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

UPDATE examples

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

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
;