:doc:`SageMaker <../../sagemaker>` / Client / list_partner_apps

*****************
list_partner_apps
*****************



.. py:method:: SageMaker.Client.list_partner_apps(**kwargs)

  

  Lists all of the SageMaker Partner AI Apps in an account.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListPartnerApps>`_  


  **Request Syntax**
  ::

    response = client.list_partner_apps(
        MaxResults=123,
        NextToken='string'
    )
    
  :type MaxResults: integer
  :param MaxResults: 

    This parameter defines the maximum number of results that can be returned in a single response. The ``MaxResults`` parameter is an upper bound, not a target. If there are more results available than the value specified, a ``NextToken`` is provided in the response. The ``NextToken`` indicates that the user should get the next set of results by providing this token as a part of a subsequent call. The default value for ``MaxResults`` is 10.

    

  
  :type NextToken: string
  :param NextToken: 

    If the previous response was truncated, you will receive this token. Use it in your next request to receive the next set of results.

    

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

    
    ::

      {
          'Summaries': [
              {
                  'Arn': 'string',
                  'Name': 'string',
                  'Type': 'lakera-guard'|'comet'|'deepchecks-llm-evaluation'|'fiddler',
                  'Status': 'Creating'|'Updating'|'Deleting'|'Available'|'Failed'|'UpdateFailed'|'Deleted',
                  'CreationTime': datetime(2015, 1, 1)
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **Summaries** *(list) --* 

        The information related to each of the SageMaker Partner AI Apps in an account.

        
        

        - *(dict) --* 

          A subset of information related to a SageMaker Partner AI App. This information is used as part of the ``ListPartnerApps`` API response.

          
          

          - **Arn** *(string) --* 

            The ARN of the SageMaker Partner AI App.

            
          

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

            The name of the SageMaker Partner AI App.

            
          

          - **Type** *(string) --* 

            The type of SageMaker Partner AI App to create. Must be one of the following: ``lakera-guard``, ``comet``, ``deepchecks-llm-evaluation``, or ``fiddler``.

            
          

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

            The status of the SageMaker Partner AI App.

            
          

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

            The creation time of the SageMaker Partner AI App.

            
      
    
      

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

        If the previous response was truncated, you will receive this token. Use it in your next request to receive the next set of results.

        
  