:doc:`Route53Profiles <../../route53profiles>` / Paginator / ListProfileAssociations

***********************
ListProfileAssociations
***********************



.. py:class:: Route53Profiles.Paginator.ListProfileAssociations

  ::

    
    paginator = client.get_paginator('list_profile_associations')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`Route53Profiles.Client.list_profile_associations`.

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          ProfileId='string',
          ResourceId='string',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type ProfileId: string
    :param ProfileId: 

      ID of the Profile.

      

    
    :type ResourceId: string
    :param ResourceId: 

      ID of the VPC.

      

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

      
      ::

        {
            'ProfileAssociations': [
                {
                    'CreationTime': datetime(2015, 1, 1),
                    'Id': 'string',
                    'ModificationTime': datetime(2015, 1, 1),
                    'Name': 'string',
                    'OwnerId': 'string',
                    'ProfileId': 'string',
                    'ResourceId': 'string',
                    'Status': 'COMPLETE'|'DELETING'|'UPDATING'|'CREATING'|'DELETED'|'FAILED',
                    'StatusMessage': 'string'
                },
            ]
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **ProfileAssociations** *(list) --* 

          A complex type that containts settings information about the profile's VPC associations.

          
          

          - *(dict) --* 

            An association between a Route 53 Profile and a VPC.

            
            

            - **CreationTime** *(datetime) --* 

              The date and time that the Profile association was created, in Unix time format and Coordinated Universal Time (UTC).

              
            

            - **Id** *(string) --* 

              ID of the Profile association.

              
            

            - **ModificationTime** *(datetime) --* 

              The date and time that the Profile association was modified, in Unix time format and Coordinated Universal Time (UTC).

              
            

            - **Name** *(string) --* 

              Name of the Profile association.

              
            

            - **OwnerId** *(string) --* 

              Amazon Web Services account ID of the Profile association owner.

              
            

            - **ProfileId** *(string) --* 

              ID of the Profile.

              
            

            - **ResourceId** *(string) --* 

              The Amazon Resource Name (ARN) of the VPC.

              
            

            - **Status** *(string) --* 

              Status of the Profile association.

              
            

            - **StatusMessage** *(string) --* 

              Additional information about the Profile association.

              
        
      
    