import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetAppMonitorRequest, GetAppMonitorResponse } from "../models/models_0"; import type { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetAppMonitorCommand}. */ export interface GetAppMonitorCommandInput extends GetAppMonitorRequest { } /** * @public * * The output of {@link GetAppMonitorCommand}. */ export interface GetAppMonitorCommandOutput extends GetAppMonitorResponse, __MetadataBearer { } declare const GetAppMonitorCommand_base: { new (input: GetAppMonitorCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: GetAppMonitorCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Retrieves the complete configuration information for one app monitor.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { RUMClient, GetAppMonitorCommand } from "@aws-sdk/client-rum"; // ES Modules import * // const { RUMClient, GetAppMonitorCommand } = require("@aws-sdk/client-rum"); // CommonJS import * // import type { RUMClientConfig } from "@aws-sdk/client-rum"; * const config = {}; // type is RUMClientConfig * const client = new RUMClient(config); * const input = { // GetAppMonitorRequest * Name: "STRING_VALUE", // required * }; * const command = new GetAppMonitorCommand(input); * const response = await client.send(command); * // { // GetAppMonitorResponse * // AppMonitor: { // AppMonitor * // Name: "STRING_VALUE", * // Domain: "STRING_VALUE", * // DomainList: [ // AppMonitorDomainList * // "STRING_VALUE", * // ], * // Id: "STRING_VALUE", * // Created: "STRING_VALUE", * // LastModified: "STRING_VALUE", * // Tags: { // TagMap * // "": "STRING_VALUE", * // }, * // State: "STRING_VALUE", * // AppMonitorConfiguration: { // AppMonitorConfiguration * // IdentityPoolId: "STRING_VALUE", * // ExcludedPages: [ // Pages * // "STRING_VALUE", * // ], * // IncludedPages: [ * // "STRING_VALUE", * // ], * // FavoritePages: [ // FavoritePages * // "STRING_VALUE", * // ], * // SessionSampleRate: Number("double"), * // GuestRoleArn: "STRING_VALUE", * // AllowCookies: true || false, * // Telemetries: [ // Telemetries * // "STRING_VALUE", * // ], * // EnableXRay: true || false, * // }, * // DataStorage: { // DataStorage * // CwLog: { // CwLog * // CwLogEnabled: true || false, * // CwLogGroup: "STRING_VALUE", * // }, * // }, * // CustomEvents: { // CustomEvents * // Status: "STRING_VALUE", * // }, * // DeobfuscationConfiguration: { // DeobfuscationConfiguration * // JavaScriptSourceMaps: { // JavaScriptSourceMaps * // Status: "STRING_VALUE", // required * // S3Uri: "STRING_VALUE", * // }, * // }, * // Platform: "STRING_VALUE", * // }, * // }; * * ``` * * @param GetAppMonitorCommandInput - {@link GetAppMonitorCommandInput} * @returns {@link GetAppMonitorCommandOutput} * @see {@link GetAppMonitorCommandInput} for command's `input` shape. * @see {@link GetAppMonitorCommandOutput} for command's `response` shape. * @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You don't have sufficient permissions to perform this action.

* * @throws {@link InternalServerException} (server fault) *

Internal service exception.

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

Resource not found.

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

The request was throttled because of quota limits.

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

One of the arguments for the request is not valid.

* * @throws {@link RUMServiceException} *

Base exception class for all service exceptions from RUM service.

* * * @public */ export declare class GetAppMonitorCommand extends GetAppMonitorCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetAppMonitorRequest; output: GetAppMonitorResponse; }; sdk: { input: GetAppMonitorCommandInput; output: GetAppMonitorCommandOutput; }; }; }