import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetSnowballUsageRequest, GetSnowballUsageResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link GetSnowballUsageCommand}. */ export interface GetSnowballUsageCommandInput extends GetSnowballUsageRequest { } /** * @public * * The output of {@link GetSnowballUsageCommand}. */ export interface GetSnowballUsageCommandOutput extends GetSnowballUsageResult, __MetadataBearer { } declare const GetSnowballUsageCommand_base: { new (input: GetSnowballUsageCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [GetSnowballUsageCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns information about the Snow Family service limit for your account, and also the * number of Snow devices your account has in use.

*

The default service limit for the number of Snow devices that you can have at one time * is 1. If you want to increase your service limit, contact Amazon Web Services Support.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SnowballClient, GetSnowballUsageCommand } from "@aws-sdk/client-snowball"; // ES Modules import * // const { SnowballClient, GetSnowballUsageCommand } = require("@aws-sdk/client-snowball"); // CommonJS import * // import type { SnowballClientConfig } from "@aws-sdk/client-snowball"; * const config = {}; // type is SnowballClientConfig * const client = new SnowballClient(config); * const input = {}; * const command = new GetSnowballUsageCommand(input); * const response = await client.send(command); * // { // GetSnowballUsageResult * // SnowballLimit: Number("int"), * // SnowballsInUse: Number("int"), * // }; * * ``` * * @param GetSnowballUsageCommandInput - {@link GetSnowballUsageCommandInput} * @returns {@link GetSnowballUsageCommandOutput} * @see {@link GetSnowballUsageCommandInput} for command's `input` shape. * @see {@link GetSnowballUsageCommandOutput} for command's `response` shape. * @see {@link SnowballClientResolvedConfig | config} for SnowballClient's `config` shape. * * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* * * @example To see your Snowball service limit and the number of Snowballs you have in use * ```javascript * // Returns information about the Snowball service limit for your account, and also the number of Snowballs your account has in use. * * The default service limit for the number of Snowballs that you can have at one time is 1. If you want to increase your service limit, contact AWS Support. * const input = { /* empty *\/ }; * const command = new GetSnowballUsageCommand(input); * const response = await client.send(command); * /* response is * { * SnowballLimit: 1, * SnowballsInUse: 0 * } * *\/ * ``` * * @public */ export declare class GetSnowballUsageCommand extends GetSnowballUsageCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: {}; output: GetSnowballUsageResult; }; sdk: { input: GetSnowballUsageCommandInput; output: GetSnowballUsageCommandOutput; }; }; }