import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetDefaultScraperConfigurationRequest, GetDefaultScraperConfigurationResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link GetDefaultScraperConfigurationCommand}. */ export interface GetDefaultScraperConfigurationCommandInput extends GetDefaultScraperConfigurationRequest { } /** * @public * * The output of {@link GetDefaultScraperConfigurationCommand}. */ export interface GetDefaultScraperConfigurationCommandOutput extends GetDefaultScraperConfigurationResponse, __MetadataBearer { } declare const GetDefaultScraperConfigurationCommand_base: { new (input: GetDefaultScraperConfigurationCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [GetDefaultScraperConfigurationCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

The GetDefaultScraperConfiguration operation returns the default scraper configuration used when Amazon EKS creates a scraper for you.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { AmpClient, GetDefaultScraperConfigurationCommand } from "@aws-sdk/client-amp"; // ES Modules import * // const { AmpClient, GetDefaultScraperConfigurationCommand } = 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 = {}; * const command = new GetDefaultScraperConfigurationCommand(input); * const response = await client.send(command); * // { // GetDefaultScraperConfigurationResponse * // configuration: new Uint8Array(), // required * // }; * * ``` * * @param GetDefaultScraperConfigurationCommandInput - {@link GetDefaultScraperConfigurationCommandInput} * @returns {@link GetDefaultScraperConfigurationCommandOutput} * @see {@link GetDefaultScraperConfigurationCommandInput} for command's `input` shape. * @see {@link GetDefaultScraperConfigurationCommandOutput} 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 ThrottlingException} (client fault) *

The request was denied due to request throttling.

* * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* * * @example GetDefaultScraperConfiguration * ```javascript * // * const input = { /* empty *\/ }; * const command = new GetDefaultScraperConfigurationCommand(input); * const response = await client.send(command); * /* response is * { * configuration: "blob" * } * *\/ * ``` * * @public */ export declare class GetDefaultScraperConfigurationCommand extends GetDefaultScraperConfigurationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: {}; output: GetDefaultScraperConfigurationResponse; }; sdk: { input: GetDefaultScraperConfigurationCommandInput; output: GetDefaultScraperConfigurationCommandOutput; }; }; }