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

Describes a hub.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, DescribeHubCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, DescribeHubCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import * const client = new SageMakerClient(config); * const input = { // DescribeHubRequest * HubName: "STRING_VALUE", // required * }; * const command = new DescribeHubCommand(input); * const response = await client.send(command); * // { // DescribeHubResponse * // HubName: "STRING_VALUE", // required * // HubArn: "STRING_VALUE", // required * // HubDisplayName: "STRING_VALUE", * // HubDescription: "STRING_VALUE", * // HubSearchKeywords: [ // HubSearchKeywordList * // "STRING_VALUE", * // ], * // S3StorageConfig: { // HubS3StorageConfig * // S3OutputPath: "STRING_VALUE", * // }, * // HubStatus: "InService" || "Creating" || "Updating" || "Deleting" || "CreateFailed" || "UpdateFailed" || "DeleteFailed", // required * // FailureReason: "STRING_VALUE", * // CreationTime: new Date("TIMESTAMP"), // required * // LastModifiedTime: new Date("TIMESTAMP"), // required * // }; * * ``` * * @param DescribeHubCommandInput - {@link DescribeHubCommandInput} * @returns {@link DescribeHubCommandOutput} * @see {@link DescribeHubCommandInput} for command's `input` shape. * @see {@link DescribeHubCommandOutput} 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 DescribeHubCommand extends DescribeHubCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeHubRequest; output: DescribeHubResponse; }; sdk: { input: DescribeHubCommandInput; output: DescribeHubCommandOutput; }; }; }