account_limits
Creates, updates, deletes, gets or lists an account_limits resource.
Overview
| Name | account_limits |
| Type | Resource |
| Id | aws.pinpoint_sms_voice_v2.account_limits |
Fields
The following fields are returned by SELECT queries:
- describe_account_limits
| Name | Datatype | Description |
|---|---|---|
max | integer (int64) | The Amazon Web Services set limit for that resource type, in US dollars. |
name | string | The 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) |
used | integer (int64) | The current amount that has been spent, in US dollars. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_account_limits | select | region | 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. |
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) |
SELECT examples
- describe_account_limits
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
;