import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeConnectionAliasesRequest, DescribeConnectionAliasesResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeConnectionAliasesCommand}. */ export interface DescribeConnectionAliasesCommandInput extends DescribeConnectionAliasesRequest { } /** * @public * * The output of {@link DescribeConnectionAliasesCommand}. */ export interface DescribeConnectionAliasesCommandOutput extends DescribeConnectionAliasesResult, __MetadataBearer { } declare const DescribeConnectionAliasesCommand_base: { new (input: DescribeConnectionAliasesCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [DescribeConnectionAliasesCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Retrieves a list that describes the connection aliases used for cross-Region * redirection. For more information, see Cross-Region * Redirection for Amazon WorkSpaces.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { WorkSpacesClient, DescribeConnectionAliasesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import * // const { WorkSpacesClient, DescribeConnectionAliasesCommand } = 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 = { // DescribeConnectionAliasesRequest * AliasIds: [ // ConnectionAliasIdList * "STRING_VALUE", * ], * ResourceId: "STRING_VALUE", * Limit: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new DescribeConnectionAliasesCommand(input); * const response = await client.send(command); * // { // DescribeConnectionAliasesResult * // ConnectionAliases: [ // ConnectionAliasList * // { // ConnectionAlias * // ConnectionString: "STRING_VALUE", * // AliasId: "STRING_VALUE", * // State: "CREATING" || "CREATED" || "DELETING", * // OwnerAccountId: "STRING_VALUE", * // Associations: [ // ConnectionAliasAssociationList * // { // ConnectionAliasAssociation * // AssociationStatus: "NOT_ASSOCIATED" || "ASSOCIATED_WITH_OWNER_ACCOUNT" || "ASSOCIATED_WITH_SHARED_ACCOUNT" || "PENDING_ASSOCIATION" || "PENDING_DISASSOCIATION", * // AssociatedAccountId: "STRING_VALUE", * // ResourceId: "STRING_VALUE", * // ConnectionIdentifier: "STRING_VALUE", * // }, * // ], * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param DescribeConnectionAliasesCommandInput - {@link DescribeConnectionAliasesCommandInput} * @returns {@link DescribeConnectionAliasesCommandOutput} * @see {@link DescribeConnectionAliasesCommandInput} for command's `input` shape. * @see {@link DescribeConnectionAliasesCommandOutput} 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 OperationNotSupportedException} (client fault) *

This operation is not supported.

* * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* * * @public */ export declare class DescribeConnectionAliasesCommand extends DescribeConnectionAliasesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeConnectionAliasesRequest; output: DescribeConnectionAliasesResult; }; sdk: { input: DescribeConnectionAliasesCommandInput; output: DescribeConnectionAliasesCommandOutput; }; }; }