import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { ListAccountsRequest, ListAccountsResponse } from "../models/models_0"; import { 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; new (__0_0: ListAccountsCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Lists all AWS accounts assigned to the user. These AWS accounts are assigned by the * administrator of the account. For more information, see Assign User Access in the IAM Identity Center User Guide. This operation * returns a paginated response.

* @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 * 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) *

Indicates that a problem occurred with the input to the request. For example, a required * parameter might be missing or out of range.

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

The specified resource doesn't exist.

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

Indicates that the request is being made too frequently and is more than what the server * can handle.

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

Indicates that the request is not authorized. This can happen due to an invalid access * token in the request.

* * @throws {@link SSOServiceException} *

Base exception class for all service exceptions from SSO service.

* * @public */ export declare class ListAccountsCommand extends ListAccountsCommand_base { }