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

*******************************
DescribeRegistrationFieldValues
*******************************



.. py:class:: PinpointSMSVoiceV2.Paginator.DescribeRegistrationFieldValues

  ::

    
    paginator = client.get_paginator('describe_registration_field_values')

  
  

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

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

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          RegistrationId='string',
          VersionNumber=123,
          SectionPath='string',
          FieldPaths=[
              'string',
          ],
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type RegistrationId: string
    :param RegistrationId: **[REQUIRED]** 

      The unique identifier for the registration.

      

    
    :type VersionNumber: integer
    :param VersionNumber: 

      The version number of the registration.

      

    
    :type SectionPath: string
    :param SectionPath: 

      The path to the section of the registration.

      

    
    :type FieldPaths: list
    :param FieldPaths: 

      An array of paths to the registration form field.

      

    
      - *(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',
            'VersionNumber': 123,
            'RegistrationFieldValues': [
                {
                    'FieldPath': 'string',
                    'SelectChoices': [
                        'string',
                    ],
                    'TextValue': 'string',
                    'RegistrationAttachmentId': 'string',
                    'DeniedReason': 'string',
                    'Feedback': 'string'
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

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

          The Amazon Resource Name (ARN) for the registration.

          
        

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

          The unique identifier for the registration.

          
        

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

          The current version of the registration.

          
        

        - **RegistrationFieldValues** *(list) --* 

          An array of RegistrationFieldValues objects that contain the values for the requested registration.

          
          

          - *(dict) --* 

            Provides the values of the specified field.

            
            

            - **FieldPath** *(string) --* 

              The path to the registration form field. You can use  DescribeRegistrationFieldDefinitions for a list of **FieldPaths**.

              
            

            - **SelectChoices** *(list) --* 

              An array of values for the form field.

              
              

              - *(string) --* 
          
            

            - **TextValue** *(string) --* 

              The text data for a free form field.

              
            

            - **RegistrationAttachmentId** *(string) --* 

              The unique identifier for the registration attachment.

              
            

            - **DeniedReason** *(string) --* 

              A description of why the registration was denied.

              
            

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

              Feedback provided for this specific field during the registration review process. This may include validation errors, suggestions for improvement, or additional requirements.

              
        
      
    