subscribed_workteams
Creates, updates, deletes, gets or lists a subscribed_workteams resource.
Overview
| Name | subscribed_workteams |
| Type | Resource |
| Id | aws.sagemaker.subscribed_workteams |
Fields
The following fields are returned by SELECT queries:
- describe_subscribed_workteam
- list_subscribed_workteams
| Name | Datatype | Description |
|---|---|---|
listing_id | string | Marketplace product listing ID. |
marketplace_description | string | The description of the vendor from the Amazon Marketplace. (pattern: <code>.+</code>) |
marketplace_title | string | The title of the service provided by the vendor in the Amazon Marketplace. (pattern: <code>.+</code>) |
seller_name | string | The name of the vendor in the Amazon Marketplace. |
workteam_arn | string | The 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>) |
| Name | Datatype | Description |
|---|---|---|
listing_id | string | Marketplace product listing ID. |
marketplace_description | string | The description of the vendor from the Amazon Marketplace. (pattern: <code>.+</code>) |
marketplace_title | string | The title of the service provided by the vendor in the Amazon Marketplace. (pattern: <code>.+</code>) |
seller_name | string | The name of the vendor in the Amazon Marketplace. |
workteam_arn | string | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_subscribed_workteam | select | region | 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. | |
list_subscribed_workteams | select | region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_subscribed_workteam
- list_subscribed_workteams
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
;
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.
SELECT
listing_id,
marketplace_description,
marketplace_title,
seller_name,
workteam_arn
FROM aws.sagemaker.subscribed_workteams
WHERE region = '{{ region }}' -- required
;