Skip to main content

subscribed_workteams

Creates, updates, deletes, gets or lists a subscribed_workteams resource.

Overview

Namesubscribed_workteams
TypeResource
Idaws.sagemaker.subscribed_workteams

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
listing_idstringMarketplace product listing ID.
marketplace_descriptionstringThe description of the vendor from the Amazon Marketplace. (pattern: <code>.+</code>)
marketplace_titlestringThe title of the service provided by the vendor in the Amazon Marketplace. (pattern: <code>.+</code>)
seller_namestringThe name of the vendor in the Amazon Marketplace.
workteam_arnstringThe Amazon Resource Name (ARN) of the vendor that you have subscribed. (pattern: <code>arn:aws[a-z-]:sagemaker:[a-z0-9-]:[0-9]{12}:workteam/.*</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_subscribed_workteamselectregionGets information about a work team provided by a vendor. It returns details about the subscription with a vendor in the Amazon Web Services Marketplace.
list_subscribed_workteamsselectregionGets 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.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Gets information about a work team provided by a vendor. It returns details about the subscription with a vendor in the Amazon Web Services Marketplace.

SELECT
listing_id,
marketplace_description,
marketplace_title,
seller_name,
workteam_arn
FROM aws.sagemaker.subscribed_workteams
WHERE region = '{{ region }}' -- required
;