- Navigation GuideYou are on a Command (operation) page with structural examples. Use the navigation breadcrumb if you would like to return to the Client landing page.
DescribeSubscribedWorkteamCommand
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.
Example Syntax
Use a bare-bones client and the command you need to make an API call.
import { SageMakerClient, DescribeSubscribedWorkteamCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import
// const { SageMakerClient, DescribeSubscribedWorkteamCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import
const client = new SageMakerClient(config);
const input = { // DescribeSubscribedWorkteamRequest
WorkteamArn: "STRING_VALUE", // required
};
const command = new DescribeSubscribedWorkteamCommand(input);
const response = await client.send(command);
// { // DescribeSubscribedWorkteamResponse
// SubscribedWorkteam: { // SubscribedWorkteam
// WorkteamArn: "STRING_VALUE", // required
// MarketplaceTitle: "STRING_VALUE",
// SellerName: "STRING_VALUE",
// MarketplaceDescription: "STRING_VALUE",
// ListingId: "STRING_VALUE",
// },
// };
DescribeSubscribedWorkteamCommand Input
See DescribeSubscribedWorkteamCommandInput for more details
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
WorkteamArn Required | string | undefined | The Amazon Resource Name (ARN) of the subscribed work team to describe. |
DescribeSubscribedWorkteamCommand Output
See DescribeSubscribedWorkteamCommandOutput for details
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
$metadata Required | ResponseMetadata | Metadata pertaining to this request. |
SubscribedWorkteam Required | SubscribedWorkteam | undefined | A |
Throws
Name | Fault | Details |
---|
Name | Fault | Details |
---|---|---|
SageMakerServiceException | Base exception class for all service exceptions from SageMaker service. |