import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ModifyWorkspaceAccessPropertiesRequest, ModifyWorkspaceAccessPropertiesResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ModifyWorkspaceAccessPropertiesCommand}. */ export interface ModifyWorkspaceAccessPropertiesCommandInput extends ModifyWorkspaceAccessPropertiesRequest { } /** * @public * * The output of {@link ModifyWorkspaceAccessPropertiesCommand}. */ export interface ModifyWorkspaceAccessPropertiesCommandOutput extends ModifyWorkspaceAccessPropertiesResult, __MetadataBearer { } declare const ModifyWorkspaceAccessPropertiesCommand_base: { new (input: ModifyWorkspaceAccessPropertiesCommandInput): import("@smithy/core/client").CommandImpl; new (input: ModifyWorkspaceAccessPropertiesCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Specifies which devices and operating systems users can use to access their WorkSpaces. * For more information, see * Control Device Access.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { WorkSpacesClient, ModifyWorkspaceAccessPropertiesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import * // const { WorkSpacesClient, ModifyWorkspaceAccessPropertiesCommand } = 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 = { // ModifyWorkspaceAccessPropertiesRequest * ResourceId: "STRING_VALUE", // required * WorkspaceAccessProperties: { // WorkspaceAccessProperties * DeviceTypeWindows: "ALLOW" || "DENY", * DeviceTypeOsx: "ALLOW" || "DENY", * DeviceTypeWeb: "ALLOW" || "DENY", * DeviceTypeIos: "ALLOW" || "DENY", * DeviceTypeAndroid: "ALLOW" || "DENY", * DeviceTypeChromeOs: "ALLOW" || "DENY", * DeviceTypeZeroClient: "ALLOW" || "DENY", * DeviceTypeLinux: "ALLOW" || "DENY", * DeviceTypeWorkSpacesThinClient: "ALLOW" || "DENY", * AccessEndpointConfig: { // AccessEndpointConfig * AccessEndpoints: [ // AccessEndpointList // required * { // AccessEndpoint * AccessEndpointType: "STREAMING_WSP", * VpcEndpointId: "STRING_VALUE", * }, * ], * InternetFallbackProtocols: [ // InternetFallbackProtocolList * "PCOIP", * ], * }, * }, * }; * const command = new ModifyWorkspaceAccessPropertiesCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param ModifyWorkspaceAccessPropertiesCommandInput - {@link ModifyWorkspaceAccessPropertiesCommandInput} * @returns {@link ModifyWorkspaceAccessPropertiesCommandOutput} * @see {@link ModifyWorkspaceAccessPropertiesCommandInput} for command's `input` shape. * @see {@link ModifyWorkspaceAccessPropertiesCommandOutput} 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 InvalidParameterCombinationException} (client fault) *

Two or more of the selected parameter values cannot be used together.

* * @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 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 ModifyWorkspaceAccessPropertiesCommand extends ModifyWorkspaceAccessPropertiesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ModifyWorkspaceAccessPropertiesRequest; output: {}; }; sdk: { input: ModifyWorkspaceAccessPropertiesCommandInput; output: ModifyWorkspaceAccessPropertiesCommandOutput; }; }; }