import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { DescribeTrialComponentRequest, DescribeTrialComponentResponse } from "../models/models_3"; import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeTrialComponentCommand}. */ export interface DescribeTrialComponentCommandInput extends DescribeTrialComponentRequest { } /** * @public * * The output of {@link DescribeTrialComponentCommand}. */ export interface DescribeTrialComponentCommandOutput extends DescribeTrialComponentResponse, __MetadataBearer { } declare const DescribeTrialComponentCommand_base: { new (input: DescribeTrialComponentCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DescribeTrialComponentCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Provides a list of a trials component's properties.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, DescribeTrialComponentCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, DescribeTrialComponentCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import * const client = new SageMakerClient(config); * const input = { // DescribeTrialComponentRequest * TrialComponentName: "STRING_VALUE", // required * }; * const command = new DescribeTrialComponentCommand(input); * const response = await client.send(command); * // { // DescribeTrialComponentResponse * // TrialComponentName: "STRING_VALUE", * // TrialComponentArn: "STRING_VALUE", * // DisplayName: "STRING_VALUE", * // Source: { // TrialComponentSource * // SourceArn: "STRING_VALUE", // required * // SourceType: "STRING_VALUE", * // }, * // Status: { // TrialComponentStatus * // PrimaryStatus: "InProgress" || "Completed" || "Failed" || "Stopping" || "Stopped", * // Message: "STRING_VALUE", * // }, * // StartTime: new Date("TIMESTAMP"), * // EndTime: new Date("TIMESTAMP"), * // CreationTime: new Date("TIMESTAMP"), * // CreatedBy: { // UserContext * // UserProfileArn: "STRING_VALUE", * // UserProfileName: "STRING_VALUE", * // DomainId: "STRING_VALUE", * // IamIdentity: { // IamIdentity * // Arn: "STRING_VALUE", * // PrincipalId: "STRING_VALUE", * // SourceIdentity: "STRING_VALUE", * // }, * // }, * // LastModifiedTime: new Date("TIMESTAMP"), * // LastModifiedBy: { * // UserProfileArn: "STRING_VALUE", * // UserProfileName: "STRING_VALUE", * // DomainId: "STRING_VALUE", * // IamIdentity: { * // Arn: "STRING_VALUE", * // PrincipalId: "STRING_VALUE", * // SourceIdentity: "STRING_VALUE", * // }, * // }, * // Parameters: { // TrialComponentParameters * // "": { // TrialComponentParameterValue Union: only one key present * // StringValue: "STRING_VALUE", * // NumberValue: Number("double"), * // }, * // }, * // InputArtifacts: { // TrialComponentArtifacts * // "": { // TrialComponentArtifact * // MediaType: "STRING_VALUE", * // Value: "STRING_VALUE", // required * // }, * // }, * // OutputArtifacts: { * // "": { * // MediaType: "STRING_VALUE", * // Value: "STRING_VALUE", // required * // }, * // }, * // MetadataProperties: { // MetadataProperties * // CommitId: "STRING_VALUE", * // Repository: "STRING_VALUE", * // GeneratedBy: "STRING_VALUE", * // ProjectId: "STRING_VALUE", * // }, * // Metrics: [ // TrialComponentMetricSummaries * // { // TrialComponentMetricSummary * // MetricName: "STRING_VALUE", * // SourceArn: "STRING_VALUE", * // TimeStamp: new Date("TIMESTAMP"), * // Max: Number("double"), * // Min: Number("double"), * // Last: Number("double"), * // Count: Number("int"), * // Avg: Number("double"), * // StdDev: Number("double"), * // }, * // ], * // LineageGroupArn: "STRING_VALUE", * // Sources: [ // TrialComponentSources * // { * // SourceArn: "STRING_VALUE", // required * // SourceType: "STRING_VALUE", * // }, * // ], * // }; * * ``` * * @param DescribeTrialComponentCommandInput - {@link DescribeTrialComponentCommandInput} * @returns {@link DescribeTrialComponentCommandOutput} * @see {@link DescribeTrialComponentCommandInput} for command's `input` shape. * @see {@link DescribeTrialComponentCommandOutput} for command's `response` shape. * @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape. * * @throws {@link ResourceNotFound} (client fault) *

Resource being access is not found.

* * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* * * @public */ export declare class DescribeTrialComponentCommand extends DescribeTrialComponentCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeTrialComponentRequest; output: DescribeTrialComponentResponse; }; sdk: { input: DescribeTrialComponentCommandInput; output: DescribeTrialComponentCommandOutput; }; }; }