:doc:`UserNotificationsContacts <../../notificationscontacts>` / Paginator / ListEmailContacts

*****************
ListEmailContacts
*****************



.. py:class:: UserNotificationsContacts.Paginator.ListEmailContacts

  ::

    
    paginator = client.get_paginator('list_email_contacts')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`UserNotificationsContacts.Client.list_email_contacts`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/notificationscontacts-2018-05-10/ListEmailContacts>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': '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**

      
      ::

        {
            'emailContacts': [
                {
                    'arn': 'string',
                    'name': 'string',
                    'address': 'string',
                    'status': 'inactive'|'active',
                    'creationTime': datetime(2015, 1, 1),
                    'updateTime': datetime(2015, 1, 1)
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **emailContacts** *(list) --* 

          A list of email contacts.

          
          

          - *(dict) --* 

            An email contact.

            
            

            - **arn** *(string) --* 

              The Amazon Resource Name (ARN) of the email contact.

              
            

            - **name** *(string) --* 

              The name of the email contact.

              
            

            - **address** *(string) --* 

              The email address this email contact points to. The activation email and any subscribed emails are sent here.

              
            

            - **status** *(string) --* 

              The status of the email contact. Only activated email contacts receive emails.

              
            

            - **creationTime** *(datetime) --* 

              The creation time of the resource.

              
            

            - **updateTime** *(datetime) --* 

              The time the resource was last updated.

              
        
      
        

        - **NextToken** *(string) --* 

          A token to resume pagination.

          
    