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

Parameter
Type
Description
WorkteamArn
Required
string | undefined

The Amazon Resource Name (ARN) of the subscribed work team to describe.

DescribeSubscribedWorkteamCommand Output

Parameter
Type
Description
$metadata
Required
ResponseMetadata
Metadata pertaining to this request.
SubscribedWorkteam
Required
SubscribedWorkteam | undefined

A Workteam instance that contains information about the work team.

Throws

Name
Fault
Details
SageMakerServiceException
Base exception class for all service exceptions from SageMaker service.