SageMaker / Client / list_subscribed_workteams

list_subscribed_workteams#

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

Request Syntax

response = client.list_subscribed_workteams(
    NameContains='string',
    NextToken='string',
    MaxResults=123
)
Parameters:
  • NameContains (string) – A string in the work team name. This filter returns only work teams whose name contains the specified string.

  • NextToken (string) – 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.

  • MaxResults (integer) – The maximum number of work teams to return in each page of the response.

Return type:

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 a 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.