import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetApplicationRequest, GetApplicationResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link GetApplicationCommand}. */ export interface GetApplicationCommandInput extends GetApplicationRequest { } /** * @public * * The output of {@link GetApplicationCommand}. */ export interface GetApplicationCommandOutput extends GetApplicationResponse, __MetadataBearer { } declare const GetApplicationCommand_base: { new (input: GetApplicationCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetApplicationCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Retrieves information about an application.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SecurityAgentClient, GetApplicationCommand } from "@aws-sdk/client-securityagent"; // ES Modules import * // const { SecurityAgentClient, GetApplicationCommand } = require("@aws-sdk/client-securityagent"); // CommonJS import * // import type { SecurityAgentClientConfig } from "@aws-sdk/client-securityagent"; * const config = {}; // type is SecurityAgentClientConfig * const client = new SecurityAgentClient(config); * const input = { // GetApplicationRequest * applicationId: "STRING_VALUE", // required * }; * const command = new GetApplicationCommand(input); * const response = await client.send(command); * // { // GetApplicationResponse * // applicationId: "STRING_VALUE", // required * // domain: "STRING_VALUE", // required * // applicationName: "STRING_VALUE", * // idcConfiguration: { // IdCConfiguration * // idcApplicationArn: "STRING_VALUE", * // idcInstanceArn: "STRING_VALUE", * // }, * // roleArn: "STRING_VALUE", * // defaultKmsKeyId: "STRING_VALUE", * // }; * * ``` * * @param GetApplicationCommandInput - {@link GetApplicationCommandInput} * @returns {@link GetApplicationCommandOutput} * @see {@link GetApplicationCommandInput} for command's `input` shape. * @see {@link GetApplicationCommandOutput} for command's `response` shape. * @see {@link SecurityAgentClientResolvedConfig | config} for SecurityAgentClient's `config` shape. * * @throws {@link SecurityAgentServiceException} *

Base exception class for all service exceptions from SecurityAgent service.

* * * @public */ export declare class GetApplicationCommand extends GetApplicationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetApplicationRequest; output: GetApplicationResponse; }; sdk: { input: GetApplicationCommandInput; output: GetApplicationCommandOutput; }; }; }