PinpointSMSVoiceV2 / Paginator / DescribePhoneNumbers

DescribePhoneNumbers#

class PinpointSMSVoiceV2.Paginator.DescribePhoneNumbers#
paginator = client.get_paginator('describe_phone_numbers')
paginate(**kwargs)#

Creates an iterator that will paginate through responses from PinpointSMSVoiceV2.Client.describe_phone_numbers().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PhoneNumberIds=[
        'string',
    ],
    Filters=[
        {
            'Name': 'status'|'iso-country-code'|'message-type'|'number-capability'|'number-type'|'two-way-enabled'|'self-managed-opt-outs-enabled'|'opt-out-list-name'|'deletion-protection-enabled'|'two-way-channel-arn',
            'Values': [
                'string',
            ]
        },
    ],
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • PhoneNumberIds (list) –

    The unique identifier of phone numbers to find information about. This is an array of strings that can be either the PhoneNumberId or PhoneNumberArn.

    • (string) –

  • Filters (list) –

    An array of PhoneNumberFilter objects to filter the results.

    • (dict) –

      The information for a phone number that meets a specified criteria.

      • Name (string) – [REQUIRED]

        The name of the attribute to filter on.

      • Values (list) – [REQUIRED]

        An array values to filter for.

        • (string) –

  • PaginationConfig (dict) –

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) –

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) –

      The size of each page.

    • StartingToken (string) –

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type:

dict

Returns:

Response Syntax

{
    'PhoneNumbers': [
        {
            'PhoneNumberArn': 'string',
            'PhoneNumberId': 'string',
            'PhoneNumber': 'string',
            'Status': 'PENDING'|'ACTIVE'|'ASSOCIATING'|'DISASSOCIATING'|'DELETED',
            'IsoCountryCode': 'string',
            'MessageType': 'TRANSACTIONAL'|'PROMOTIONAL',
            'NumberCapabilities': [
                'SMS'|'VOICE',
            ],
            'NumberType': 'SHORT_CODE'|'LONG_CODE'|'TOLL_FREE'|'TEN_DLC'|'SIMULATOR',
            'MonthlyLeasingPrice': 'string',
            'TwoWayEnabled': True|False,
            'TwoWayChannelArn': 'string',
            'TwoWayChannelRole': 'string',
            'SelfManagedOptOutsEnabled': True|False,
            'OptOutListName': 'string',
            'DeletionProtectionEnabled': True|False,
            'PoolId': 'string',
            'RegistrationId': 'string',
            'CreatedTimestamp': datetime(2015, 1, 1)
        },
    ],

}

Response Structure

  • (dict) –

    • PhoneNumbers (list) –

      An array of PhoneNumberInformation objects that contain the details for the requested phone numbers.

      • (dict) –

        The information for a phone number, in E.164 format, in an Amazon Web Services account.

        • PhoneNumberArn (string) –

          The Amazon Resource Name (ARN) associated with the phone number.

        • PhoneNumberId (string) –

          The unique identifier for the phone number.

        • PhoneNumber (string) –

          The phone number in E.164 format.

        • Status (string) –

          The current status of the phone number.

        • IsoCountryCode (string) –

          The two-character code, in ISO 3166-1 alpha-2 format, for the country or region.

        • MessageType (string) –

          The type of message. Valid values are TRANSACTIONAL for messages that are critical or time-sensitive and PROMOTIONAL for messages that aren’t critical or time-sensitive.

        • NumberCapabilities (list) –

          Describes if the origination identity can be used for text messages, voice calls or both.

          • (string) –

        • NumberType (string) –

          The type of phone number.

        • MonthlyLeasingPrice (string) –

          The price, in US dollars, to lease the phone number.

        • TwoWayEnabled (boolean) –

          By default this is set to false. When set to true you can receive incoming text messages from your end recipients using the TwoWayChannelArn.

        • TwoWayChannelArn (string) –

          The Amazon Resource Name (ARN) of the two way channel.

        • TwoWayChannelRole (string) –

          An optional IAM Role Arn for a service to assume, to be able to post inbound SMS messages.

        • SelfManagedOptOutsEnabled (boolean) –

          When set to false an end recipient sends a message that begins with HELP or STOP to one of your dedicated numbers, Amazon Pinpoint automatically replies with a customizable message and adds the end recipient to the OptOutList. When set to true you’re responsible for responding to HELP and STOP requests. You’re also responsible for tracking and honoring opt-out request. For more information see Self-managed opt-outs

        • OptOutListName (string) –

          The name of the OptOutList associated with the phone number.

        • DeletionProtectionEnabled (boolean) –

          When set to true the phone number can’t be deleted.

        • PoolId (string) –

          The unique identifier of the pool associated with the phone number.

        • RegistrationId (string) –

          The unique identifier for the registration.

        • CreatedTimestamp (datetime) –

          The time when the phone number was created, in UNIX epoch time format.