import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeScraperLoggingConfigurationRequest, DescribeScraperLoggingConfigurationResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeScraperLoggingConfigurationCommand}. */ export interface DescribeScraperLoggingConfigurationCommandInput extends DescribeScraperLoggingConfigurationRequest { } /** * @public * * The output of {@link DescribeScraperLoggingConfigurationCommand}. */ export interface DescribeScraperLoggingConfigurationCommandOutput extends DescribeScraperLoggingConfigurationResponse, __MetadataBearer { } declare const DescribeScraperLoggingConfigurationCommand_base: { new (input: DescribeScraperLoggingConfigurationCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeScraperLoggingConfigurationCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Describes the logging configuration for a Amazon Managed Service for Prometheus scraper.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { AmpClient, DescribeScraperLoggingConfigurationCommand } from "@aws-sdk/client-amp"; // ES Modules import * // const { AmpClient, DescribeScraperLoggingConfigurationCommand } = require("@aws-sdk/client-amp"); // CommonJS import * // import type { AmpClientConfig } from "@aws-sdk/client-amp"; * const config = {}; // type is AmpClientConfig * const client = new AmpClient(config); * const input = { // DescribeScraperLoggingConfigurationRequest * scraperId: "STRING_VALUE", // required * }; * const command = new DescribeScraperLoggingConfigurationCommand(input); * const response = await client.send(command); * // { // DescribeScraperLoggingConfigurationResponse * // status: { // ScraperLoggingConfigurationStatus * // statusCode: "STRING_VALUE", // required * // statusReason: "STRING_VALUE", * // }, * // scraperId: "STRING_VALUE", // required * // loggingDestination: { // ScraperLoggingDestination Union: only one key present * // cloudWatchLogs: { // CloudWatchLogDestination * // logGroupArn: "STRING_VALUE", // required * // }, * // }, * // scraperComponents: [ // ScraperComponents // required * // { // ScraperComponent * // type: "STRING_VALUE", // required * // config: { // ComponentConfig * // options: { // StringMap * // "": "STRING_VALUE", * // }, * // }, * // }, * // ], * // modifiedAt: new Date("TIMESTAMP"), // required * // }; * * ``` * * @param DescribeScraperLoggingConfigurationCommandInput - {@link DescribeScraperLoggingConfigurationCommandInput} * @returns {@link DescribeScraperLoggingConfigurationCommandOutput} * @see {@link DescribeScraperLoggingConfigurationCommandInput} for command's `input` shape. * @see {@link DescribeScraperLoggingConfigurationCommandOutput} for command's `response` shape. * @see {@link AmpClientResolvedConfig | config} for AmpClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You do not have sufficient access to perform this action.

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

An unexpected error occurred during the processing of the request.

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

The request references a resources that doesn't exist.

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

The input fails to satisfy the constraints specified by an Amazon Web Services service.

* * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* * * @public */ export declare class DescribeScraperLoggingConfigurationCommand extends DescribeScraperLoggingConfigurationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeScraperLoggingConfigurationRequest; output: DescribeScraperLoggingConfigurationResponse; }; sdk: { input: DescribeScraperLoggingConfigurationCommandInput; output: DescribeScraperLoggingConfigurationCommandOutput; }; }; }