import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeConnectClientAddInsRequest, DescribeConnectClientAddInsResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeConnectClientAddInsCommand}. */ export interface DescribeConnectClientAddInsCommandInput extends DescribeConnectClientAddInsRequest { } /** * @public * * The output of {@link DescribeConnectClientAddInsCommand}. */ export interface DescribeConnectClientAddInsCommandOutput extends DescribeConnectClientAddInsResult, __MetadataBearer { } declare const DescribeConnectClientAddInsCommand_base: { new (input: DescribeConnectClientAddInsCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeConnectClientAddInsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Retrieves a list of Connect Customer client add-ins that have been created.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { WorkSpacesClient, DescribeConnectClientAddInsCommand } from "@aws-sdk/client-workspaces"; // ES Modules import * // const { WorkSpacesClient, DescribeConnectClientAddInsCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import * // import type { WorkSpacesClientConfig } from "@aws-sdk/client-workspaces"; * const config = {}; // type is WorkSpacesClientConfig * const client = new WorkSpacesClient(config); * const input = { // DescribeConnectClientAddInsRequest * ResourceId: "STRING_VALUE", // required * NextToken: "STRING_VALUE", * MaxResults: Number("int"), * }; * const command = new DescribeConnectClientAddInsCommand(input); * const response = await client.send(command); * // { // DescribeConnectClientAddInsResult * // AddIns: [ // ConnectClientAddInList * // { // ConnectClientAddIn * // AddInId: "STRING_VALUE", * // ResourceId: "STRING_VALUE", * // Name: "STRING_VALUE", * // URL: "STRING_VALUE", * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param DescribeConnectClientAddInsCommandInput - {@link DescribeConnectClientAddInsCommandInput} * @returns {@link DescribeConnectClientAddInsCommandOutput} * @see {@link DescribeConnectClientAddInsCommandInput} for command's `input` shape. * @see {@link DescribeConnectClientAddInsCommandOutput} for command's `response` shape. * @see {@link WorkSpacesClientResolvedConfig | config} for WorkSpacesClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

The user is not authorized to access a resource.

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

One or more parameter values are not valid.

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

The resource could not be found.

* * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* * * @public */ export declare class DescribeConnectClientAddInsCommand extends DescribeConnectClientAddInsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeConnectClientAddInsRequest; output: DescribeConnectClientAddInsResult; }; sdk: { input: DescribeConnectClientAddInsCommandInput; output: DescribeConnectClientAddInsCommandOutput; }; }; }