import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetMetadataRequest, GetMetadataResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link GetMetadataCommand}. */ export interface GetMetadataCommandInput extends GetMetadataRequest { } /** * @public * * The output of {@link GetMetadataCommand}. */ export interface GetMetadataCommandOutput extends GetMetadataResponse, __MetadataBearer { } declare const GetMetadataCommand_base: { new (input: GetMetadataCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetMetadataCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns existing metadata for an Amplify app.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { AmplifyUIBuilderClient, GetMetadataCommand } from "@aws-sdk/client-amplifyuibuilder"; // ES Modules import * // const { AmplifyUIBuilderClient, GetMetadataCommand } = require("@aws-sdk/client-amplifyuibuilder"); // CommonJS import * // import type { AmplifyUIBuilderClientConfig } from "@aws-sdk/client-amplifyuibuilder"; * const config = {}; // type is AmplifyUIBuilderClientConfig * const client = new AmplifyUIBuilderClient(config); * const input = { // GetMetadataRequest * appId: "STRING_VALUE", // required * environmentName: "STRING_VALUE", // required * }; * const command = new GetMetadataCommand(input); * const response = await client.send(command); * // { // GetMetadataResponse * // features: { // FeaturesMap // required * // "": "STRING_VALUE", * // }, * // }; * * ``` * * @param GetMetadataCommandInput - {@link GetMetadataCommandInput} * @returns {@link GetMetadataCommandOutput} * @see {@link GetMetadataCommandInput} for command's `input` shape. * @see {@link GetMetadataCommandOutput} for command's `response` shape. * @see {@link AmplifyUIBuilderClientResolvedConfig | config} for AmplifyUIBuilderClient's `config` shape. * * @throws {@link InvalidParameterException} (client fault) *

An invalid or out-of-range value was supplied for the input parameter.

* * @throws {@link UnauthorizedException} (client fault) *

You don't have permission to perform this operation.

* * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* * * @public */ export declare class GetMetadataCommand extends GetMetadataCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetMetadataRequest; output: GetMetadataResponse; }; sdk: { input: GetMetadataCommandInput; output: GetMetadataCommandOutput; }; }; }