Skip to content

Describe Account Limits

pinpointsmsvoicev2_describe_account_limits R Documentation

Describes the current AWS End User Messaging SMS and Voice SMS Voice V2 resource quotas for your account

Description

Describes the current AWS End User Messaging SMS and Voice 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 AWS End User Messaging SMS User Guide.

Usage

pinpointsmsvoicev2_describe_account_limits(NextToken, MaxResults)

Arguments

NextToken

The token to be used for the next set of paginated results. You don't need to supply a value for this field in the initial request.

MaxResults

The maximum number of results to return per each request.

Value

A list with the following syntax:

list(
  AccountLimits = list(
    list(
      Name = "PHONE_NUMBERS"|"POOLS"|"CONFIGURATION_SETS"|"OPT_OUT_LISTS"|"SENDER_IDS"|"REGISTRATIONS"|"REGISTRATION_ATTACHMENTS"|"VERIFIED_DESTINATION_NUMBERS",
      Used = 123,
      Max = 123
    )
  ),
  NextToken = "string"
)

Request syntax

svc$describe_account_limits(
  NextToken = "string",
  MaxResults = 123
)