Skip to main content

account_limits

Creates, updates, deletes, gets or lists an account_limits resource.

Overview

Nameaccount_limits
TypeResource
Idaws.pinpoint_sms_voice_v2.account_limits

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
maxinteger (int64)The Amazon Web Services set limit for that resource type, in US dollars.
namestringThe name of the attribute to apply the account limit to. (PHONE_NUMBERS, POOLS, CONFIGURATION_SETS, OPT_OUT_LISTS, SENDER_IDS, REGISTRATIONS, REGISTRATION_ATTACHMENTS, VERIFIED_DESTINATION_NUMBERS)
usedinteger (int64)The current amount that has been spent, in US dollars.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_account_limitsselectregionDescribes the current End User Messaging SMS SMS Voice V2 resource quotas for your account. The description for a quota includes the quota name, current usage toward that quota, and the quota's maximum value. When you establish an Amazon Web Services account, the account has initial quotas on the maximum number of configuration sets, opt-out lists, phone numbers, and pools that you can create in a given Region. For more information 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)

SELECT examples

Describes the current End User Messaging SMS SMS Voice V2 resource quotas for your account. The description for a quota includes the quota name, current usage toward that quota, and the quota's maximum value. When you establish an Amazon Web Services account, the account has initial quotas on the maximum number of configuration sets, opt-out lists, phone numbers, and pools that you can create in a given Region. For more information see Quotas in the End User Messaging SMS User Guide.

SELECT
max,
name,
used
FROM aws.pinpoint_sms_voice_v2.account_limits
WHERE region = '{{ region }}' -- required
;