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

Shows the metadata for a feature within a feature group.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, DescribeFeatureMetadataCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, DescribeFeatureMetadataCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import * const client = new SageMakerClient(config); * const input = { // DescribeFeatureMetadataRequest * FeatureGroupName: "STRING_VALUE", // required * FeatureName: "STRING_VALUE", // required * }; * const command = new DescribeFeatureMetadataCommand(input); * const response = await client.send(command); * // { // DescribeFeatureMetadataResponse * // FeatureGroupArn: "STRING_VALUE", // required * // FeatureGroupName: "STRING_VALUE", // required * // FeatureName: "STRING_VALUE", // required * // FeatureType: "Integral" || "Fractional" || "String", // required * // CreationTime: new Date("TIMESTAMP"), // required * // LastModifiedTime: new Date("TIMESTAMP"), // required * // Description: "STRING_VALUE", * // Parameters: [ // FeatureParameters * // { // FeatureParameter * // Key: "STRING_VALUE", * // Value: "STRING_VALUE", * // }, * // ], * // }; * * ``` * * @param DescribeFeatureMetadataCommandInput - {@link DescribeFeatureMetadataCommandInput} * @returns {@link DescribeFeatureMetadataCommandOutput} * @see {@link DescribeFeatureMetadataCommandInput} for command's `input` shape. * @see {@link DescribeFeatureMetadataCommandOutput} 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 DescribeFeatureMetadataCommand extends DescribeFeatureMetadataCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeFeatureMetadataRequest; output: DescribeFeatureMetadataResponse; }; sdk: { input: DescribeFeatureMetadataCommandInput; output: DescribeFeatureMetadataCommandOutput; }; }; }