@aws-sdk/client-workspaces-web 3.278.0 → 3.281.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/README.md +411 -0
- package/dist-types/commands/AssociateBrowserSettingsCommand.d.ts +6 -0
- package/dist-types/commands/AssociateNetworkSettingsCommand.d.ts +6 -0
- package/dist-types/commands/AssociateTrustStoreCommand.d.ts +6 -0
- package/dist-types/commands/AssociateUserAccessLoggingSettingsCommand.d.ts +6 -0
- package/dist-types/commands/AssociateUserSettingsCommand.d.ts +6 -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 +6 -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 +6 -0
- package/dist-types/commands/DeleteIdentityProviderCommand.d.ts +6 -0
- package/dist-types/commands/DeleteNetworkSettingsCommand.d.ts +6 -0
- package/dist-types/commands/DeletePortalCommand.d.ts +6 -0
- package/dist-types/commands/DeleteTrustStoreCommand.d.ts +6 -0
- package/dist-types/commands/DeleteUserAccessLoggingSettingsCommand.d.ts +6 -0
- package/dist-types/commands/DeleteUserSettingsCommand.d.ts +6 -0
- package/dist-types/commands/DisassociateBrowserSettingsCommand.d.ts +6 -0
- package/dist-types/commands/DisassociateNetworkSettingsCommand.d.ts +6 -0
- package/dist-types/commands/DisassociateTrustStoreCommand.d.ts +6 -0
- package/dist-types/commands/DisassociateUserAccessLoggingSettingsCommand.d.ts +6 -0
- package/dist-types/commands/DisassociateUserSettingsCommand.d.ts +6 -0
- package/dist-types/commands/GetBrowserSettingsCommand.d.ts +6 -0
- package/dist-types/commands/GetIdentityProviderCommand.d.ts +6 -0
- package/dist-types/commands/GetNetworkSettingsCommand.d.ts +6 -0
- package/dist-types/commands/GetPortalCommand.d.ts +6 -0
- package/dist-types/commands/GetPortalServiceProviderMetadataCommand.d.ts +6 -0
- package/dist-types/commands/GetTrustStoreCertificateCommand.d.ts +6 -0
- package/dist-types/commands/GetTrustStoreCommand.d.ts +6 -0
- package/dist-types/commands/GetUserAccessLoggingSettingsCommand.d.ts +6 -0
- package/dist-types/commands/GetUserSettingsCommand.d.ts +6 -0
- package/dist-types/commands/ListBrowserSettingsCommand.d.ts +6 -0
- package/dist-types/commands/ListIdentityProvidersCommand.d.ts +6 -0
- package/dist-types/commands/ListNetworkSettingsCommand.d.ts +6 -0
- package/dist-types/commands/ListPortalsCommand.d.ts +6 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -0
- package/dist-types/commands/ListTrustStoreCertificatesCommand.d.ts +6 -0
- package/dist-types/commands/ListTrustStoresCommand.d.ts +6 -0
- package/dist-types/commands/ListUserAccessLoggingSettingsCommand.d.ts +6 -0
- package/dist-types/commands/ListUserSettingsCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateBrowserSettingsCommand.d.ts +6 -0
- package/dist-types/commands/UpdateIdentityProviderCommand.d.ts +6 -0
- package/dist-types/commands/UpdateNetworkSettingsCommand.d.ts +6 -0
- package/dist-types/commands/UpdatePortalCommand.d.ts +6 -0
- package/dist-types/commands/UpdateTrustStoreCommand.d.ts +6 -0
- package/dist-types/commands/UpdateUserAccessLoggingSettingsCommand.d.ts +6 -0
- package/dist-types/commands/UpdateUserSettingsCommand.d.ts +6 -0
- package/package.json +6 -6
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DeleteIdentityProviderRequest, DeleteIdentityProviderResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteIdentityProviderCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteIdentityProviderCommandInput extends DeleteIdentityProviderRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteIdentityProviderCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteIdentityProviderCommandOutput extends DeleteIdentityProviderResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DeleteNetworkSettingsRequest, DeleteNetworkSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteNetworkSettingsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteNetworkSettingsCommandInput extends DeleteNetworkSettingsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteNetworkSettingsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteNetworkSettingsCommandOutput extends DeleteNetworkSettingsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DeletePortalRequest, DeletePortalResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeletePortalCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeletePortalCommandInput extends DeletePortalRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeletePortalCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeletePortalCommandOutput extends DeletePortalResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DeleteTrustStoreRequest, DeleteTrustStoreResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteTrustStoreCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteTrustStoreCommandInput extends DeleteTrustStoreRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteTrustStoreCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteTrustStoreCommandOutput extends DeleteTrustStoreResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DeleteUserAccessLoggingSettingsRequest, DeleteUserAccessLoggingSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteUserAccessLoggingSettingsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteUserAccessLoggingSettingsCommandInput extends DeleteUserAccessLoggingSettingsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteUserAccessLoggingSettingsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteUserAccessLoggingSettingsCommandOutput extends DeleteUserAccessLoggingSettingsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DeleteUserSettingsRequest, DeleteUserSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteUserSettingsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteUserSettingsCommandInput extends DeleteUserSettingsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteUserSettingsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteUserSettingsCommandOutput extends DeleteUserSettingsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DisassociateBrowserSettingsRequest, DisassociateBrowserSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DisassociateBrowserSettingsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DisassociateBrowserSettingsCommandInput extends DisassociateBrowserSettingsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DisassociateBrowserSettingsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DisassociateBrowserSettingsCommandOutput extends DisassociateBrowserSettingsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DisassociateNetworkSettingsRequest, DisassociateNetworkSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DisassociateNetworkSettingsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DisassociateNetworkSettingsCommandInput extends DisassociateNetworkSettingsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DisassociateNetworkSettingsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DisassociateNetworkSettingsCommandOutput extends DisassociateNetworkSettingsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DisassociateTrustStoreRequest, DisassociateTrustStoreResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DisassociateTrustStoreCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DisassociateTrustStoreCommandInput extends DisassociateTrustStoreRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DisassociateTrustStoreCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DisassociateTrustStoreCommandOutput extends DisassociateTrustStoreResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DisassociateUserAccessLoggingSettingsRequest, DisassociateUserAccessLoggingSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DisassociateUserAccessLoggingSettingsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DisassociateUserAccessLoggingSettingsCommandInput extends DisassociateUserAccessLoggingSettingsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DisassociateUserAccessLoggingSettingsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DisassociateUserAccessLoggingSettingsCommandOutput extends DisassociateUserAccessLoggingSettingsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DisassociateUserSettingsRequest, DisassociateUserSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DisassociateUserSettingsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DisassociateUserSettingsCommandInput extends DisassociateUserSettingsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DisassociateUserSettingsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DisassociateUserSettingsCommandOutput extends DisassociateUserSettingsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { GetBrowserSettingsRequest, GetBrowserSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetBrowserSettingsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetBrowserSettingsCommandInput extends GetBrowserSettingsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetBrowserSettingsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetBrowserSettingsCommandOutput extends GetBrowserSettingsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { GetIdentityProviderRequest, GetIdentityProviderResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetIdentityProviderCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetIdentityProviderCommandInput extends GetIdentityProviderRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetIdentityProviderCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetIdentityProviderCommandOutput extends GetIdentityProviderResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { GetNetworkSettingsRequest, GetNetworkSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetNetworkSettingsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetNetworkSettingsCommandInput extends GetNetworkSettingsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetNetworkSettingsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetNetworkSettingsCommandOutput extends GetNetworkSettingsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { GetPortalRequest, GetPortalResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetPortalCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetPortalCommandInput extends GetPortalRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetPortalCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetPortalCommandOutput extends GetPortalResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { GetPortalServiceProviderMetadataRequest, GetPortalServiceProviderMetadataResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetPortalServiceProviderMetadataCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetPortalServiceProviderMetadataCommandInput extends GetPortalServiceProviderMetadataRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetPortalServiceProviderMetadataCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetPortalServiceProviderMetadataCommandOutput extends GetPortalServiceProviderMetadataResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { GetTrustStoreCertificateRequest, GetTrustStoreCertificateResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetTrustStoreCertificateCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetTrustStoreCertificateCommandInput extends GetTrustStoreCertificateRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetTrustStoreCertificateCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetTrustStoreCertificateCommandOutput extends GetTrustStoreCertificateResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { GetTrustStoreRequest, GetTrustStoreResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetTrustStoreCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetTrustStoreCommandInput extends GetTrustStoreRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetTrustStoreCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetTrustStoreCommandOutput extends GetTrustStoreResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { GetUserAccessLoggingSettingsRequest, GetUserAccessLoggingSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetUserAccessLoggingSettingsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetUserAccessLoggingSettingsCommandInput extends GetUserAccessLoggingSettingsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetUserAccessLoggingSettingsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetUserAccessLoggingSettingsCommandOutput extends GetUserAccessLoggingSettingsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { GetUserSettingsRequest, GetUserSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetUserSettingsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetUserSettingsCommandInput extends GetUserSettingsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetUserSettingsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetUserSettingsCommandOutput extends GetUserSettingsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListBrowserSettingsRequest, ListBrowserSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListBrowserSettingsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListBrowserSettingsCommandInput extends ListBrowserSettingsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListBrowserSettingsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListBrowserSettingsCommandOutput extends ListBrowserSettingsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListIdentityProvidersRequest, ListIdentityProvidersResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListIdentityProvidersCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListIdentityProvidersCommandInput extends ListIdentityProvidersRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListIdentityProvidersCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListIdentityProvidersCommandOutput extends ListIdentityProvidersResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListNetworkSettingsRequest, ListNetworkSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListNetworkSettingsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListNetworkSettingsCommandInput extends ListNetworkSettingsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListNetworkSettingsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListNetworkSettingsCommandOutput extends ListNetworkSettingsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListPortalsRequest, ListPortalsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListPortalsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListPortalsCommandInput extends ListPortalsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListPortalsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListPortalsCommandOutput extends ListPortalsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListTagsForResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListTagsForResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListTrustStoreCertificatesRequest, ListTrustStoreCertificatesResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListTrustStoreCertificatesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListTrustStoreCertificatesCommandInput extends ListTrustStoreCertificatesRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListTrustStoreCertificatesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListTrustStoreCertificatesCommandOutput extends ListTrustStoreCertificatesResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListTrustStoresRequest, ListTrustStoresResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListTrustStoresCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListTrustStoresCommandInput extends ListTrustStoresRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListTrustStoresCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListTrustStoresCommandOutput extends ListTrustStoresResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListUserAccessLoggingSettingsRequest, ListUserAccessLoggingSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListUserAccessLoggingSettingsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListUserAccessLoggingSettingsCommandInput extends ListUserAccessLoggingSettingsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListUserAccessLoggingSettingsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListUserAccessLoggingSettingsCommandOutput extends ListUserAccessLoggingSettingsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListUserSettingsRequest, ListUserSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListUserSettingsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListUserSettingsCommandInput extends ListUserSettingsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListUserSettingsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListUserSettingsCommandOutput extends ListUserSettingsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link TagResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link TagResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UntagResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UntagResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { UpdateBrowserSettingsRequest, UpdateBrowserSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateBrowserSettingsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateBrowserSettingsCommandInput extends UpdateBrowserSettingsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateBrowserSettingsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateBrowserSettingsCommandOutput extends UpdateBrowserSettingsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { UpdateIdentityProviderRequest, UpdateIdentityProviderResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateIdentityProviderCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateIdentityProviderCommandInput extends UpdateIdentityProviderRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateIdentityProviderCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateIdentityProviderCommandOutput extends UpdateIdentityProviderResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { UpdateNetworkSettingsRequest, UpdateNetworkSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateNetworkSettingsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateNetworkSettingsCommandInput extends UpdateNetworkSettingsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateNetworkSettingsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateNetworkSettingsCommandOutput extends UpdateNetworkSettingsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { UpdatePortalRequest, UpdatePortalResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdatePortalCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdatePortalCommandInput extends UpdatePortalRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdatePortalCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdatePortalCommandOutput extends UpdatePortalResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { UpdateTrustStoreRequest, UpdateTrustStoreResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateTrustStoreCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateTrustStoreCommandInput extends UpdateTrustStoreRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateTrustStoreCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateTrustStoreCommandOutput extends UpdateTrustStoreResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { UpdateUserAccessLoggingSettingsRequest, UpdateUserAccessLoggingSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateUserAccessLoggingSettingsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateUserAccessLoggingSettingsCommandInput extends UpdateUserAccessLoggingSettingsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateUserAccessLoggingSettingsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateUserAccessLoggingSettingsCommandOutput extends UpdateUserAccessLoggingSettingsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { UpdateUserSettingsRequest, UpdateUserSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateUserSettingsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateUserSettingsCommandInput extends UpdateUserSettingsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateUserSettingsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateUserSettingsCommandOutput extends UpdateUserSettingsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|