:doc:`PinpointSMSVoiceV2 <../../pinpoint-sms-voice-v2>` / Paginator / DescribeRegistrationVersions

****************************
DescribeRegistrationVersions
****************************



.. py:class:: PinpointSMSVoiceV2.Paginator.DescribeRegistrationVersions

  ::

    
    paginator = client.get_paginator('describe_registration_versions')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`PinpointSMSVoiceV2.Client.describe_registration_versions`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/pinpoint-sms-voice-v2-2022-03-31/DescribeRegistrationVersions>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          RegistrationId='string',
          VersionNumbers=[
              123,
          ],
          Filters=[
              {
                  'Name': 'registration-version-status',
                  'Values': [
                      'string',
                  ]
              },
          ],
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type RegistrationId: string
    :param RegistrationId: **[REQUIRED]** 

      The unique identifier for the registration.

      

    
    :type VersionNumbers: list
    :param VersionNumbers: 

      An array of registration version numbers.

      

    
      - *(integer) --* 

      
  
    :type Filters: list
    :param Filters: 

      An array of RegistrationVersionFilter objects to filter the results.

      

    
      - *(dict) --* 

        The filter definition for filtering registration versions that meets a specified criteria.

        

      
        - **Name** *(string) --* **[REQUIRED]** 

          The name of the attribute to filter on.

          

        
        - **Values** *(list) --* **[REQUIRED]** 

          An array of values to filter on.

          

        
          - *(string) --* 

          
      
      
  
    :type PaginationConfig: dict
    :param PaginationConfig: 

      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.

        

      
    
    
    :rtype: dict
    :returns: 
      
      **Response Syntax**

      
      ::

        {
            'RegistrationArn': 'string',
            'RegistrationId': 'string',
            'RegistrationVersions': [
                {
                    'VersionNumber': 123,
                    'RegistrationVersionStatus': 'DRAFT'|'SUBMITTED'|'AWS_REVIEWING'|'REVIEWING'|'REQUIRES_AUTHENTICATION'|'APPROVED'|'DISCARDED'|'DENIED'|'REVOKED'|'ARCHIVED',
                    'RegistrationVersionStatusHistory': {
                        'DraftTimestamp': datetime(2015, 1, 1),
                        'SubmittedTimestamp': datetime(2015, 1, 1),
                        'AwsReviewingTimestamp': datetime(2015, 1, 1),
                        'ReviewingTimestamp': datetime(2015, 1, 1),
                        'RequiresAuthenticationTimestamp': datetime(2015, 1, 1),
                        'ApprovedTimestamp': datetime(2015, 1, 1),
                        'DiscardedTimestamp': datetime(2015, 1, 1),
                        'DeniedTimestamp': datetime(2015, 1, 1),
                        'RevokedTimestamp': datetime(2015, 1, 1),
                        'ArchivedTimestamp': datetime(2015, 1, 1)
                    },
                    'DeniedReasons': [
                        {
                            'Reason': 'string',
                            'ShortDescription': 'string',
                            'LongDescription': 'string',
                            'DocumentationTitle': 'string',
                            'DocumentationLink': 'string'
                        },
                    ],
                    'Feedback': 'string'
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **RegistrationArn** *(string) --* 

          The Amazon Resource Name (ARN) for the registration.

          
        

        - **RegistrationId** *(string) --* 

          The unique identifier for the registration.

          
        

        - **RegistrationVersions** *(list) --* 

          An array of RegistrationVersions objects.

          
          

          - *(dict) --* 

            Provides information about the specified version of the registration.

            
            

            - **VersionNumber** *(integer) --* 

              The version number of the registration.

              
            

            - **RegistrationVersionStatus** *(string) --* 

              The status of the registration.

               

              
              * ``APPROVED``: Your registration has been approved.
               
              * ``ARCHIVED``: Your previously approved registration version moves into this status when a more recently submitted version is approved.
               
              * ``DENIED``: You must fix your registration and resubmit it.
               
              * ``DISCARDED``: You've abandon this version of their registration to start over with a new version.
               
              * ``DRAFT``: The initial status of a registration version after it’s created.
               
              * ``REQUIRES_AUTHENTICATION``: You need to complete email authentication.
               
              * ``REVIEWING``: Your registration has been accepted and is being reviewed.
               
              * ``REVOKED``: Your previously approved registration has been revoked.
               
              * ``SUBMITTED``: Your registration has been submitted.
              

              
            

            - **RegistrationVersionStatusHistory** *(dict) --* 

              The **RegistrationVersionStatusHistory** object contains the time stamps for when the reservations status changes.

              
              

              - **DraftTimestamp** *(datetime) --* 

                The time when the registration was in the draft state, in `UNIX epoch time <https://www.epochconverter.com/>`__ format.

                
              

              - **SubmittedTimestamp** *(datetime) --* 

                The time when the registration was in the submitted state, in `UNIX epoch time <https://www.epochconverter.com/>`__ format.

                
              

              - **AwsReviewingTimestamp** *(datetime) --* 

                The time when the registration was in the AWS reviewing state, in `UNIX epoch time <https://www.epochconverter.com/>`__ format.

                
              

              - **ReviewingTimestamp** *(datetime) --* 

                The time when the registration was in the reviewing state, in `UNIX epoch time <https://www.epochconverter.com/>`__ format.

                
              

              - **RequiresAuthenticationTimestamp** *(datetime) --* 

                The time when the registration was in the requires authentication state, in `UNIX epoch time <https://www.epochconverter.com/>`__ format.

                
              

              - **ApprovedTimestamp** *(datetime) --* 

                The time when the registration was in the approved state, in `UNIX epoch time <https://www.epochconverter.com/>`__ format.

                
              

              - **DiscardedTimestamp** *(datetime) --* 

                The time when the registration was in the discarded state, in `UNIX epoch time <https://www.epochconverter.com/>`__ format.

                
              

              - **DeniedTimestamp** *(datetime) --* 

                The time when the registration was in the denied state, in `UNIX epoch time <https://www.epochconverter.com/>`__ format.

                
              

              - **RevokedTimestamp** *(datetime) --* 

                The time when the registration was in the revoked state, in `UNIX epoch time <https://www.epochconverter.com/>`__ format.

                
              

              - **ArchivedTimestamp** *(datetime) --* 

                The time when the registration was in the archived state, in `UNIX epoch time <https://www.epochconverter.com/>`__ format.

                
          
            

            - **DeniedReasons** *(list) --* 

              An array of RegistrationDeniedReasonInformation objects.

              
              

              - *(dict) --* 

                Provides the reason a registration was rejected.

                
                

                - **Reason** *(string) --* 

                  The reason a registration was rejected.

                  
                

                - **ShortDescription** *(string) --* 

                  A short description of the rejection reason.

                  
                

                - **LongDescription** *(string) --* 

                  A long description of the rejection reason.

                  
                

                - **DocumentationTitle** *(string) --* 

                  The title of the document.

                  
                

                - **DocumentationLink** *(string) --* 

                  The link to the document.

                  
            
          
            

            - **Feedback** *(string) --* 

              Feedback information provided during the registration review process. This includes comments, suggestions, or additional requirements.

              
        
      
    