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 { GetMapSpritesRequest, GetMapSpritesResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetMapSpritesCommand}. */ export interface GetMapSpritesCommandInput extends GetMapSpritesRequest { } /** * @public */ export type GetMapSpritesCommandOutputType = Omit & { Blob?: Uint8ArrayBlobAdapter; }; /** * @public * * The output of {@link GetMapSpritesCommand}. */ export interface GetMapSpritesCommandOutput extends GetMapSpritesCommandOutputType, __MetadataBearer { } declare const GetMapSpritesCommand_base: { new (input: GetMapSpritesCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: GetMapSpritesCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Retrieves the sprite sheet corresponding to a map resource. The sprite sheet is a PNG * image paired with a JSON document describing the offsets of individual icons that will * be displayed on a rendered map.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { LocationClient, GetMapSpritesCommand } from "@aws-sdk/client-location"; // ES Modules import * // const { LocationClient, GetMapSpritesCommand } = require("@aws-sdk/client-location"); // CommonJS import * const client = new LocationClient(config); * const input = { // GetMapSpritesRequest * MapName: "STRING_VALUE", // required * FileName: "STRING_VALUE", // required * Key: "STRING_VALUE", * }; * const command = new GetMapSpritesCommand(input); * const response = await client.send(command); * // { // GetMapSpritesResponse * // Blob: new Uint8Array(), * // ContentType: "STRING_VALUE", * // CacheControl: "STRING_VALUE", * // }; * * ``` * * @param GetMapSpritesCommandInput - {@link GetMapSpritesCommandInput} * @returns {@link GetMapSpritesCommandOutput} * @see {@link GetMapSpritesCommandInput} for command's `input` shape. * @see {@link GetMapSpritesCommandOutput} 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 GetMapSpritesCommand extends GetMapSpritesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetMapSpritesRequest; output: GetMapSpritesResponse; }; sdk: { input: GetMapSpritesCommandInput; output: GetMapSpritesCommandOutput; }; }; }