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

**************************************
DescribeRegistrationSectionDefinitions
**************************************



.. py:class:: PinpointSMSVoiceV2.Paginator.DescribeRegistrationSectionDefinitions

  ::

    
    paginator = client.get_paginator('describe_registration_section_definitions')

  
  

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

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

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


    **Request Syntax**
    ::

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

      The type of registration form. The list of **RegistrationTypes** can be found using the  DescribeRegistrationTypeDefinitions action.

      

    
    :type SectionPaths: list
    :param SectionPaths: 

      An array of paths for the registration form section.

      

    
      - *(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**

      
      ::

        {
            'RegistrationType': 'string',
            'RegistrationSectionDefinitions': [
                {
                    'SectionPath': 'string',
                    'DisplayHints': {
                        'Title': 'string',
                        'ShortDescription': 'string',
                        'LongDescription': 'string',
                        'DocumentationTitle': 'string',
                        'DocumentationLink': 'string'
                    }
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **RegistrationType** *(string) --* 

          The type of registration form. The list of **RegistrationTypes** can be found using the  DescribeRegistrationTypeDefinitions action.

          
        

        - **RegistrationSectionDefinitions** *(list) --* 

          An array of RegistrationSectionDefinition objects.

          
          

          - *(dict) --* 

            Provides information on the specified section definition.

            
            

            - **SectionPath** *(string) --* 

              The path to the section of the registration.

              
            

            - **DisplayHints** *(dict) --* 

              The path to the section of the registration.

              
              

              - **Title** *(string) --* 

                The title of the display hint.

                
              

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

                A short description of the display hint.

                
              

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

                A full description of the display hint.

                
              

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

                The title of the document the display hint is associated with.

                
              

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

                The link to the document the display hint is associated with.

                
          
        
      
    