Skip to main content

voice_message_spend_limit_overrides

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

Overview

Namevoice_message_spend_limit_overrides
TypeResource
Idaws.pinpoint_sms_voice_v2.voice_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_voice_message_spend_limit_overrideupdateregion, MonthlyLimitSets an account level monthly spend limit override for sending voice messages. The requested spend limit must be less than or equal to the MaxLimit, which is set by Amazon Web Services.
delete_voice_message_spend_limit_overridedeleteregionDeletes an account level monthly spend limit override for sending voice messages. Deleting a spend limit override sets the EnforcedLimit equal to the MaxLimit, which is controlled by Amazon Web Services. For more information on spending 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 voice 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.voice_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 spend limit override for sending voice messages. Deleting a spend limit override sets the EnforcedLimit equal to the MaxLimit, which is controlled by Amazon Web Services. For more information on spending limits (quotas) see Quotas in the End User Messaging SMS User Guide.

DELETE FROM aws.pinpoint_sms_voice_v2.voice_message_spend_limit_overrides
WHERE region = '{{ region }}' --required
;