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

*************************
list_subscribed_workteams
*************************



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

  

  Gets a list of the work teams that you are subscribed to in the Amazon Web Services Marketplace. The list may be empty if no work team satisfies the filter specified in the ``NameContains`` parameter.

  

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


  **Request Syntax**
  ::

    response = client.list_subscribed_workteams(
        NameContains='string',
        NextToken='string',
        MaxResults=123
    )
    
  :type NameContains: string
  :param NameContains: 

    A string in the work team name. This filter returns only work teams whose name contains the specified string.

    

  
  :type NextToken: string
  :param NextToken: 

    If the result of the previous ``ListSubscribedWorkteams`` request was truncated, the response includes a ``NextToken``. To retrieve the next set of labeling jobs, use the token in the next request.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of work teams to return in each page of the response.

    

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

    
    ::

      {
          'SubscribedWorkteams': [
              {
                  'WorkteamArn': 'string',
                  'MarketplaceTitle': 'string',
                  'SellerName': 'string',
                  'MarketplaceDescription': 'string',
                  'ListingId': 'string'
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **SubscribedWorkteams** *(list) --* 

        An array of ``Workteam`` objects, each describing a work team.

        
        

        - *(dict) --* 

          Describes a work team of a vendor that does the labelling job.

          
          

          - **WorkteamArn** *(string) --* 

            The Amazon Resource Name (ARN) of the vendor that you have subscribed.

            
          

          - **MarketplaceTitle** *(string) --* 

            The title of the service provided by the vendor in the Amazon Marketplace.

            
          

          - **SellerName** *(string) --* 

            The name of the vendor in the Amazon Marketplace.

            
          

          - **MarketplaceDescription** *(string) --* 

            The description of the vendor from the Amazon Marketplace.

            
          

          - **ListingId** *(string) --* 

            Marketplace product listing ID.

            
      
    
      

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

        If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of work teams, use it in the subsequent request.

        
  