:doc:`CleanRoomsML <../../cleanroomsml>` / Paginator / ListConfiguredModelAlgorithmAssociations

****************************************
ListConfiguredModelAlgorithmAssociations
****************************************



.. py:class:: CleanRoomsML.Paginator.ListConfiguredModelAlgorithmAssociations

  ::

    
    paginator = client.get_paginator('list_configured_model_algorithm_associations')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`CleanRoomsML.Client.list_configured_model_algorithm_associations`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListConfiguredModelAlgorithmAssociations>`_    


    **Request Syntax**
    ::

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

      The membership ID of the member that created the configured model algorithm associations you are interested in.

      

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

      
      ::

        {
            'configuredModelAlgorithmAssociations': [
                {
                    'createTime': datetime(2015, 1, 1),
                    'updateTime': datetime(2015, 1, 1),
                    'configuredModelAlgorithmAssociationArn': 'string',
                    'configuredModelAlgorithmArn': 'string',
                    'name': 'string',
                    'description': 'string',
                    'membershipIdentifier': 'string',
                    'collaborationIdentifier': 'string'
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **configuredModelAlgorithmAssociations** *(list) --* 

          The list of configured model algorithm associations.

          
          

          - *(dict) --* 

            Provides summary information about the configured model algorithm association.

            
            

            - **createTime** *(datetime) --* 

              The time at which the configured model algorithm association was created.

              
            

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

              The most recent time at which the configured model algorithm association was updated.

              
            

            - **configuredModelAlgorithmAssociationArn** *(string) --* 

              The Amazon Resource Name (ARN) of the configured model algorithm association.

              
            

            - **configuredModelAlgorithmArn** *(string) --* 

              The Amazon Resource Name (ARN) of the configured model algorithm that is being associated.

              
            

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

              The name of the configured model algorithm association.

              
            

            - **description** *(string) --* 

              The description of the configured model algorithm association.

              
            

            - **membershipIdentifier** *(string) --* 

              The membership ID of the member that created the configured model algorithm association.

              
            

            - **collaborationIdentifier** *(string) --* 

              The collaboration ID of the collaboration that contains the configured model algorithm association.

              
        
      
        

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

          A token to resume pagination.

          
    