:doc:`CleanRoomsML <../../cleanroomsml>` / Client / list_collaboration_ml_input_channels

************************************
list_collaboration_ml_input_channels
************************************



.. py:method:: CleanRoomsML.Client.list_collaboration_ml_input_channels(**kwargs)

  

  Returns a list of the ML input channels in a collaboration.

  

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


  **Request Syntax**
  ::

    response = client.list_collaboration_ml_input_channels(
        nextToken='string',
        maxResults=123,
        collaborationIdentifier='string'
    )
    
  :type nextToken: string
  :param nextToken: 

    The token value retrieved from a previous call to access the next page of results.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of results to return.

    

  
  :type collaborationIdentifier: string
  :param collaborationIdentifier: **[REQUIRED]** 

    The collaboration ID of the collaboration that contains the ML input channels that you want to list.

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'nextToken': 'string',
          'collaborationMLInputChannelsList': [
              {
                  'createTime': datetime(2015, 1, 1),
                  'updateTime': datetime(2015, 1, 1),
                  'membershipIdentifier': 'string',
                  'collaborationIdentifier': 'string',
                  'name': 'string',
                  'configuredModelAlgorithmAssociations': [
                      'string',
                  ],
                  'mlInputChannelArn': 'string',
                  'status': 'CREATE_PENDING'|'CREATE_IN_PROGRESS'|'CREATE_FAILED'|'ACTIVE'|'DELETE_PENDING'|'DELETE_IN_PROGRESS'|'DELETE_FAILED'|'INACTIVE',
                  'creatorAccountId': 'string',
                  'description': 'string'
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **nextToken** *(string) --* 

        The token value used to access the next page of results.

        
      

      - **collaborationMLInputChannelsList** *(list) --* 

        The list of ML input channels that you wanted.

        
        

        - *(dict) --* 

          Provides summary information about an ML input channel in a collaboration.

          
          

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

            The time at which the ML input channel was created.

            
          

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

            The most recent time at which the ML input channel was updated.

            
          

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

            The membership ID of the membership that contains the ML input channel.

            
          

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

            The collaboration ID of the collaboration that contains the ML input channel.

            
          

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

            The name of the ML input channel.

            
          

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

            The associated configured model algorithms used to create the ML input channel.

            
            

            - *(string) --* 
        
          

          - **mlInputChannelArn** *(string) --* 

            The Amazon Resource Name (ARN) of the ML input channel.

            
          

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

            The status of the ML input channel.

            
          

          - **creatorAccountId** *(string) --* 

            The account ID of the member who created the ML input channel.

            
          

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

            The description of the ML input channel.

            
      
    
  
  **Exceptions**
  
  *   :py:class:`CleanRoomsML.Client.exceptions.ValidationException`

  
  *   :py:class:`CleanRoomsML.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`CleanRoomsML.Client.exceptions.ThrottlingException`

  