import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import type { GetAccountSettingRequest, GetAccountSettingResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetAccountSettingCommand}. */ export interface GetAccountSettingCommandInput extends GetAccountSettingRequest { } /** * @public * * The output of {@link GetAccountSettingCommand}. */ export interface GetAccountSettingCommandOutput extends GetAccountSettingResponse, __MetadataBearer { } declare const GetAccountSettingCommand_base: { new (input: GetAccountSettingCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: GetAccountSettingCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Retrieves the account setting value for the specified setting name.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ECRClient, GetAccountSettingCommand } from "@aws-sdk/client-ecr"; // ES Modules import * // const { ECRClient, GetAccountSettingCommand } = require("@aws-sdk/client-ecr"); // CommonJS import * // import type { ECRClientConfig } from "@aws-sdk/client-ecr"; * const config = {}; // type is ECRClientConfig * const client = new ECRClient(config); * const input = { // GetAccountSettingRequest * name: "STRING_VALUE", // required * }; * const command = new GetAccountSettingCommand(input); * const response = await client.send(command); * // { // GetAccountSettingResponse * // name: "STRING_VALUE", * // value: "STRING_VALUE", * // }; * * ``` * * @param GetAccountSettingCommandInput - {@link GetAccountSettingCommandInput} * @returns {@link GetAccountSettingCommandOutput} * @see {@link GetAccountSettingCommandInput} for command's `input` shape. * @see {@link GetAccountSettingCommandOutput} for command's `response` shape. * @see {@link ECRClientResolvedConfig | config} for ECRClient's `config` shape. * * @throws {@link InvalidParameterException} (client fault) *

The specified parameter is invalid. Review the available parameters for the API * request.

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

These errors are usually caused by a server-side issue.

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

There was an exception validating this request.

* * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* * * @public */ export declare class GetAccountSettingCommand extends GetAccountSettingCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetAccountSettingRequest; output: GetAccountSettingResponse; }; sdk: { input: GetAccountSettingCommandInput; output: GetAccountSettingCommandOutput; }; }; }