Rocky_Mountain_Vending/.pnpm-store/v10/files/e7/161a4713749548d40d7476a002a9f0e75785ae5404a819903c26a4e6f62d19decf89fc265c6a7bf6ebaf92e66d8a9ed337b394e83bac3466c315c2eb39a815
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

100 lines
4.1 KiB
Text

import { Command as $Command } from "@smithy/smithy-client";
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
import type { ListAccountsRequest, ListAccountsResponse } from "../models/models_0";
import type { ServiceInputTypes, ServiceOutputTypes, SSOClientResolvedConfig } from "../SSOClient";
/**
* @public
*/
export type { __MetadataBearer };
export { $Command };
/**
* @public
*
* The input for {@link ListAccountsCommand}.
*/
export interface ListAccountsCommandInput extends ListAccountsRequest {
}
/**
* @public
*
* The output of {@link ListAccountsCommand}.
*/
export interface ListAccountsCommandOutput extends ListAccountsResponse, __MetadataBearer {
}
declare const ListAccountsCommand_base: {
new (input: ListAccountsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAccountsCommandInput, ListAccountsCommandOutput, SSOClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
new (input: ListAccountsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAccountsCommandInput, ListAccountsCommandOutput, SSOClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
/**
* <p>Lists all AWS accounts assigned to the user. These AWS accounts are assigned by the
* administrator of the account. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/useraccess.html#assignusers">Assign User Access</a> in the <i>IAM Identity Center User Guide</i>. This operation
* returns a paginated response.</p>
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
* import { SSOClient, ListAccountsCommand } from "@aws-sdk/client-sso"; // ES Modules import
* // const { SSOClient, ListAccountsCommand } = require("@aws-sdk/client-sso"); // CommonJS import
* // import type { SSOClientConfig } from "@aws-sdk/client-sso";
* const config = {}; // type is SSOClientConfig
* const client = new SSOClient(config);
* const input = { // ListAccountsRequest
* nextToken: "STRING_VALUE",
* maxResults: Number("int"),
* accessToken: "STRING_VALUE", // required
* };
* const command = new ListAccountsCommand(input);
* const response = await client.send(command);
* // { // ListAccountsResponse
* // nextToken: "STRING_VALUE",
* // accountList: [ // AccountListType
* // { // AccountInfo
* // accountId: "STRING_VALUE",
* // accountName: "STRING_VALUE",
* // emailAddress: "STRING_VALUE",
* // },
* // ],
* // };
*
* ```
*
* @param ListAccountsCommandInput - {@link ListAccountsCommandInput}
* @returns {@link ListAccountsCommandOutput}
* @see {@link ListAccountsCommandInput} for command's `input` shape.
* @see {@link ListAccountsCommandOutput} for command's `response` shape.
* @see {@link SSOClientResolvedConfig | config} for SSOClient's `config` shape.
*
* @throws {@link InvalidRequestException} (client fault)
* <p>Indicates that a problem occurred with the input to the request. For example, a required
* parameter might be missing or out of range.</p>
*
* @throws {@link ResourceNotFoundException} (client fault)
* <p>The specified resource doesn't exist.</p>
*
* @throws {@link TooManyRequestsException} (client fault)
* <p>Indicates that the request is being made too frequently and is more than what the server
* can handle.</p>
*
* @throws {@link UnauthorizedException} (client fault)
* <p>Indicates that the request is not authorized. This can happen due to an invalid access
* token in the request.</p>
*
* @throws {@link SSOServiceException}
* <p>Base exception class for all service exceptions from SSO service.</p>
*
*
* @public
*/
export declare class ListAccountsCommand extends ListAccountsCommand_base {
/** @internal type navigation helper, not in runtime. */
protected static __types: {
api: {
input: ListAccountsRequest;
output: ListAccountsResponse;
};
sdk: {
input: ListAccountsCommandInput;
output: ListAccountsCommandOutput;
};
};
}