@aws-sdk/client-workspaces-web 3.325.0 → 3.327.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/AssociateBrowserSettingsCommand.d.ts +7 -0
- package/dist-types/commands/AssociateNetworkSettingsCommand.d.ts +7 -0
- package/dist-types/commands/AssociateTrustStoreCommand.d.ts +7 -0
- package/dist-types/commands/AssociateUserAccessLoggingSettingsCommand.d.ts +7 -0
- package/dist-types/commands/AssociateUserSettingsCommand.d.ts +7 -0
- package/dist-types/commands/CreateBrowserSettingsCommand.d.ts +6 -0
- package/dist-types/commands/CreateIdentityProviderCommand.d.ts +6 -0
- package/dist-types/commands/CreateNetworkSettingsCommand.d.ts +6 -0
- package/dist-types/commands/CreatePortalCommand.d.ts +7 -0
- package/dist-types/commands/CreateTrustStoreCommand.d.ts +6 -0
- package/dist-types/commands/CreateUserAccessLoggingSettingsCommand.d.ts +6 -0
- package/dist-types/commands/CreateUserSettingsCommand.d.ts +6 -0
- package/dist-types/commands/DeleteBrowserSettingsCommand.d.ts +4 -0
- package/dist-types/commands/DeleteIdentityProviderCommand.d.ts +4 -0
- package/dist-types/commands/DeleteNetworkSettingsCommand.d.ts +4 -0
- package/dist-types/commands/DeletePortalCommand.d.ts +4 -0
- package/dist-types/commands/DeleteTrustStoreCommand.d.ts +4 -0
- package/dist-types/commands/DeleteUserAccessLoggingSettingsCommand.d.ts +4 -0
- package/dist-types/commands/DeleteUserSettingsCommand.d.ts +4 -0
- package/dist-types/commands/DisassociateBrowserSettingsCommand.d.ts +4 -0
- package/dist-types/commands/DisassociateNetworkSettingsCommand.d.ts +4 -0
- package/dist-types/commands/DisassociateTrustStoreCommand.d.ts +4 -0
- package/dist-types/commands/DisassociateUserAccessLoggingSettingsCommand.d.ts +4 -0
- package/dist-types/commands/DisassociateUserSettingsCommand.d.ts +4 -0
- package/dist-types/commands/GetBrowserSettingsCommand.d.ts +12 -0
- package/dist-types/commands/GetIdentityProviderCommand.d.ts +13 -0
- package/dist-types/commands/GetNetworkSettingsCommand.d.ts +18 -0
- package/dist-types/commands/GetPortalCommand.d.ts +21 -0
- package/dist-types/commands/GetPortalServiceProviderMetadataCommand.d.ts +7 -0
- package/dist-types/commands/GetTrustStoreCertificateCommand.d.ts +14 -0
- package/dist-types/commands/GetTrustStoreCommand.d.ts +11 -0
- package/dist-types/commands/GetUserAccessLoggingSettingsCommand.d.ts +12 -0
- package/dist-types/commands/GetUserSettingsCommand.d.ts +18 -0
- package/dist-types/commands/ListBrowserSettingsCommand.d.ts +11 -0
- package/dist-types/commands/ListIdentityProvidersCommand.d.ts +13 -0
- package/dist-types/commands/ListNetworkSettingsCommand.d.ts +12 -0
- package/dist-types/commands/ListPortalsCommand.d.ts +23 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
- package/dist-types/commands/ListTrustStoreCertificatesCommand.d.ts +16 -0
- package/dist-types/commands/ListTrustStoresCommand.d.ts +11 -0
- package/dist-types/commands/ListUserAccessLoggingSettingsCommand.d.ts +12 -0
- package/dist-types/commands/ListUserSettingsCommand.d.ts +18 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateBrowserSettingsCommand.d.ts +12 -0
- package/dist-types/commands/UpdateIdentityProviderCommand.d.ts +13 -0
- package/dist-types/commands/UpdateNetworkSettingsCommand.d.ts +18 -0
- package/dist-types/commands/UpdatePortalCommand.d.ts +21 -0
- package/dist-types/commands/UpdateTrustStoreCommand.d.ts +6 -0
- package/dist-types/commands/UpdateUserAccessLoggingSettingsCommand.d.ts +12 -0
- package/dist-types/commands/UpdateUserSettingsCommand.d.ts +18 -0
- package/package.json +7 -7
|
@@ -32,6 +32,11 @@ export interface AssociateBrowserSettingsCommandOutput extends AssociateBrowserS
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new AssociateBrowserSettingsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // AssociateBrowserSettingsResponse
|
|
36
|
+
* // portalArn: "STRING_VALUE", // required
|
|
37
|
+
* // browserSettingsArn: "STRING_VALUE", // required
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param AssociateBrowserSettingsCommandInput - {@link AssociateBrowserSettingsCommandInput}
|
|
@@ -58,6 +63,8 @@ export interface AssociateBrowserSettingsCommandOutput extends AssociateBrowserS
|
|
|
58
63
|
* @throws {@link ValidationException} (client fault)
|
|
59
64
|
* <p>There is a validation error.</p>
|
|
60
65
|
*
|
|
66
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
61
68
|
*
|
|
62
69
|
*/
|
|
63
70
|
export declare class AssociateBrowserSettingsCommand extends $Command<AssociateBrowserSettingsCommandInput, AssociateBrowserSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -32,6 +32,11 @@ export interface AssociateNetworkSettingsCommandOutput extends AssociateNetworkS
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new AssociateNetworkSettingsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // AssociateNetworkSettingsResponse
|
|
36
|
+
* // portalArn: "STRING_VALUE", // required
|
|
37
|
+
* // networkSettingsArn: "STRING_VALUE", // required
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param AssociateNetworkSettingsCommandInput - {@link AssociateNetworkSettingsCommandInput}
|
|
@@ -58,6 +63,8 @@ export interface AssociateNetworkSettingsCommandOutput extends AssociateNetworkS
|
|
|
58
63
|
* @throws {@link ValidationException} (client fault)
|
|
59
64
|
* <p>There is a validation error.</p>
|
|
60
65
|
*
|
|
66
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
61
68
|
*
|
|
62
69
|
*/
|
|
63
70
|
export declare class AssociateNetworkSettingsCommand extends $Command<AssociateNetworkSettingsCommandInput, AssociateNetworkSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -32,6 +32,11 @@ export interface AssociateTrustStoreCommandOutput extends AssociateTrustStoreRes
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new AssociateTrustStoreCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // AssociateTrustStoreResponse
|
|
36
|
+
* // portalArn: "STRING_VALUE", // required
|
|
37
|
+
* // trustStoreArn: "STRING_VALUE", // required
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param AssociateTrustStoreCommandInput - {@link AssociateTrustStoreCommandInput}
|
|
@@ -55,6 +60,8 @@ export interface AssociateTrustStoreCommandOutput extends AssociateTrustStoreRes
|
|
|
55
60
|
* @throws {@link ValidationException} (client fault)
|
|
56
61
|
* <p>There is a validation error.</p>
|
|
57
62
|
*
|
|
63
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
58
65
|
*
|
|
59
66
|
*/
|
|
60
67
|
export declare class AssociateTrustStoreCommand extends $Command<AssociateTrustStoreCommandInput, AssociateTrustStoreCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -32,6 +32,11 @@ export interface AssociateUserAccessLoggingSettingsCommandOutput extends Associa
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new AssociateUserAccessLoggingSettingsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // AssociateUserAccessLoggingSettingsResponse
|
|
36
|
+
* // portalArn: "STRING_VALUE", // required
|
|
37
|
+
* // userAccessLoggingSettingsArn: "STRING_VALUE", // required
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param AssociateUserAccessLoggingSettingsCommandInput - {@link AssociateUserAccessLoggingSettingsCommandInput}
|
|
@@ -58,6 +63,8 @@ export interface AssociateUserAccessLoggingSettingsCommandOutput extends Associa
|
|
|
58
63
|
* @throws {@link ValidationException} (client fault)
|
|
59
64
|
* <p>There is a validation error.</p>
|
|
60
65
|
*
|
|
66
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
61
68
|
*
|
|
62
69
|
*/
|
|
63
70
|
export declare class AssociateUserAccessLoggingSettingsCommand extends $Command<AssociateUserAccessLoggingSettingsCommandInput, AssociateUserAccessLoggingSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -32,6 +32,11 @@ export interface AssociateUserSettingsCommandOutput extends AssociateUserSetting
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new AssociateUserSettingsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // AssociateUserSettingsResponse
|
|
36
|
+
* // portalArn: "STRING_VALUE", // required
|
|
37
|
+
* // userSettingsArn: "STRING_VALUE", // required
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param AssociateUserSettingsCommandInput - {@link AssociateUserSettingsCommandInput}
|
|
@@ -58,6 +63,8 @@ export interface AssociateUserSettingsCommandOutput extends AssociateUserSetting
|
|
|
58
63
|
* @throws {@link ValidationException} (client fault)
|
|
59
64
|
* <p>There is a validation error.</p>
|
|
60
65
|
*
|
|
66
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
61
68
|
*
|
|
62
69
|
*/
|
|
63
70
|
export declare class AssociateUserSettingsCommand extends $Command<AssociateUserSettingsCommandInput, AssociateUserSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -44,6 +44,10 @@ export interface CreateBrowserSettingsCommandOutput extends CreateBrowserSetting
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new CreateBrowserSettingsCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // { // CreateBrowserSettingsResponse
|
|
48
|
+
* // browserSettingsArn: "STRING_VALUE", // required
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
47
51
|
* ```
|
|
48
52
|
*
|
|
49
53
|
* @param CreateBrowserSettingsCommandInput - {@link CreateBrowserSettingsCommandInput}
|
|
@@ -73,6 +77,8 @@ export interface CreateBrowserSettingsCommandOutput extends CreateBrowserSetting
|
|
|
73
77
|
* @throws {@link ValidationException} (client fault)
|
|
74
78
|
* <p>There is a validation error.</p>
|
|
75
79
|
*
|
|
80
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
76
82
|
*
|
|
77
83
|
*/
|
|
78
84
|
export declare class CreateBrowserSettingsCommand extends $Command<CreateBrowserSettingsCommandInput, CreateBrowserSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -37,6 +37,10 @@ export interface CreateIdentityProviderCommandOutput extends CreateIdentityProvi
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new CreateIdentityProviderCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // CreateIdentityProviderResponse
|
|
41
|
+
* // identityProviderArn: "STRING_VALUE", // required
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
40
44
|
* ```
|
|
41
45
|
*
|
|
42
46
|
* @param CreateIdentityProviderCommandInput - {@link CreateIdentityProviderCommandInput}
|
|
@@ -66,6 +70,8 @@ export interface CreateIdentityProviderCommandOutput extends CreateIdentityProvi
|
|
|
66
70
|
* @throws {@link ValidationException} (client fault)
|
|
67
71
|
* <p>There is a validation error.</p>
|
|
68
72
|
*
|
|
73
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
69
75
|
*
|
|
70
76
|
*/
|
|
71
77
|
export declare class CreateIdentityProviderCommand extends $Command<CreateIdentityProviderCommandInput, CreateIdentityProviderCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -46,6 +46,10 @@ export interface CreateNetworkSettingsCommandOutput extends CreateNetworkSetting
|
|
|
46
46
|
* };
|
|
47
47
|
* const command = new CreateNetworkSettingsCommand(input);
|
|
48
48
|
* const response = await client.send(command);
|
|
49
|
+
* // { // CreateNetworkSettingsResponse
|
|
50
|
+
* // networkSettingsArn: "STRING_VALUE", // required
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
49
53
|
* ```
|
|
50
54
|
*
|
|
51
55
|
* @param CreateNetworkSettingsCommandInput - {@link CreateNetworkSettingsCommandInput}
|
|
@@ -72,6 +76,8 @@ export interface CreateNetworkSettingsCommandOutput extends CreateNetworkSetting
|
|
|
72
76
|
* @throws {@link ValidationException} (client fault)
|
|
73
77
|
* <p>There is a validation error.</p>
|
|
74
78
|
*
|
|
79
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
75
81
|
*
|
|
76
82
|
*/
|
|
77
83
|
export declare class CreateNetworkSettingsCommand extends $Command<CreateNetworkSettingsCommandInput, CreateNetworkSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -43,6 +43,11 @@ export interface CreatePortalCommandOutput extends CreatePortalResponse, __Metad
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new CreatePortalCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // { // CreatePortalResponse
|
|
47
|
+
* // portalArn: "STRING_VALUE", // required
|
|
48
|
+
* // portalEndpoint: "STRING_VALUE", // required
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
46
51
|
* ```
|
|
47
52
|
*
|
|
48
53
|
* @param CreatePortalCommandInput - {@link CreatePortalCommandInput}
|
|
@@ -72,6 +77,8 @@ export interface CreatePortalCommandOutput extends CreatePortalResponse, __Metad
|
|
|
72
77
|
* @throws {@link ValidationException} (client fault)
|
|
73
78
|
* <p>There is a validation error.</p>
|
|
74
79
|
*
|
|
80
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
75
82
|
*
|
|
76
83
|
*/
|
|
77
84
|
export declare class CreatePortalCommand extends $Command<CreatePortalCommandInput, CreatePortalCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -44,6 +44,10 @@ export interface CreateTrustStoreCommandOutput extends CreateTrustStoreResponse,
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new CreateTrustStoreCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // { // CreateTrustStoreResponse
|
|
48
|
+
* // trustStoreArn: "STRING_VALUE", // required
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
47
51
|
* ```
|
|
48
52
|
*
|
|
49
53
|
* @param CreateTrustStoreCommandInput - {@link CreateTrustStoreCommandInput}
|
|
@@ -70,6 +74,8 @@ export interface CreateTrustStoreCommandOutput extends CreateTrustStoreResponse,
|
|
|
70
74
|
* @throws {@link ValidationException} (client fault)
|
|
71
75
|
* <p>There is a validation error.</p>
|
|
72
76
|
*
|
|
77
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
73
79
|
*
|
|
74
80
|
*/
|
|
75
81
|
export declare class CreateTrustStoreCommand extends $Command<CreateTrustStoreCommandInput, CreateTrustStoreCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -38,6 +38,10 @@ export interface CreateUserAccessLoggingSettingsCommandOutput extends CreateUser
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new CreateUserAccessLoggingSettingsCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // CreateUserAccessLoggingSettingsResponse
|
|
42
|
+
* // userAccessLoggingSettingsArn: "STRING_VALUE", // required
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
41
45
|
* ```
|
|
42
46
|
*
|
|
43
47
|
* @param CreateUserAccessLoggingSettingsCommandInput - {@link CreateUserAccessLoggingSettingsCommandInput}
|
|
@@ -64,6 +68,8 @@ export interface CreateUserAccessLoggingSettingsCommandOutput extends CreateUser
|
|
|
64
68
|
* @throws {@link ValidationException} (client fault)
|
|
65
69
|
* <p>There is a validation error.</p>
|
|
66
70
|
*
|
|
71
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
67
73
|
*
|
|
68
74
|
*/
|
|
69
75
|
export declare class CreateUserAccessLoggingSettingsCommand extends $Command<CreateUserAccessLoggingSettingsCommandInput, CreateUserAccessLoggingSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -46,6 +46,10 @@ export interface CreateUserSettingsCommandOutput extends CreateUserSettingsRespo
|
|
|
46
46
|
* };
|
|
47
47
|
* const command = new CreateUserSettingsCommand(input);
|
|
48
48
|
* const response = await client.send(command);
|
|
49
|
+
* // { // CreateUserSettingsResponse
|
|
50
|
+
* // userSettingsArn: "STRING_VALUE", // required
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
49
53
|
* ```
|
|
50
54
|
*
|
|
51
55
|
* @param CreateUserSettingsCommandInput - {@link CreateUserSettingsCommandInput}
|
|
@@ -72,6 +76,8 @@ export interface CreateUserSettingsCommandOutput extends CreateUserSettingsRespo
|
|
|
72
76
|
* @throws {@link ValidationException} (client fault)
|
|
73
77
|
* <p>There is a validation error.</p>
|
|
74
78
|
*
|
|
79
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
75
81
|
*
|
|
76
82
|
*/
|
|
77
83
|
export declare class CreateUserSettingsCommand extends $Command<CreateUserSettingsCommandInput, CreateUserSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteBrowserSettingsCommandOutput extends DeleteBrowserSetting
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteBrowserSettingsCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteBrowserSettingsCommandInput - {@link DeleteBrowserSettingsCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DeleteBrowserSettingsCommandOutput extends DeleteBrowserSetting
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* <p>There is a validation error.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class DeleteBrowserSettingsCommand extends $Command<DeleteBrowserSettingsCommandInput, DeleteBrowserSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteIdentityProviderCommandOutput extends DeleteIdentityProvi
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteIdentityProviderCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteIdentityProviderCommandInput - {@link DeleteIdentityProviderCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DeleteIdentityProviderCommandOutput extends DeleteIdentityProvi
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* <p>There is a validation error.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class DeleteIdentityProviderCommand extends $Command<DeleteIdentityProviderCommandInput, DeleteIdentityProviderCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteNetworkSettingsCommandOutput extends DeleteNetworkSetting
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteNetworkSettingsCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteNetworkSettingsCommandInput - {@link DeleteNetworkSettingsCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DeleteNetworkSettingsCommandOutput extends DeleteNetworkSetting
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* <p>There is a validation error.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class DeleteNetworkSettingsCommand extends $Command<DeleteNetworkSettingsCommandInput, DeleteNetworkSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeletePortalCommandOutput extends DeletePortalResponse, __Metad
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeletePortalCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeletePortalCommandInput - {@link DeletePortalCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DeletePortalCommandOutput extends DeletePortalResponse, __Metad
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* <p>There is a validation error.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class DeletePortalCommand extends $Command<DeletePortalCommandInput, DeletePortalCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteTrustStoreCommandOutput extends DeleteTrustStoreResponse,
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteTrustStoreCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteTrustStoreCommandInput - {@link DeleteTrustStoreCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DeleteTrustStoreCommandOutput extends DeleteTrustStoreResponse,
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* <p>There is a validation error.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class DeleteTrustStoreCommand extends $Command<DeleteTrustStoreCommandInput, DeleteTrustStoreCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteUserAccessLoggingSettingsCommandOutput extends DeleteUser
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteUserAccessLoggingSettingsCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteUserAccessLoggingSettingsCommandInput - {@link DeleteUserAccessLoggingSettingsCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DeleteUserAccessLoggingSettingsCommandOutput extends DeleteUser
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* <p>There is a validation error.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class DeleteUserAccessLoggingSettingsCommand extends $Command<DeleteUserAccessLoggingSettingsCommandInput, DeleteUserAccessLoggingSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteUserSettingsCommandOutput extends DeleteUserSettingsRespo
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteUserSettingsCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteUserSettingsCommandInput - {@link DeleteUserSettingsCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DeleteUserSettingsCommandOutput extends DeleteUserSettingsRespo
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* <p>There is a validation error.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class DeleteUserSettingsCommand extends $Command<DeleteUserSettingsCommandInput, DeleteUserSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DisassociateBrowserSettingsCommandOutput extends DisassociateBr
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DisassociateBrowserSettingsCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DisassociateBrowserSettingsCommandInput - {@link DisassociateBrowserSettingsCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DisassociateBrowserSettingsCommandOutput extends DisassociateBr
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* <p>There is a validation error.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class DisassociateBrowserSettingsCommand extends $Command<DisassociateBrowserSettingsCommandInput, DisassociateBrowserSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DisassociateNetworkSettingsCommandOutput extends DisassociateNe
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DisassociateNetworkSettingsCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DisassociateNetworkSettingsCommandInput - {@link DisassociateNetworkSettingsCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DisassociateNetworkSettingsCommandOutput extends DisassociateNe
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* <p>There is a validation error.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class DisassociateNetworkSettingsCommand extends $Command<DisassociateNetworkSettingsCommandInput, DisassociateNetworkSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DisassociateTrustStoreCommandOutput extends DisassociateTrustSt
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DisassociateTrustStoreCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DisassociateTrustStoreCommandInput - {@link DisassociateTrustStoreCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DisassociateTrustStoreCommandOutput extends DisassociateTrustSt
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* <p>There is a validation error.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class DisassociateTrustStoreCommand extends $Command<DisassociateTrustStoreCommandInput, DisassociateTrustStoreCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DisassociateUserAccessLoggingSettingsCommandOutput extends Disa
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DisassociateUserAccessLoggingSettingsCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DisassociateUserAccessLoggingSettingsCommandInput - {@link DisassociateUserAccessLoggingSettingsCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DisassociateUserAccessLoggingSettingsCommandOutput extends Disa
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* <p>There is a validation error.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class DisassociateUserAccessLoggingSettingsCommand extends $Command<DisassociateUserAccessLoggingSettingsCommandInput, DisassociateUserAccessLoggingSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DisassociateUserSettingsCommandOutput extends DisassociateUserS
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DisassociateUserSettingsCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DisassociateUserSettingsCommandInput - {@link DisassociateUserSettingsCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DisassociateUserSettingsCommandOutput extends DisassociateUserS
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* <p>There is a validation error.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class DisassociateUserSettingsCommand extends $Command<DisassociateUserSettingsCommandInput, DisassociateUserSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -31,6 +31,16 @@ export interface GetBrowserSettingsCommandOutput extends GetBrowserSettingsRespo
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetBrowserSettingsCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetBrowserSettingsResponse
|
|
35
|
+
* // browserSettings: { // BrowserSettings
|
|
36
|
+
* // browserSettingsArn: "STRING_VALUE", // required
|
|
37
|
+
* // associatedPortalArns: [ // ArnList
|
|
38
|
+
* // "STRING_VALUE",
|
|
39
|
+
* // ],
|
|
40
|
+
* // browserPolicy: "STRING_VALUE",
|
|
41
|
+
* // },
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
34
44
|
* ```
|
|
35
45
|
*
|
|
36
46
|
* @param GetBrowserSettingsCommandInput - {@link GetBrowserSettingsCommandInput}
|
|
@@ -54,6 +64,8 @@ export interface GetBrowserSettingsCommandOutput extends GetBrowserSettingsRespo
|
|
|
54
64
|
* @throws {@link ValidationException} (client fault)
|
|
55
65
|
* <p>There is a validation error.</p>
|
|
56
66
|
*
|
|
67
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
57
69
|
*
|
|
58
70
|
*/
|
|
59
71
|
export declare class GetBrowserSettingsCommand extends $Command<GetBrowserSettingsCommandInput, GetBrowserSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -31,6 +31,17 @@ export interface GetIdentityProviderCommandOutput extends GetIdentityProviderRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetIdentityProviderCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetIdentityProviderResponse
|
|
35
|
+
* // identityProvider: { // IdentityProvider
|
|
36
|
+
* // identityProviderArn: "STRING_VALUE", // required
|
|
37
|
+
* // identityProviderName: "STRING_VALUE",
|
|
38
|
+
* // identityProviderType: "STRING_VALUE",
|
|
39
|
+
* // identityProviderDetails: { // IdentityProviderDetails
|
|
40
|
+
* // "<keys>": "STRING_VALUE",
|
|
41
|
+
* // },
|
|
42
|
+
* // },
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
34
45
|
* ```
|
|
35
46
|
*
|
|
36
47
|
* @param GetIdentityProviderCommandInput - {@link GetIdentityProviderCommandInput}
|
|
@@ -54,6 +65,8 @@ export interface GetIdentityProviderCommandOutput extends GetIdentityProviderRes
|
|
|
54
65
|
* @throws {@link ValidationException} (client fault)
|
|
55
66
|
* <p>There is a validation error.</p>
|
|
56
67
|
*
|
|
68
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
57
70
|
*
|
|
58
71
|
*/
|
|
59
72
|
export declare class GetIdentityProviderCommand extends $Command<GetIdentityProviderCommandInput, GetIdentityProviderCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -31,6 +31,22 @@ export interface GetNetworkSettingsCommandOutput extends GetNetworkSettingsRespo
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetNetworkSettingsCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetNetworkSettingsResponse
|
|
35
|
+
* // networkSettings: { // NetworkSettings
|
|
36
|
+
* // networkSettingsArn: "STRING_VALUE", // required
|
|
37
|
+
* // associatedPortalArns: [ // ArnList
|
|
38
|
+
* // "STRING_VALUE",
|
|
39
|
+
* // ],
|
|
40
|
+
* // vpcId: "STRING_VALUE",
|
|
41
|
+
* // subnetIds: [ // SubnetIdList
|
|
42
|
+
* // "STRING_VALUE",
|
|
43
|
+
* // ],
|
|
44
|
+
* // securityGroupIds: [ // SecurityGroupIdList
|
|
45
|
+
* // "STRING_VALUE",
|
|
46
|
+
* // ],
|
|
47
|
+
* // },
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
34
50
|
* ```
|
|
35
51
|
*
|
|
36
52
|
* @param GetNetworkSettingsCommandInput - {@link GetNetworkSettingsCommandInput}
|
|
@@ -54,6 +70,8 @@ export interface GetNetworkSettingsCommandOutput extends GetNetworkSettingsRespo
|
|
|
54
70
|
* @throws {@link ValidationException} (client fault)
|
|
55
71
|
* <p>There is a validation error.</p>
|
|
56
72
|
*
|
|
73
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
57
75
|
*
|
|
58
76
|
*/
|
|
59
77
|
export declare class GetNetworkSettingsCommand extends $Command<GetNetworkSettingsCommandInput, GetNetworkSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -31,6 +31,25 @@ export interface GetPortalCommandOutput extends GetPortalResponse, __MetadataBea
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetPortalCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetPortalResponse
|
|
35
|
+
* // portal: { // Portal
|
|
36
|
+
* // portalArn: "STRING_VALUE",
|
|
37
|
+
* // rendererType: "STRING_VALUE",
|
|
38
|
+
* // browserType: "STRING_VALUE",
|
|
39
|
+
* // portalStatus: "STRING_VALUE",
|
|
40
|
+
* // portalEndpoint: "STRING_VALUE",
|
|
41
|
+
* // displayName: "STRING_VALUE",
|
|
42
|
+
* // creationDate: new Date("TIMESTAMP"),
|
|
43
|
+
* // browserSettingsArn: "STRING_VALUE",
|
|
44
|
+
* // userSettingsArn: "STRING_VALUE",
|
|
45
|
+
* // networkSettingsArn: "STRING_VALUE",
|
|
46
|
+
* // trustStoreArn: "STRING_VALUE",
|
|
47
|
+
* // statusReason: "STRING_VALUE",
|
|
48
|
+
* // userAccessLoggingSettingsArn: "STRING_VALUE",
|
|
49
|
+
* // authenticationType: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
34
53
|
* ```
|
|
35
54
|
*
|
|
36
55
|
* @param GetPortalCommandInput - {@link GetPortalCommandInput}
|
|
@@ -54,6 +73,8 @@ export interface GetPortalCommandOutput extends GetPortalResponse, __MetadataBea
|
|
|
54
73
|
* @throws {@link ValidationException} (client fault)
|
|
55
74
|
* <p>There is a validation error.</p>
|
|
56
75
|
*
|
|
76
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
57
78
|
*
|
|
58
79
|
*/
|
|
59
80
|
export declare class GetPortalCommand extends $Command<GetPortalCommandInput, GetPortalCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -31,6 +31,11 @@ export interface GetPortalServiceProviderMetadataCommandOutput extends GetPortal
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetPortalServiceProviderMetadataCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetPortalServiceProviderMetadataResponse
|
|
35
|
+
* // portalArn: "STRING_VALUE", // required
|
|
36
|
+
* // serviceProviderSamlMetadata: "STRING_VALUE",
|
|
37
|
+
* // };
|
|
38
|
+
*
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
36
41
|
* @param GetPortalServiceProviderMetadataCommandInput - {@link GetPortalServiceProviderMetadataCommandInput}
|
|
@@ -54,6 +59,8 @@ export interface GetPortalServiceProviderMetadataCommandOutput extends GetPortal
|
|
|
54
59
|
* @throws {@link ValidationException} (client fault)
|
|
55
60
|
* <p>There is a validation error.</p>
|
|
56
61
|
*
|
|
62
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
57
64
|
*
|
|
58
65
|
*/
|
|
59
66
|
export declare class GetPortalServiceProviderMetadataCommand extends $Command<GetPortalServiceProviderMetadataCommandInput, GetPortalServiceProviderMetadataCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -32,6 +32,18 @@ export interface GetTrustStoreCertificateCommandOutput extends GetTrustStoreCert
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetTrustStoreCertificateCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetTrustStoreCertificateResponse
|
|
36
|
+
* // trustStoreArn: "STRING_VALUE",
|
|
37
|
+
* // certificate: { // Certificate
|
|
38
|
+
* // thumbprint: "STRING_VALUE",
|
|
39
|
+
* // subject: "STRING_VALUE",
|
|
40
|
+
* // issuer: "STRING_VALUE",
|
|
41
|
+
* // notValidBefore: new Date("TIMESTAMP"),
|
|
42
|
+
* // notValidAfter: new Date("TIMESTAMP"),
|
|
43
|
+
* // body: "BLOB_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
35
47
|
* ```
|
|
36
48
|
*
|
|
37
49
|
* @param GetTrustStoreCertificateCommandInput - {@link GetTrustStoreCertificateCommandInput}
|
|
@@ -55,6 +67,8 @@ export interface GetTrustStoreCertificateCommandOutput extends GetTrustStoreCert
|
|
|
55
67
|
* @throws {@link ValidationException} (client fault)
|
|
56
68
|
* <p>There is a validation error.</p>
|
|
57
69
|
*
|
|
70
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
58
72
|
*
|
|
59
73
|
*/
|
|
60
74
|
export declare class GetTrustStoreCertificateCommand extends $Command<GetTrustStoreCertificateCommandInput, GetTrustStoreCertificateCommandOutput, WorkSpacesWebClientResolvedConfig> {
|