import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; import { GetMapGlyphsRequest, GetMapGlyphsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetMapGlyphsCommand}. */ export interface GetMapGlyphsCommandInput extends GetMapGlyphsRequest { } /** * @public */ export type GetMapGlyphsCommandOutputType = Omit & { Blob?: Uint8ArrayBlobAdapter; }; /** * @public * * The output of {@link GetMapGlyphsCommand}. */ export interface GetMapGlyphsCommandOutput extends GetMapGlyphsCommandOutputType, __MetadataBearer { } declare const GetMapGlyphsCommand_base: { new (input: GetMapGlyphsCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: GetMapGlyphsCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Retrieves glyphs used to display labels on a map.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { LocationClient, GetMapGlyphsCommand } from "@aws-sdk/client-location"; // ES Modules import * // const { LocationClient, GetMapGlyphsCommand } = require("@aws-sdk/client-location"); // CommonJS import * const client = new LocationClient(config); * const input = { // GetMapGlyphsRequest * MapName: "STRING_VALUE", // required * FontStack: "STRING_VALUE", // required * FontUnicodeRange: "STRING_VALUE", // required * Key: "STRING_VALUE", * }; * const command = new GetMapGlyphsCommand(input); * const response = await client.send(command); * // { // GetMapGlyphsResponse * // Blob: new Uint8Array(), * // ContentType: "STRING_VALUE", * // CacheControl: "STRING_VALUE", * // }; * * ``` * * @param GetMapGlyphsCommandInput - {@link GetMapGlyphsCommandInput} * @returns {@link GetMapGlyphsCommandOutput} * @see {@link GetMapGlyphsCommandInput} for command's `input` shape. * @see {@link GetMapGlyphsCommandOutput} for command's `response` shape. * @see {@link LocationClientResolvedConfig | config} for LocationClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

The request was denied because of insufficient access or permissions. Check with an * administrator to verify your permissions.

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

The request has failed to process because of an unknown server error, exception, or failure.

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

The resource that you've entered was not found in your AWS account.

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

The request was denied because of request throttling.

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

The input failed to meet the constraints specified by the AWS service.

* * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* * * @public */ export declare class GetMapGlyphsCommand extends GetMapGlyphsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetMapGlyphsRequest; output: GetMapGlyphsResponse; }; sdk: { input: GetMapGlyphsCommandInput; output: GetMapGlyphsCommandOutput; }; }; }