@aws-sdk/client-workspaces-web 3.44.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/CHANGELOG.md +11 -0
- package/LICENSE +201 -0
- package/README.md +208 -0
- package/dist-cjs/WorkSpacesWeb.js +667 -0
- package/dist-cjs/WorkSpacesWebClient.js +35 -0
- package/dist-cjs/commands/AssociateBrowserSettingsCommand.js +36 -0
- package/dist-cjs/commands/AssociateNetworkSettingsCommand.js +36 -0
- package/dist-cjs/commands/AssociateTrustStoreCommand.js +36 -0
- package/dist-cjs/commands/AssociateUserSettingsCommand.js +36 -0
- package/dist-cjs/commands/CreateBrowserSettingsCommand.js +36 -0
- package/dist-cjs/commands/CreateIdentityProviderCommand.js +36 -0
- package/dist-cjs/commands/CreateNetworkSettingsCommand.js +36 -0
- package/dist-cjs/commands/CreatePortalCommand.js +36 -0
- package/dist-cjs/commands/CreateTrustStoreCommand.js +36 -0
- package/dist-cjs/commands/CreateUserSettingsCommand.js +36 -0
- package/dist-cjs/commands/DeleteBrowserSettingsCommand.js +36 -0
- package/dist-cjs/commands/DeleteIdentityProviderCommand.js +36 -0
- package/dist-cjs/commands/DeleteNetworkSettingsCommand.js +36 -0
- package/dist-cjs/commands/DeletePortalCommand.js +36 -0
- package/dist-cjs/commands/DeleteTrustStoreCommand.js +36 -0
- package/dist-cjs/commands/DeleteUserSettingsCommand.js +36 -0
- package/dist-cjs/commands/DisassociateBrowserSettingsCommand.js +36 -0
- package/dist-cjs/commands/DisassociateNetworkSettingsCommand.js +36 -0
- package/dist-cjs/commands/DisassociateTrustStoreCommand.js +36 -0
- package/dist-cjs/commands/DisassociateUserSettingsCommand.js +36 -0
- package/dist-cjs/commands/GetBrowserSettingsCommand.js +36 -0
- package/dist-cjs/commands/GetIdentityProviderCommand.js +36 -0
- package/dist-cjs/commands/GetNetworkSettingsCommand.js +36 -0
- package/dist-cjs/commands/GetPortalCommand.js +36 -0
- package/dist-cjs/commands/GetPortalServiceProviderMetadataCommand.js +36 -0
- package/dist-cjs/commands/GetTrustStoreCertificateCommand.js +36 -0
- package/dist-cjs/commands/GetTrustStoreCommand.js +36 -0
- package/dist-cjs/commands/GetUserSettingsCommand.js +36 -0
- package/dist-cjs/commands/ListBrowserSettingsCommand.js +36 -0
- package/dist-cjs/commands/ListIdentityProvidersCommand.js +36 -0
- package/dist-cjs/commands/ListNetworkSettingsCommand.js +36 -0
- package/dist-cjs/commands/ListPortalsCommand.js +36 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +36 -0
- package/dist-cjs/commands/ListTrustStoreCertificatesCommand.js +36 -0
- package/dist-cjs/commands/ListTrustStoresCommand.js +36 -0
- package/dist-cjs/commands/ListUserSettingsCommand.js +36 -0
- package/dist-cjs/commands/TagResourceCommand.js +36 -0
- package/dist-cjs/commands/UntagResourceCommand.js +36 -0
- package/dist-cjs/commands/UpdateBrowserSettingsCommand.js +36 -0
- package/dist-cjs/commands/UpdateIdentityProviderCommand.js +36 -0
- package/dist-cjs/commands/UpdateNetworkSettingsCommand.js +36 -0
- package/dist-cjs/commands/UpdatePortalCommand.js +36 -0
- package/dist-cjs/commands/UpdateTrustStoreCommand.js +36 -0
- package/dist-cjs/commands/UpdateUserSettingsCommand.js +36 -0
- package/dist-cjs/commands/index.js +47 -0
- package/dist-cjs/endpoints.js +130 -0
- package/dist-cjs/index.js +8 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +712 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListBrowserSettingsPaginator.js +35 -0
- package/dist-cjs/pagination/ListIdentityProvidersPaginator.js +35 -0
- package/dist-cjs/pagination/ListNetworkSettingsPaginator.js +35 -0
- package/dist-cjs/pagination/ListPortalsPaginator.js +35 -0
- package/dist-cjs/pagination/ListTrustStoreCertificatesPaginator.js +35 -0
- package/dist-cjs/pagination/ListTrustStoresPaginator.js +35 -0
- package/dist-cjs/pagination/ListUserSettingsPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +11 -0
- package/dist-cjs/protocols/Aws_restJson1.js +5533 -0
- package/dist-cjs/runtimeConfig.browser.js +40 -0
- package/dist-cjs/runtimeConfig.js +44 -0
- package/dist-cjs/runtimeConfig.native.js +16 -0
- package/dist-cjs/runtimeConfig.shared.js +17 -0
- package/dist-es/WorkSpacesWeb.js +670 -0
- package/dist-es/WorkSpacesWebClient.js +37 -0
- package/dist-es/commands/AssociateBrowserSettingsCommand.js +39 -0
- package/dist-es/commands/AssociateNetworkSettingsCommand.js +39 -0
- package/dist-es/commands/AssociateTrustStoreCommand.js +39 -0
- package/dist-es/commands/AssociateUserSettingsCommand.js +39 -0
- package/dist-es/commands/CreateBrowserSettingsCommand.js +39 -0
- package/dist-es/commands/CreateIdentityProviderCommand.js +39 -0
- package/dist-es/commands/CreateNetworkSettingsCommand.js +39 -0
- package/dist-es/commands/CreatePortalCommand.js +39 -0
- package/dist-es/commands/CreateTrustStoreCommand.js +39 -0
- package/dist-es/commands/CreateUserSettingsCommand.js +39 -0
- package/dist-es/commands/DeleteBrowserSettingsCommand.js +39 -0
- package/dist-es/commands/DeleteIdentityProviderCommand.js +39 -0
- package/dist-es/commands/DeleteNetworkSettingsCommand.js +39 -0
- package/dist-es/commands/DeletePortalCommand.js +39 -0
- package/dist-es/commands/DeleteTrustStoreCommand.js +39 -0
- package/dist-es/commands/DeleteUserSettingsCommand.js +39 -0
- package/dist-es/commands/DisassociateBrowserSettingsCommand.js +39 -0
- package/dist-es/commands/DisassociateNetworkSettingsCommand.js +39 -0
- package/dist-es/commands/DisassociateTrustStoreCommand.js +39 -0
- package/dist-es/commands/DisassociateUserSettingsCommand.js +39 -0
- package/dist-es/commands/GetBrowserSettingsCommand.js +39 -0
- package/dist-es/commands/GetIdentityProviderCommand.js +39 -0
- package/dist-es/commands/GetNetworkSettingsCommand.js +39 -0
- package/dist-es/commands/GetPortalCommand.js +39 -0
- package/dist-es/commands/GetPortalServiceProviderMetadataCommand.js +39 -0
- package/dist-es/commands/GetTrustStoreCertificateCommand.js +39 -0
- package/dist-es/commands/GetTrustStoreCommand.js +39 -0
- package/dist-es/commands/GetUserSettingsCommand.js +39 -0
- package/dist-es/commands/ListBrowserSettingsCommand.js +39 -0
- package/dist-es/commands/ListIdentityProvidersCommand.js +39 -0
- package/dist-es/commands/ListNetworkSettingsCommand.js +39 -0
- package/dist-es/commands/ListPortalsCommand.js +39 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +39 -0
- package/dist-es/commands/ListTrustStoreCertificatesCommand.js +39 -0
- package/dist-es/commands/ListTrustStoresCommand.js +39 -0
- package/dist-es/commands/ListUserSettingsCommand.js +39 -0
- package/dist-es/commands/TagResourceCommand.js +39 -0
- package/dist-es/commands/UntagResourceCommand.js +39 -0
- package/dist-es/commands/UpdateBrowserSettingsCommand.js +39 -0
- package/dist-es/commands/UpdateIdentityProviderCommand.js +39 -0
- package/dist-es/commands/UpdateNetworkSettingsCommand.js +39 -0
- package/dist-es/commands/UpdatePortalCommand.js +39 -0
- package/dist-es/commands/UpdateTrustStoreCommand.js +39 -0
- package/dist-es/commands/UpdateUserSettingsCommand.js +39 -0
- package/dist-es/commands/index.js +44 -0
- package/dist-es/endpoints.js +126 -0
- package/dist-es/index.js +5 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +484 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListBrowserSettingsPaginator.js +74 -0
- package/dist-es/pagination/ListIdentityProvidersPaginator.js +74 -0
- package/dist-es/pagination/ListNetworkSettingsPaginator.js +74 -0
- package/dist-es/pagination/ListPortalsPaginator.js +74 -0
- package/dist-es/pagination/ListTrustStoreCertificatesPaginator.js +74 -0
- package/dist-es/pagination/ListTrustStoresPaginator.js +74 -0
- package/dist-es/pagination/ListUserSettingsPaginator.js +74 -0
- package/dist-es/pagination/index.js +8 -0
- package/dist-es/protocols/Aws_restJson1.js +6269 -0
- package/dist-es/runtimeConfig.browser.js +17 -0
- package/dist-es/runtimeConfig.js +21 -0
- package/dist-es/runtimeConfig.native.js +8 -0
- package/dist-es/runtimeConfig.shared.js +13 -0
- package/dist-types/WorkSpacesWeb.d.ts +330 -0
- package/dist-types/WorkSpacesWebClient.d.ts +189 -0
- package/dist-types/commands/AssociateBrowserSettingsCommand.d.ts +35 -0
- package/dist-types/commands/AssociateNetworkSettingsCommand.d.ts +35 -0
- package/dist-types/commands/AssociateTrustStoreCommand.d.ts +35 -0
- package/dist-types/commands/AssociateUserSettingsCommand.d.ts +35 -0
- package/dist-types/commands/CreateBrowserSettingsCommand.d.ts +37 -0
- package/dist-types/commands/CreateIdentityProviderCommand.d.ts +35 -0
- package/dist-types/commands/CreateNetworkSettingsCommand.d.ts +37 -0
- package/dist-types/commands/CreatePortalCommand.d.ts +35 -0
- package/dist-types/commands/CreateTrustStoreCommand.d.ts +39 -0
- package/dist-types/commands/CreateUserSettingsCommand.d.ts +37 -0
- package/dist-types/commands/DeleteBrowserSettingsCommand.d.ts +35 -0
- package/dist-types/commands/DeleteIdentityProviderCommand.d.ts +35 -0
- package/dist-types/commands/DeleteNetworkSettingsCommand.d.ts +35 -0
- package/dist-types/commands/DeletePortalCommand.d.ts +35 -0
- package/dist-types/commands/DeleteTrustStoreCommand.d.ts +35 -0
- package/dist-types/commands/DeleteUserSettingsCommand.d.ts +35 -0
- package/dist-types/commands/DisassociateBrowserSettingsCommand.d.ts +35 -0
- package/dist-types/commands/DisassociateNetworkSettingsCommand.d.ts +35 -0
- package/dist-types/commands/DisassociateTrustStoreCommand.d.ts +35 -0
- package/dist-types/commands/DisassociateUserSettingsCommand.d.ts +35 -0
- package/dist-types/commands/GetBrowserSettingsCommand.d.ts +35 -0
- package/dist-types/commands/GetIdentityProviderCommand.d.ts +35 -0
- package/dist-types/commands/GetNetworkSettingsCommand.d.ts +35 -0
- package/dist-types/commands/GetPortalCommand.d.ts +35 -0
- package/dist-types/commands/GetPortalServiceProviderMetadataCommand.d.ts +35 -0
- package/dist-types/commands/GetTrustStoreCertificateCommand.d.ts +35 -0
- package/dist-types/commands/GetTrustStoreCommand.d.ts +35 -0
- package/dist-types/commands/GetUserSettingsCommand.d.ts +35 -0
- package/dist-types/commands/ListBrowserSettingsCommand.d.ts +35 -0
- package/dist-types/commands/ListIdentityProvidersCommand.d.ts +35 -0
- package/dist-types/commands/ListNetworkSettingsCommand.d.ts +35 -0
- package/dist-types/commands/ListPortalsCommand.d.ts +35 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +35 -0
- package/dist-types/commands/ListTrustStoreCertificatesCommand.d.ts +35 -0
- package/dist-types/commands/ListTrustStoresCommand.d.ts +35 -0
- package/dist-types/commands/ListUserSettingsCommand.d.ts +35 -0
- package/dist-types/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +35 -0
- package/dist-types/commands/UpdateBrowserSettingsCommand.d.ts +35 -0
- package/dist-types/commands/UpdateIdentityProviderCommand.d.ts +35 -0
- package/dist-types/commands/UpdateNetworkSettingsCommand.d.ts +35 -0
- package/dist-types/commands/UpdatePortalCommand.d.ts +35 -0
- package/dist-types/commands/UpdateTrustStoreCommand.d.ts +35 -0
- package/dist-types/commands/UpdateUserSettingsCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +44 -0
- package/dist-types/endpoints.d.ts +2 -0
- package/dist-types/index.d.ts +5 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +2382 -0
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListBrowserSettingsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListIdentityProvidersPaginator.d.ts +4 -0
- package/dist-types/pagination/ListNetworkSettingsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListPortalsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListTrustStoreCertificatesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListTrustStoresPaginator.d.ts +4 -0
- package/dist-types/pagination/ListUserSettingsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +8 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +134 -0
- package/dist-types/runtimeConfig.browser.d.ts +39 -0
- package/dist-types/runtimeConfig.d.ts +39 -0
- package/dist-types/runtimeConfig.native.d.ts +38 -0
- package/dist-types/runtimeConfig.shared.d.ts +13 -0
- package/dist-types/ts3.4/WorkSpacesWeb.d.ts +225 -0
- package/dist-types/ts3.4/WorkSpacesWebClient.d.ts +115 -0
- package/dist-types/ts3.4/commands/AssociateBrowserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/AssociateNetworkSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/AssociateTrustStoreCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/AssociateUserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateBrowserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateIdentityProviderCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateNetworkSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreatePortalCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateTrustStoreCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateUserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteBrowserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteIdentityProviderCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteNetworkSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeletePortalCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteTrustStoreCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteUserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisassociateBrowserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisassociateNetworkSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisassociateTrustStoreCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisassociateUserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBrowserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetIdentityProviderCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetNetworkSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetPortalCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetPortalServiceProviderMetadataCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetTrustStoreCertificateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetTrustStoreCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetUserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListBrowserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListIdentityProvidersCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListNetworkSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPortalsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTrustStoreCertificatesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTrustStoresCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListUserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateBrowserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateIdentityProviderCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateNetworkSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdatePortalCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateTrustStoreCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateUserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +44 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +5 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1238 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListBrowserSettingsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListIdentityProvidersPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListNetworkSettingsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListPortalsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListTrustStoreCertificatesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListTrustStoresPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListUserSettingsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +8 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +134 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +36 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +96 -0
|
@@ -0,0 +1,2382 @@
|
|
|
1
|
+
import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
|
|
2
|
+
/**
|
|
3
|
+
* <p>Access is denied.</p>
|
|
4
|
+
*/
|
|
5
|
+
export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
|
|
6
|
+
name: "AccessDeniedException";
|
|
7
|
+
$fault: "client";
|
|
8
|
+
message?: string;
|
|
9
|
+
}
|
|
10
|
+
export declare namespace AccessDeniedException {
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
const filterSensitiveLog: (obj: AccessDeniedException) => any;
|
|
15
|
+
}
|
|
16
|
+
export interface AssociateBrowserSettingsRequest {
|
|
17
|
+
/**
|
|
18
|
+
* <p>The ARN of the web portal.</p>
|
|
19
|
+
*/
|
|
20
|
+
portalArn: string | undefined;
|
|
21
|
+
/**
|
|
22
|
+
* <p>The ARN of the browser settings.</p>
|
|
23
|
+
*/
|
|
24
|
+
browserSettingsArn: string | undefined;
|
|
25
|
+
}
|
|
26
|
+
export declare namespace AssociateBrowserSettingsRequest {
|
|
27
|
+
/**
|
|
28
|
+
* @internal
|
|
29
|
+
*/
|
|
30
|
+
const filterSensitiveLog: (obj: AssociateBrowserSettingsRequest) => any;
|
|
31
|
+
}
|
|
32
|
+
export interface AssociateBrowserSettingsResponse {
|
|
33
|
+
/**
|
|
34
|
+
* <p>The ARN of the web portal.</p>
|
|
35
|
+
*/
|
|
36
|
+
portalArn: string | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* <p>The ARN of the browser settings.</p>
|
|
39
|
+
*/
|
|
40
|
+
browserSettingsArn: string | undefined;
|
|
41
|
+
}
|
|
42
|
+
export declare namespace AssociateBrowserSettingsResponse {
|
|
43
|
+
/**
|
|
44
|
+
* @internal
|
|
45
|
+
*/
|
|
46
|
+
const filterSensitiveLog: (obj: AssociateBrowserSettingsResponse) => any;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* <p>There is a conflict.</p>
|
|
50
|
+
*/
|
|
51
|
+
export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
52
|
+
name: "ConflictException";
|
|
53
|
+
$fault: "client";
|
|
54
|
+
message?: string;
|
|
55
|
+
/**
|
|
56
|
+
* <p>Identifier of the resource affected.</p>
|
|
57
|
+
*/
|
|
58
|
+
resourceId?: string;
|
|
59
|
+
/**
|
|
60
|
+
* <p>Type of the resource affected.</p>
|
|
61
|
+
*/
|
|
62
|
+
resourceType?: string;
|
|
63
|
+
}
|
|
64
|
+
export declare namespace ConflictException {
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
68
|
+
const filterSensitiveLog: (obj: ConflictException) => any;
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* <p>There is an internal server error.</p>
|
|
72
|
+
*/
|
|
73
|
+
export interface InternalServerException extends __SmithyException, $MetadataBearer {
|
|
74
|
+
name: "InternalServerException";
|
|
75
|
+
$fault: "server";
|
|
76
|
+
message?: string;
|
|
77
|
+
/**
|
|
78
|
+
* <p>Advice to clients on when the call can be safely retried.</p>
|
|
79
|
+
*/
|
|
80
|
+
retryAfterSeconds?: number;
|
|
81
|
+
}
|
|
82
|
+
export declare namespace InternalServerException {
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
86
|
+
const filterSensitiveLog: (obj: InternalServerException) => any;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* <p>The resource cannot be found.</p>
|
|
90
|
+
*/
|
|
91
|
+
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
92
|
+
name: "ResourceNotFoundException";
|
|
93
|
+
$fault: "client";
|
|
94
|
+
message?: string;
|
|
95
|
+
/**
|
|
96
|
+
* <p>Hypothetical identifier of the resource affected.</p>
|
|
97
|
+
*/
|
|
98
|
+
resourceId?: string;
|
|
99
|
+
/**
|
|
100
|
+
* <p>Hypothetical type of the resource affected.</p>
|
|
101
|
+
*/
|
|
102
|
+
resourceType?: string;
|
|
103
|
+
}
|
|
104
|
+
export declare namespace ResourceNotFoundException {
|
|
105
|
+
/**
|
|
106
|
+
* @internal
|
|
107
|
+
*/
|
|
108
|
+
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
109
|
+
}
|
|
110
|
+
/**
|
|
111
|
+
* <p>There is a throttling error.</p>
|
|
112
|
+
*/
|
|
113
|
+
export interface ThrottlingException extends __SmithyException, $MetadataBearer {
|
|
114
|
+
name: "ThrottlingException";
|
|
115
|
+
$fault: "client";
|
|
116
|
+
message?: string;
|
|
117
|
+
/**
|
|
118
|
+
* <p>The originating service.</p>
|
|
119
|
+
*/
|
|
120
|
+
serviceCode?: string;
|
|
121
|
+
/**
|
|
122
|
+
* <p>The originating quota.</p>
|
|
123
|
+
*/
|
|
124
|
+
quotaCode?: string;
|
|
125
|
+
/**
|
|
126
|
+
* <p>Advice to clients on when the call can be safely retried.</p>
|
|
127
|
+
*/
|
|
128
|
+
retryAfterSeconds?: number;
|
|
129
|
+
}
|
|
130
|
+
export declare namespace ThrottlingException {
|
|
131
|
+
/**
|
|
132
|
+
* @internal
|
|
133
|
+
*/
|
|
134
|
+
const filterSensitiveLog: (obj: ThrottlingException) => any;
|
|
135
|
+
}
|
|
136
|
+
/**
|
|
137
|
+
* <p>Information about a field passed inside a request that resulted in an exception.</p>
|
|
138
|
+
*/
|
|
139
|
+
export interface ValidationExceptionField {
|
|
140
|
+
/**
|
|
141
|
+
* <p>The name of the field that failed validation.</p>
|
|
142
|
+
*/
|
|
143
|
+
name: string | undefined;
|
|
144
|
+
/**
|
|
145
|
+
* <p>The message describing why the field failed validation.</p>
|
|
146
|
+
*/
|
|
147
|
+
message: string | undefined;
|
|
148
|
+
}
|
|
149
|
+
export declare namespace ValidationExceptionField {
|
|
150
|
+
/**
|
|
151
|
+
* @internal
|
|
152
|
+
*/
|
|
153
|
+
const filterSensitiveLog: (obj: ValidationExceptionField) => any;
|
|
154
|
+
}
|
|
155
|
+
export declare enum ValidationExceptionReason {
|
|
156
|
+
CANNOT_PARSE = "cannotParse",
|
|
157
|
+
FIELD_VALIDATION_FAILED = "fieldValidationFailed",
|
|
158
|
+
OTHER = "other",
|
|
159
|
+
UNKNOWN_OPERATION = "unknownOperation"
|
|
160
|
+
}
|
|
161
|
+
/**
|
|
162
|
+
* <p>There is a validation error.</p>
|
|
163
|
+
*/
|
|
164
|
+
export interface ValidationException extends __SmithyException, $MetadataBearer {
|
|
165
|
+
name: "ValidationException";
|
|
166
|
+
$fault: "client";
|
|
167
|
+
message?: string;
|
|
168
|
+
/**
|
|
169
|
+
* <p>Reason the request failed validation</p>
|
|
170
|
+
*/
|
|
171
|
+
reason?: ValidationExceptionReason | string;
|
|
172
|
+
/**
|
|
173
|
+
* <p>The field that caused the error.</p>
|
|
174
|
+
*/
|
|
175
|
+
fieldList?: ValidationExceptionField[];
|
|
176
|
+
}
|
|
177
|
+
export declare namespace ValidationException {
|
|
178
|
+
/**
|
|
179
|
+
* @internal
|
|
180
|
+
*/
|
|
181
|
+
const filterSensitiveLog: (obj: ValidationException) => any;
|
|
182
|
+
}
|
|
183
|
+
export interface AssociateNetworkSettingsRequest {
|
|
184
|
+
/**
|
|
185
|
+
* <p>The ARN of the web portal.</p>
|
|
186
|
+
*/
|
|
187
|
+
portalArn: string | undefined;
|
|
188
|
+
/**
|
|
189
|
+
* <p>The ARN of the network settings.</p>
|
|
190
|
+
*/
|
|
191
|
+
networkSettingsArn: string | undefined;
|
|
192
|
+
}
|
|
193
|
+
export declare namespace AssociateNetworkSettingsRequest {
|
|
194
|
+
/**
|
|
195
|
+
* @internal
|
|
196
|
+
*/
|
|
197
|
+
const filterSensitiveLog: (obj: AssociateNetworkSettingsRequest) => any;
|
|
198
|
+
}
|
|
199
|
+
export interface AssociateNetworkSettingsResponse {
|
|
200
|
+
/**
|
|
201
|
+
* <p>The ARN of the web portal.</p>
|
|
202
|
+
*/
|
|
203
|
+
portalArn: string | undefined;
|
|
204
|
+
/**
|
|
205
|
+
* <p>The ARN of the network settings.</p>
|
|
206
|
+
*/
|
|
207
|
+
networkSettingsArn: string | undefined;
|
|
208
|
+
}
|
|
209
|
+
export declare namespace AssociateNetworkSettingsResponse {
|
|
210
|
+
/**
|
|
211
|
+
* @internal
|
|
212
|
+
*/
|
|
213
|
+
const filterSensitiveLog: (obj: AssociateNetworkSettingsResponse) => any;
|
|
214
|
+
}
|
|
215
|
+
export interface AssociateTrustStoreRequest {
|
|
216
|
+
/**
|
|
217
|
+
* <p>The ARN of the web portal.</p>
|
|
218
|
+
*/
|
|
219
|
+
portalArn: string | undefined;
|
|
220
|
+
/**
|
|
221
|
+
* <p>The ARN of the trust store.</p>
|
|
222
|
+
*/
|
|
223
|
+
trustStoreArn: string | undefined;
|
|
224
|
+
}
|
|
225
|
+
export declare namespace AssociateTrustStoreRequest {
|
|
226
|
+
/**
|
|
227
|
+
* @internal
|
|
228
|
+
*/
|
|
229
|
+
const filterSensitiveLog: (obj: AssociateTrustStoreRequest) => any;
|
|
230
|
+
}
|
|
231
|
+
export interface AssociateTrustStoreResponse {
|
|
232
|
+
/**
|
|
233
|
+
* <p>The ARN of the web portal.</p>
|
|
234
|
+
*/
|
|
235
|
+
portalArn: string | undefined;
|
|
236
|
+
/**
|
|
237
|
+
* <p>The ARN of the trust store.</p>
|
|
238
|
+
*/
|
|
239
|
+
trustStoreArn: string | undefined;
|
|
240
|
+
}
|
|
241
|
+
export declare namespace AssociateTrustStoreResponse {
|
|
242
|
+
/**
|
|
243
|
+
* @internal
|
|
244
|
+
*/
|
|
245
|
+
const filterSensitiveLog: (obj: AssociateTrustStoreResponse) => any;
|
|
246
|
+
}
|
|
247
|
+
export interface AssociateUserSettingsRequest {
|
|
248
|
+
/**
|
|
249
|
+
* <p>The ARN of the web portal.</p>
|
|
250
|
+
*/
|
|
251
|
+
portalArn: string | undefined;
|
|
252
|
+
/**
|
|
253
|
+
* <p>The ARN of the user settings.</p>
|
|
254
|
+
*/
|
|
255
|
+
userSettingsArn: string | undefined;
|
|
256
|
+
}
|
|
257
|
+
export declare namespace AssociateUserSettingsRequest {
|
|
258
|
+
/**
|
|
259
|
+
* @internal
|
|
260
|
+
*/
|
|
261
|
+
const filterSensitiveLog: (obj: AssociateUserSettingsRequest) => any;
|
|
262
|
+
}
|
|
263
|
+
export interface AssociateUserSettingsResponse {
|
|
264
|
+
/**
|
|
265
|
+
* <p>The ARN of the web portal.</p>
|
|
266
|
+
*/
|
|
267
|
+
portalArn: string | undefined;
|
|
268
|
+
/**
|
|
269
|
+
* <p>The ARN of the user settings.</p>
|
|
270
|
+
*/
|
|
271
|
+
userSettingsArn: string | undefined;
|
|
272
|
+
}
|
|
273
|
+
export declare namespace AssociateUserSettingsResponse {
|
|
274
|
+
/**
|
|
275
|
+
* @internal
|
|
276
|
+
*/
|
|
277
|
+
const filterSensitiveLog: (obj: AssociateUserSettingsResponse) => any;
|
|
278
|
+
}
|
|
279
|
+
/**
|
|
280
|
+
* <p>The tag.</p>
|
|
281
|
+
*/
|
|
282
|
+
export interface Tag {
|
|
283
|
+
/**
|
|
284
|
+
* <p>The key of the tag.</p>
|
|
285
|
+
*/
|
|
286
|
+
Key: string | undefined;
|
|
287
|
+
/**
|
|
288
|
+
* <p>The value of the tag</p>
|
|
289
|
+
*/
|
|
290
|
+
Value: string | undefined;
|
|
291
|
+
}
|
|
292
|
+
export declare namespace Tag {
|
|
293
|
+
/**
|
|
294
|
+
* @internal
|
|
295
|
+
*/
|
|
296
|
+
const filterSensitiveLog: (obj: Tag) => any;
|
|
297
|
+
}
|
|
298
|
+
export interface CreateBrowserSettingsRequest {
|
|
299
|
+
/**
|
|
300
|
+
* <p>The tags to add to the browser settings resource. A tag is a key-value pair.</p>
|
|
301
|
+
*/
|
|
302
|
+
tags?: Tag[];
|
|
303
|
+
/**
|
|
304
|
+
* <p>The custom managed key of the browser settings.</p>
|
|
305
|
+
*/
|
|
306
|
+
customerManagedKey?: string;
|
|
307
|
+
/**
|
|
308
|
+
* <p>Additional encryption context of the browser settings.</p>
|
|
309
|
+
*/
|
|
310
|
+
additionalEncryptionContext?: {
|
|
311
|
+
[key: string]: string;
|
|
312
|
+
};
|
|
313
|
+
/**
|
|
314
|
+
* <p>A JSON string containing Chrome Enterprise policies that will be applied to all
|
|
315
|
+
* streaming sessions.</p>
|
|
316
|
+
*/
|
|
317
|
+
browserPolicy: string | undefined;
|
|
318
|
+
/**
|
|
319
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
320
|
+
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
321
|
+
* request, if the original request completes successfully, subsequent retries with the same
|
|
322
|
+
* client token returns the result from the original successful request.</p>
|
|
323
|
+
* <p>If you do not specify a client token, one is automatically generated by the AWS SDK. </p>
|
|
324
|
+
*/
|
|
325
|
+
clientToken?: string;
|
|
326
|
+
}
|
|
327
|
+
export declare namespace CreateBrowserSettingsRequest {
|
|
328
|
+
/**
|
|
329
|
+
* @internal
|
|
330
|
+
*/
|
|
331
|
+
const filterSensitiveLog: (obj: CreateBrowserSettingsRequest) => any;
|
|
332
|
+
}
|
|
333
|
+
export interface CreateBrowserSettingsResponse {
|
|
334
|
+
/**
|
|
335
|
+
* <p>The ARN of the browser settings.</p>
|
|
336
|
+
*/
|
|
337
|
+
browserSettingsArn: string | undefined;
|
|
338
|
+
}
|
|
339
|
+
export declare namespace CreateBrowserSettingsResponse {
|
|
340
|
+
/**
|
|
341
|
+
* @internal
|
|
342
|
+
*/
|
|
343
|
+
const filterSensitiveLog: (obj: CreateBrowserSettingsResponse) => any;
|
|
344
|
+
}
|
|
345
|
+
/**
|
|
346
|
+
* <p>The service quota has been exceeded.</p>
|
|
347
|
+
*/
|
|
348
|
+
export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
|
|
349
|
+
name: "ServiceQuotaExceededException";
|
|
350
|
+
$fault: "client";
|
|
351
|
+
message?: string;
|
|
352
|
+
/**
|
|
353
|
+
* <p>Identifier of the resource affected.</p>
|
|
354
|
+
*/
|
|
355
|
+
resourceId?: string;
|
|
356
|
+
/**
|
|
357
|
+
* <p> Type of the resource affected.</p>
|
|
358
|
+
*/
|
|
359
|
+
resourceType?: string;
|
|
360
|
+
/**
|
|
361
|
+
* <p>The originating service.</p>
|
|
362
|
+
*/
|
|
363
|
+
serviceCode?: string;
|
|
364
|
+
/**
|
|
365
|
+
* <p>The originating quota.</p>
|
|
366
|
+
*/
|
|
367
|
+
quotaCode?: string;
|
|
368
|
+
}
|
|
369
|
+
export declare namespace ServiceQuotaExceededException {
|
|
370
|
+
/**
|
|
371
|
+
* @internal
|
|
372
|
+
*/
|
|
373
|
+
const filterSensitiveLog: (obj: ServiceQuotaExceededException) => any;
|
|
374
|
+
}
|
|
375
|
+
export declare enum IdentityProviderType {
|
|
376
|
+
Facebook = "Facebook",
|
|
377
|
+
Google = "Google",
|
|
378
|
+
LoginWithAmazon = "LoginWithAmazon",
|
|
379
|
+
OIDC = "OIDC",
|
|
380
|
+
SAML = "SAML",
|
|
381
|
+
SignInWithApple = "SignInWithApple"
|
|
382
|
+
}
|
|
383
|
+
export interface CreateIdentityProviderRequest {
|
|
384
|
+
/**
|
|
385
|
+
* <p>The ARN of the web portal.</p>
|
|
386
|
+
*/
|
|
387
|
+
portalArn: string | undefined;
|
|
388
|
+
/**
|
|
389
|
+
* <p>The identity provider name.</p>
|
|
390
|
+
*/
|
|
391
|
+
identityProviderName: string | undefined;
|
|
392
|
+
/**
|
|
393
|
+
* <p>The identity provider type.</p>
|
|
394
|
+
*/
|
|
395
|
+
identityProviderType: IdentityProviderType | string | undefined;
|
|
396
|
+
/**
|
|
397
|
+
* <p>The identity provider details. The following list describes the provider detail keys for
|
|
398
|
+
* each identity provider type. </p>
|
|
399
|
+
* <ul>
|
|
400
|
+
* <li>
|
|
401
|
+
* <p>For Google and Login with Amazon:</p>
|
|
402
|
+
* <ul>
|
|
403
|
+
* <li>
|
|
404
|
+
* <p>
|
|
405
|
+
* <code>client_id</code>
|
|
406
|
+
* </p>
|
|
407
|
+
* </li>
|
|
408
|
+
* <li>
|
|
409
|
+
* <p>
|
|
410
|
+
* <code>client_secret</code>
|
|
411
|
+
* </p>
|
|
412
|
+
* </li>
|
|
413
|
+
* <li>
|
|
414
|
+
* <p>
|
|
415
|
+
* <code>authorize_scopes</code>
|
|
416
|
+
* </p>
|
|
417
|
+
* </li>
|
|
418
|
+
* </ul>
|
|
419
|
+
* </li>
|
|
420
|
+
* <li>
|
|
421
|
+
* <p>For Facebook:</p>
|
|
422
|
+
* <ul>
|
|
423
|
+
* <li>
|
|
424
|
+
* <p>
|
|
425
|
+
* <code>client_id</code>
|
|
426
|
+
* </p>
|
|
427
|
+
* </li>
|
|
428
|
+
* <li>
|
|
429
|
+
* <p>
|
|
430
|
+
* <code>client_secret</code>
|
|
431
|
+
* </p>
|
|
432
|
+
* </li>
|
|
433
|
+
* <li>
|
|
434
|
+
* <p>
|
|
435
|
+
* <code>authorize_scopes</code>
|
|
436
|
+
* </p>
|
|
437
|
+
* </li>
|
|
438
|
+
* <li>
|
|
439
|
+
* <p>
|
|
440
|
+
* <code>api_version</code>
|
|
441
|
+
* </p>
|
|
442
|
+
* </li>
|
|
443
|
+
* </ul>
|
|
444
|
+
* </li>
|
|
445
|
+
* <li>
|
|
446
|
+
* <p>For Sign in with Apple:</p>
|
|
447
|
+
* <ul>
|
|
448
|
+
* <li>
|
|
449
|
+
* <p>
|
|
450
|
+
* <code>client_id</code>
|
|
451
|
+
* </p>
|
|
452
|
+
* </li>
|
|
453
|
+
* <li>
|
|
454
|
+
* <p>
|
|
455
|
+
* <code>team_id</code>
|
|
456
|
+
* </p>
|
|
457
|
+
* </li>
|
|
458
|
+
* <li>
|
|
459
|
+
* <p>
|
|
460
|
+
* <code>key_id</code>
|
|
461
|
+
* </p>
|
|
462
|
+
* </li>
|
|
463
|
+
* <li>
|
|
464
|
+
* <p>
|
|
465
|
+
* <code>private_key</code>
|
|
466
|
+
* </p>
|
|
467
|
+
* </li>
|
|
468
|
+
* <li>
|
|
469
|
+
* <p>
|
|
470
|
+
* <code>authorize_scopes</code>
|
|
471
|
+
* </p>
|
|
472
|
+
* </li>
|
|
473
|
+
* </ul>
|
|
474
|
+
* </li>
|
|
475
|
+
* <li>
|
|
476
|
+
* <p>For OIDC providers:</p>
|
|
477
|
+
* <ul>
|
|
478
|
+
* <li>
|
|
479
|
+
* <p>
|
|
480
|
+
* <code>client_id</code>
|
|
481
|
+
* </p>
|
|
482
|
+
* </li>
|
|
483
|
+
* <li>
|
|
484
|
+
* <p>
|
|
485
|
+
* <code>client_secret</code>
|
|
486
|
+
* </p>
|
|
487
|
+
* </li>
|
|
488
|
+
* <li>
|
|
489
|
+
* <p>
|
|
490
|
+
* <code>attributes_request_method</code>
|
|
491
|
+
* </p>
|
|
492
|
+
* </li>
|
|
493
|
+
* <li>
|
|
494
|
+
* <p>
|
|
495
|
+
* <code>oidc_issuer</code>
|
|
496
|
+
* </p>
|
|
497
|
+
* </li>
|
|
498
|
+
* <li>
|
|
499
|
+
* <p>
|
|
500
|
+
* <code>authorize_scopes</code>
|
|
501
|
+
* </p>
|
|
502
|
+
* </li>
|
|
503
|
+
* <li>
|
|
504
|
+
* <p>
|
|
505
|
+
* <code>authorize_url</code>
|
|
506
|
+
* <i>if not available from discovery URL specified by
|
|
507
|
+
* <code>oidc_issuer</code> key</i>
|
|
508
|
+
* </p>
|
|
509
|
+
* </li>
|
|
510
|
+
* <li>
|
|
511
|
+
* <p>
|
|
512
|
+
* <code>token_url</code>
|
|
513
|
+
* <i>if not available from discovery URL specified by
|
|
514
|
+
* <code>oidc_issuer</code> key</i>
|
|
515
|
+
* </p>
|
|
516
|
+
* </li>
|
|
517
|
+
* <li>
|
|
518
|
+
* <p>
|
|
519
|
+
* <code>attributes_url</code>
|
|
520
|
+
* <i>if not available from discovery URL specified by
|
|
521
|
+
* <code>oidc_issuer</code> key</i>
|
|
522
|
+
* </p>
|
|
523
|
+
* </li>
|
|
524
|
+
* <li>
|
|
525
|
+
* <p>
|
|
526
|
+
* <code>jwks_uri</code>
|
|
527
|
+
* <i>if not available from discovery URL specified by
|
|
528
|
+
* <code>oidc_issuer</code> key</i>
|
|
529
|
+
* </p>
|
|
530
|
+
* </li>
|
|
531
|
+
* </ul>
|
|
532
|
+
* </li>
|
|
533
|
+
* <li>
|
|
534
|
+
* <p>For SAML providers:</p>
|
|
535
|
+
* <ul>
|
|
536
|
+
* <li>
|
|
537
|
+
* <p>
|
|
538
|
+
* <code>MetadataFile</code> OR <code>MetadataURL</code>
|
|
539
|
+
* </p>
|
|
540
|
+
* </li>
|
|
541
|
+
* <li>
|
|
542
|
+
* <p>
|
|
543
|
+
* <code>IDPSignout</code>
|
|
544
|
+
* <i>optional</i>
|
|
545
|
+
* </p>
|
|
546
|
+
* </li>
|
|
547
|
+
* </ul>
|
|
548
|
+
* </li>
|
|
549
|
+
* </ul>
|
|
550
|
+
*/
|
|
551
|
+
identityProviderDetails: {
|
|
552
|
+
[key: string]: string;
|
|
553
|
+
} | undefined;
|
|
554
|
+
/**
|
|
555
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
556
|
+
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
557
|
+
* request, if the original request completes successfully, subsequent retries with the same
|
|
558
|
+
* client token returns the result from the original successful request.</p>
|
|
559
|
+
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
560
|
+
* SDK.</p>
|
|
561
|
+
*/
|
|
562
|
+
clientToken?: string;
|
|
563
|
+
}
|
|
564
|
+
export declare namespace CreateIdentityProviderRequest {
|
|
565
|
+
/**
|
|
566
|
+
* @internal
|
|
567
|
+
*/
|
|
568
|
+
const filterSensitiveLog: (obj: CreateIdentityProviderRequest) => any;
|
|
569
|
+
}
|
|
570
|
+
export interface CreateIdentityProviderResponse {
|
|
571
|
+
/**
|
|
572
|
+
* <p>The ARN of the identity provider.</p>
|
|
573
|
+
*/
|
|
574
|
+
identityProviderArn: string | undefined;
|
|
575
|
+
}
|
|
576
|
+
export declare namespace CreateIdentityProviderResponse {
|
|
577
|
+
/**
|
|
578
|
+
* @internal
|
|
579
|
+
*/
|
|
580
|
+
const filterSensitiveLog: (obj: CreateIdentityProviderResponse) => any;
|
|
581
|
+
}
|
|
582
|
+
export interface CreateNetworkSettingsRequest {
|
|
583
|
+
/**
|
|
584
|
+
* <p>The VPC that streaming instances will connect to.</p>
|
|
585
|
+
*/
|
|
586
|
+
vpcId: string | undefined;
|
|
587
|
+
/**
|
|
588
|
+
* <p>The subnets in which network interfaces are created to connect streaming instances to your VPC. At least two of these subnets must be in different availability zones.</p>
|
|
589
|
+
*/
|
|
590
|
+
subnetIds: string[] | undefined;
|
|
591
|
+
/**
|
|
592
|
+
* <p>One or more security groups used to control access from streaming instances to your VPC.</p>
|
|
593
|
+
*/
|
|
594
|
+
securityGroupIds: string[] | undefined;
|
|
595
|
+
/**
|
|
596
|
+
* <p>The tags to add to the network settings resource. A tag is a key-value pair.</p>
|
|
597
|
+
*/
|
|
598
|
+
tags?: Tag[];
|
|
599
|
+
/**
|
|
600
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
601
|
+
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
602
|
+
* request, if the original request completes successfully, subsequent retries with the same
|
|
603
|
+
* client token returns the result from the original successful request. </p>
|
|
604
|
+
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
605
|
+
* SDK.</p>
|
|
606
|
+
*/
|
|
607
|
+
clientToken?: string;
|
|
608
|
+
}
|
|
609
|
+
export declare namespace CreateNetworkSettingsRequest {
|
|
610
|
+
/**
|
|
611
|
+
* @internal
|
|
612
|
+
*/
|
|
613
|
+
const filterSensitiveLog: (obj: CreateNetworkSettingsRequest) => any;
|
|
614
|
+
}
|
|
615
|
+
export interface CreateNetworkSettingsResponse {
|
|
616
|
+
/**
|
|
617
|
+
* <p>The ARN of the network settings.</p>
|
|
618
|
+
*/
|
|
619
|
+
networkSettingsArn: string | undefined;
|
|
620
|
+
}
|
|
621
|
+
export declare namespace CreateNetworkSettingsResponse {
|
|
622
|
+
/**
|
|
623
|
+
* @internal
|
|
624
|
+
*/
|
|
625
|
+
const filterSensitiveLog: (obj: CreateNetworkSettingsResponse) => any;
|
|
626
|
+
}
|
|
627
|
+
export interface CreatePortalRequest {
|
|
628
|
+
/**
|
|
629
|
+
* <p>The name of the web portal. This is not visible to users who log into the web portal.</p>
|
|
630
|
+
*/
|
|
631
|
+
displayName?: string;
|
|
632
|
+
/**
|
|
633
|
+
* <p>The tags to add to the web portal. A tag is a key-value pair.</p>
|
|
634
|
+
*/
|
|
635
|
+
tags?: Tag[];
|
|
636
|
+
/**
|
|
637
|
+
* <p>The customer managed key of the web portal.</p>
|
|
638
|
+
*/
|
|
639
|
+
customerManagedKey?: string;
|
|
640
|
+
/**
|
|
641
|
+
* <p>The additional encryption context of the portal.</p>
|
|
642
|
+
*/
|
|
643
|
+
additionalEncryptionContext?: {
|
|
644
|
+
[key: string]: string;
|
|
645
|
+
};
|
|
646
|
+
/**
|
|
647
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
648
|
+
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
649
|
+
* request, if the original request completes successfully, subsequent retries with the same
|
|
650
|
+
* client token returns the result from the original successful request. </p>
|
|
651
|
+
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
652
|
+
* SDK.</p>
|
|
653
|
+
*/
|
|
654
|
+
clientToken?: string;
|
|
655
|
+
}
|
|
656
|
+
export declare namespace CreatePortalRequest {
|
|
657
|
+
/**
|
|
658
|
+
* @internal
|
|
659
|
+
*/
|
|
660
|
+
const filterSensitiveLog: (obj: CreatePortalRequest) => any;
|
|
661
|
+
}
|
|
662
|
+
export interface CreatePortalResponse {
|
|
663
|
+
/**
|
|
664
|
+
* <p>The ARN of the web portal.</p>
|
|
665
|
+
*/
|
|
666
|
+
portalArn: string | undefined;
|
|
667
|
+
/**
|
|
668
|
+
* <p>The endpoint URL of the web portal that users access in order to start streaming sessions.</p>
|
|
669
|
+
*/
|
|
670
|
+
portalEndpoint: string | undefined;
|
|
671
|
+
}
|
|
672
|
+
export declare namespace CreatePortalResponse {
|
|
673
|
+
/**
|
|
674
|
+
* @internal
|
|
675
|
+
*/
|
|
676
|
+
const filterSensitiveLog: (obj: CreatePortalResponse) => any;
|
|
677
|
+
}
|
|
678
|
+
export interface CreateTrustStoreRequest {
|
|
679
|
+
/**
|
|
680
|
+
* <p>A list of CA certificates to be added to the trust store.</p>
|
|
681
|
+
*/
|
|
682
|
+
certificateList: Uint8Array[] | undefined;
|
|
683
|
+
/**
|
|
684
|
+
* <p>The tags to add to the trust store. A tag is a key-value pair.</p>
|
|
685
|
+
*/
|
|
686
|
+
tags?: Tag[];
|
|
687
|
+
/**
|
|
688
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
689
|
+
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
690
|
+
* request, if the original request completes successfully, subsequent retries with the same
|
|
691
|
+
* client token returns the result from the original successful request. </p>
|
|
692
|
+
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
693
|
+
* SDK.</p>
|
|
694
|
+
*/
|
|
695
|
+
clientToken?: string;
|
|
696
|
+
}
|
|
697
|
+
export declare namespace CreateTrustStoreRequest {
|
|
698
|
+
/**
|
|
699
|
+
* @internal
|
|
700
|
+
*/
|
|
701
|
+
const filterSensitiveLog: (obj: CreateTrustStoreRequest) => any;
|
|
702
|
+
}
|
|
703
|
+
export interface CreateTrustStoreResponse {
|
|
704
|
+
/**
|
|
705
|
+
* <p>The ARN of the trust store.</p>
|
|
706
|
+
*/
|
|
707
|
+
trustStoreArn: string | undefined;
|
|
708
|
+
}
|
|
709
|
+
export declare namespace CreateTrustStoreResponse {
|
|
710
|
+
/**
|
|
711
|
+
* @internal
|
|
712
|
+
*/
|
|
713
|
+
const filterSensitiveLog: (obj: CreateTrustStoreResponse) => any;
|
|
714
|
+
}
|
|
715
|
+
export declare enum EnabledType {
|
|
716
|
+
DISABLED = "Disabled",
|
|
717
|
+
ENABLED = "Enabled"
|
|
718
|
+
}
|
|
719
|
+
export interface CreateUserSettingsRequest {
|
|
720
|
+
/**
|
|
721
|
+
* <p>Specifies whether the user can copy text from the streaming session to the local
|
|
722
|
+
* device.</p>
|
|
723
|
+
*/
|
|
724
|
+
copyAllowed: EnabledType | string | undefined;
|
|
725
|
+
/**
|
|
726
|
+
* <p>Specifies whether the user can paste text from the local device to the streaming
|
|
727
|
+
* session.</p>
|
|
728
|
+
*/
|
|
729
|
+
pasteAllowed: EnabledType | string | undefined;
|
|
730
|
+
/**
|
|
731
|
+
* <p>Specifies whether the user can download files from the streaming session to the local
|
|
732
|
+
* device.</p>
|
|
733
|
+
*/
|
|
734
|
+
downloadAllowed: EnabledType | string | undefined;
|
|
735
|
+
/**
|
|
736
|
+
* <p>Specifies whether the user can upload files from the local device to the streaming
|
|
737
|
+
* session.</p>
|
|
738
|
+
*/
|
|
739
|
+
uploadAllowed: EnabledType | string | undefined;
|
|
740
|
+
/**
|
|
741
|
+
* <p>Specifies whether the user can print to the local device.</p>
|
|
742
|
+
*/
|
|
743
|
+
printAllowed: EnabledType | string | undefined;
|
|
744
|
+
/**
|
|
745
|
+
* <p>The tags to add to the user settings resource. A tag is a key-value pair.</p>
|
|
746
|
+
*/
|
|
747
|
+
tags?: Tag[];
|
|
748
|
+
/**
|
|
749
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
750
|
+
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
751
|
+
* request, if the original request completes successfully, subsequent retries with the same
|
|
752
|
+
* client token returns the result from the original successful request. </p>
|
|
753
|
+
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
754
|
+
* SDK.</p>
|
|
755
|
+
*/
|
|
756
|
+
clientToken?: string;
|
|
757
|
+
}
|
|
758
|
+
export declare namespace CreateUserSettingsRequest {
|
|
759
|
+
/**
|
|
760
|
+
* @internal
|
|
761
|
+
*/
|
|
762
|
+
const filterSensitiveLog: (obj: CreateUserSettingsRequest) => any;
|
|
763
|
+
}
|
|
764
|
+
export interface CreateUserSettingsResponse {
|
|
765
|
+
/**
|
|
766
|
+
* <p>The ARN of the user settings.</p>
|
|
767
|
+
*/
|
|
768
|
+
userSettingsArn: string | undefined;
|
|
769
|
+
}
|
|
770
|
+
export declare namespace CreateUserSettingsResponse {
|
|
771
|
+
/**
|
|
772
|
+
* @internal
|
|
773
|
+
*/
|
|
774
|
+
const filterSensitiveLog: (obj: CreateUserSettingsResponse) => any;
|
|
775
|
+
}
|
|
776
|
+
export interface DeleteBrowserSettingsRequest {
|
|
777
|
+
/**
|
|
778
|
+
* <p>The ARN of the browser settings.</p>
|
|
779
|
+
*/
|
|
780
|
+
browserSettingsArn: string | undefined;
|
|
781
|
+
}
|
|
782
|
+
export declare namespace DeleteBrowserSettingsRequest {
|
|
783
|
+
/**
|
|
784
|
+
* @internal
|
|
785
|
+
*/
|
|
786
|
+
const filterSensitiveLog: (obj: DeleteBrowserSettingsRequest) => any;
|
|
787
|
+
}
|
|
788
|
+
export interface DeleteBrowserSettingsResponse {
|
|
789
|
+
}
|
|
790
|
+
export declare namespace DeleteBrowserSettingsResponse {
|
|
791
|
+
/**
|
|
792
|
+
* @internal
|
|
793
|
+
*/
|
|
794
|
+
const filterSensitiveLog: (obj: DeleteBrowserSettingsResponse) => any;
|
|
795
|
+
}
|
|
796
|
+
export interface DeleteIdentityProviderRequest {
|
|
797
|
+
/**
|
|
798
|
+
* <p>The ARN of the identity provider.</p>
|
|
799
|
+
*/
|
|
800
|
+
identityProviderArn: string | undefined;
|
|
801
|
+
}
|
|
802
|
+
export declare namespace DeleteIdentityProviderRequest {
|
|
803
|
+
/**
|
|
804
|
+
* @internal
|
|
805
|
+
*/
|
|
806
|
+
const filterSensitiveLog: (obj: DeleteIdentityProviderRequest) => any;
|
|
807
|
+
}
|
|
808
|
+
export interface DeleteIdentityProviderResponse {
|
|
809
|
+
}
|
|
810
|
+
export declare namespace DeleteIdentityProviderResponse {
|
|
811
|
+
/**
|
|
812
|
+
* @internal
|
|
813
|
+
*/
|
|
814
|
+
const filterSensitiveLog: (obj: DeleteIdentityProviderResponse) => any;
|
|
815
|
+
}
|
|
816
|
+
export interface DeleteNetworkSettingsRequest {
|
|
817
|
+
/**
|
|
818
|
+
* <p>The ARN of the network settings.</p>
|
|
819
|
+
*/
|
|
820
|
+
networkSettingsArn: string | undefined;
|
|
821
|
+
}
|
|
822
|
+
export declare namespace DeleteNetworkSettingsRequest {
|
|
823
|
+
/**
|
|
824
|
+
* @internal
|
|
825
|
+
*/
|
|
826
|
+
const filterSensitiveLog: (obj: DeleteNetworkSettingsRequest) => any;
|
|
827
|
+
}
|
|
828
|
+
export interface DeleteNetworkSettingsResponse {
|
|
829
|
+
}
|
|
830
|
+
export declare namespace DeleteNetworkSettingsResponse {
|
|
831
|
+
/**
|
|
832
|
+
* @internal
|
|
833
|
+
*/
|
|
834
|
+
const filterSensitiveLog: (obj: DeleteNetworkSettingsResponse) => any;
|
|
835
|
+
}
|
|
836
|
+
export interface DeletePortalRequest {
|
|
837
|
+
/**
|
|
838
|
+
* <p>The ARN of the web portal.</p>
|
|
839
|
+
*/
|
|
840
|
+
portalArn: string | undefined;
|
|
841
|
+
}
|
|
842
|
+
export declare namespace DeletePortalRequest {
|
|
843
|
+
/**
|
|
844
|
+
* @internal
|
|
845
|
+
*/
|
|
846
|
+
const filterSensitiveLog: (obj: DeletePortalRequest) => any;
|
|
847
|
+
}
|
|
848
|
+
export interface DeletePortalResponse {
|
|
849
|
+
}
|
|
850
|
+
export declare namespace DeletePortalResponse {
|
|
851
|
+
/**
|
|
852
|
+
* @internal
|
|
853
|
+
*/
|
|
854
|
+
const filterSensitiveLog: (obj: DeletePortalResponse) => any;
|
|
855
|
+
}
|
|
856
|
+
export interface DeleteTrustStoreRequest {
|
|
857
|
+
/**
|
|
858
|
+
* <p>The ARN of the trust store.</p>
|
|
859
|
+
*/
|
|
860
|
+
trustStoreArn: string | undefined;
|
|
861
|
+
}
|
|
862
|
+
export declare namespace DeleteTrustStoreRequest {
|
|
863
|
+
/**
|
|
864
|
+
* @internal
|
|
865
|
+
*/
|
|
866
|
+
const filterSensitiveLog: (obj: DeleteTrustStoreRequest) => any;
|
|
867
|
+
}
|
|
868
|
+
export interface DeleteTrustStoreResponse {
|
|
869
|
+
}
|
|
870
|
+
export declare namespace DeleteTrustStoreResponse {
|
|
871
|
+
/**
|
|
872
|
+
* @internal
|
|
873
|
+
*/
|
|
874
|
+
const filterSensitiveLog: (obj: DeleteTrustStoreResponse) => any;
|
|
875
|
+
}
|
|
876
|
+
export interface DeleteUserSettingsRequest {
|
|
877
|
+
/**
|
|
878
|
+
* <p>The ARN of the user settings.</p>
|
|
879
|
+
*/
|
|
880
|
+
userSettingsArn: string | undefined;
|
|
881
|
+
}
|
|
882
|
+
export declare namespace DeleteUserSettingsRequest {
|
|
883
|
+
/**
|
|
884
|
+
* @internal
|
|
885
|
+
*/
|
|
886
|
+
const filterSensitiveLog: (obj: DeleteUserSettingsRequest) => any;
|
|
887
|
+
}
|
|
888
|
+
export interface DeleteUserSettingsResponse {
|
|
889
|
+
}
|
|
890
|
+
export declare namespace DeleteUserSettingsResponse {
|
|
891
|
+
/**
|
|
892
|
+
* @internal
|
|
893
|
+
*/
|
|
894
|
+
const filterSensitiveLog: (obj: DeleteUserSettingsResponse) => any;
|
|
895
|
+
}
|
|
896
|
+
export interface DisassociateBrowserSettingsRequest {
|
|
897
|
+
/**
|
|
898
|
+
* <p>The ARN of the web portal.</p>
|
|
899
|
+
*/
|
|
900
|
+
portalArn: string | undefined;
|
|
901
|
+
}
|
|
902
|
+
export declare namespace DisassociateBrowserSettingsRequest {
|
|
903
|
+
/**
|
|
904
|
+
* @internal
|
|
905
|
+
*/
|
|
906
|
+
const filterSensitiveLog: (obj: DisassociateBrowserSettingsRequest) => any;
|
|
907
|
+
}
|
|
908
|
+
export interface DisassociateBrowserSettingsResponse {
|
|
909
|
+
}
|
|
910
|
+
export declare namespace DisassociateBrowserSettingsResponse {
|
|
911
|
+
/**
|
|
912
|
+
* @internal
|
|
913
|
+
*/
|
|
914
|
+
const filterSensitiveLog: (obj: DisassociateBrowserSettingsResponse) => any;
|
|
915
|
+
}
|
|
916
|
+
export interface DisassociateNetworkSettingsRequest {
|
|
917
|
+
/**
|
|
918
|
+
* <p>The ARN of the web portal.</p>
|
|
919
|
+
*/
|
|
920
|
+
portalArn: string | undefined;
|
|
921
|
+
}
|
|
922
|
+
export declare namespace DisassociateNetworkSettingsRequest {
|
|
923
|
+
/**
|
|
924
|
+
* @internal
|
|
925
|
+
*/
|
|
926
|
+
const filterSensitiveLog: (obj: DisassociateNetworkSettingsRequest) => any;
|
|
927
|
+
}
|
|
928
|
+
export interface DisassociateNetworkSettingsResponse {
|
|
929
|
+
}
|
|
930
|
+
export declare namespace DisassociateNetworkSettingsResponse {
|
|
931
|
+
/**
|
|
932
|
+
* @internal
|
|
933
|
+
*/
|
|
934
|
+
const filterSensitiveLog: (obj: DisassociateNetworkSettingsResponse) => any;
|
|
935
|
+
}
|
|
936
|
+
export interface DisassociateTrustStoreRequest {
|
|
937
|
+
/**
|
|
938
|
+
* <p>The ARN of the web portal.</p>
|
|
939
|
+
*/
|
|
940
|
+
portalArn: string | undefined;
|
|
941
|
+
}
|
|
942
|
+
export declare namespace DisassociateTrustStoreRequest {
|
|
943
|
+
/**
|
|
944
|
+
* @internal
|
|
945
|
+
*/
|
|
946
|
+
const filterSensitiveLog: (obj: DisassociateTrustStoreRequest) => any;
|
|
947
|
+
}
|
|
948
|
+
export interface DisassociateTrustStoreResponse {
|
|
949
|
+
}
|
|
950
|
+
export declare namespace DisassociateTrustStoreResponse {
|
|
951
|
+
/**
|
|
952
|
+
* @internal
|
|
953
|
+
*/
|
|
954
|
+
const filterSensitiveLog: (obj: DisassociateTrustStoreResponse) => any;
|
|
955
|
+
}
|
|
956
|
+
export interface DisassociateUserSettingsRequest {
|
|
957
|
+
/**
|
|
958
|
+
* <p>The ARN of the web portal.</p>
|
|
959
|
+
*/
|
|
960
|
+
portalArn: string | undefined;
|
|
961
|
+
}
|
|
962
|
+
export declare namespace DisassociateUserSettingsRequest {
|
|
963
|
+
/**
|
|
964
|
+
* @internal
|
|
965
|
+
*/
|
|
966
|
+
const filterSensitiveLog: (obj: DisassociateUserSettingsRequest) => any;
|
|
967
|
+
}
|
|
968
|
+
export interface DisassociateUserSettingsResponse {
|
|
969
|
+
}
|
|
970
|
+
export declare namespace DisassociateUserSettingsResponse {
|
|
971
|
+
/**
|
|
972
|
+
* @internal
|
|
973
|
+
*/
|
|
974
|
+
const filterSensitiveLog: (obj: DisassociateUserSettingsResponse) => any;
|
|
975
|
+
}
|
|
976
|
+
export interface GetBrowserSettingsRequest {
|
|
977
|
+
/**
|
|
978
|
+
* <p>The ARN of the browser settings.</p>
|
|
979
|
+
*/
|
|
980
|
+
browserSettingsArn: string | undefined;
|
|
981
|
+
}
|
|
982
|
+
export declare namespace GetBrowserSettingsRequest {
|
|
983
|
+
/**
|
|
984
|
+
* @internal
|
|
985
|
+
*/
|
|
986
|
+
const filterSensitiveLog: (obj: GetBrowserSettingsRequest) => any;
|
|
987
|
+
}
|
|
988
|
+
/**
|
|
989
|
+
* <p>The browser settings resource that can be associated with a web portal. Once associated
|
|
990
|
+
* with a web portal, browser settings control how the browser will behave once a user starts
|
|
991
|
+
* a streaming session for the web portal. </p>
|
|
992
|
+
*/
|
|
993
|
+
export interface BrowserSettings {
|
|
994
|
+
/**
|
|
995
|
+
* <p>The ARN of the browser settings.</p>
|
|
996
|
+
*/
|
|
997
|
+
browserSettingsArn: string | undefined;
|
|
998
|
+
/**
|
|
999
|
+
* <p>A list of web portal ARNs that this browser settings is associated with.</p>
|
|
1000
|
+
*/
|
|
1001
|
+
associatedPortalArns?: string[];
|
|
1002
|
+
/**
|
|
1003
|
+
* <p>A JSON string containing Chrome Enterprise policies that will be applied to all
|
|
1004
|
+
* streaming sessions.</p>
|
|
1005
|
+
*/
|
|
1006
|
+
browserPolicy?: string;
|
|
1007
|
+
}
|
|
1008
|
+
export declare namespace BrowserSettings {
|
|
1009
|
+
/**
|
|
1010
|
+
* @internal
|
|
1011
|
+
*/
|
|
1012
|
+
const filterSensitiveLog: (obj: BrowserSettings) => any;
|
|
1013
|
+
}
|
|
1014
|
+
export interface GetBrowserSettingsResponse {
|
|
1015
|
+
/**
|
|
1016
|
+
* <p>The browser settings.</p>
|
|
1017
|
+
*/
|
|
1018
|
+
browserSettings?: BrowserSettings;
|
|
1019
|
+
}
|
|
1020
|
+
export declare namespace GetBrowserSettingsResponse {
|
|
1021
|
+
/**
|
|
1022
|
+
* @internal
|
|
1023
|
+
*/
|
|
1024
|
+
const filterSensitiveLog: (obj: GetBrowserSettingsResponse) => any;
|
|
1025
|
+
}
|
|
1026
|
+
export interface GetIdentityProviderRequest {
|
|
1027
|
+
/**
|
|
1028
|
+
* <p>The ARN of the identity provider.</p>
|
|
1029
|
+
*/
|
|
1030
|
+
identityProviderArn: string | undefined;
|
|
1031
|
+
}
|
|
1032
|
+
export declare namespace GetIdentityProviderRequest {
|
|
1033
|
+
/**
|
|
1034
|
+
* @internal
|
|
1035
|
+
*/
|
|
1036
|
+
const filterSensitiveLog: (obj: GetIdentityProviderRequest) => any;
|
|
1037
|
+
}
|
|
1038
|
+
/**
|
|
1039
|
+
* <p>The identity provider.</p>
|
|
1040
|
+
*/
|
|
1041
|
+
export interface IdentityProvider {
|
|
1042
|
+
/**
|
|
1043
|
+
* <p>The ARN of the identity provider.</p>
|
|
1044
|
+
*/
|
|
1045
|
+
identityProviderArn: string | undefined;
|
|
1046
|
+
/**
|
|
1047
|
+
* <p>The identity provider name.</p>
|
|
1048
|
+
*/
|
|
1049
|
+
identityProviderName?: string;
|
|
1050
|
+
/**
|
|
1051
|
+
* <p>The identity provider type.</p>
|
|
1052
|
+
*/
|
|
1053
|
+
identityProviderType?: IdentityProviderType | string;
|
|
1054
|
+
/**
|
|
1055
|
+
* <p>The identity provider details. The following list describes the provider detail keys for
|
|
1056
|
+
* each identity provider type. </p>
|
|
1057
|
+
* <ul>
|
|
1058
|
+
* <li>
|
|
1059
|
+
* <p>For Google and Login with Amazon:</p>
|
|
1060
|
+
* <ul>
|
|
1061
|
+
* <li>
|
|
1062
|
+
* <p>
|
|
1063
|
+
* <code>client_id</code>
|
|
1064
|
+
* </p>
|
|
1065
|
+
* </li>
|
|
1066
|
+
* <li>
|
|
1067
|
+
* <p>
|
|
1068
|
+
* <code>client_secret</code>
|
|
1069
|
+
* </p>
|
|
1070
|
+
* </li>
|
|
1071
|
+
* <li>
|
|
1072
|
+
* <p>
|
|
1073
|
+
* <code>authorize_scopes</code>
|
|
1074
|
+
* </p>
|
|
1075
|
+
* </li>
|
|
1076
|
+
* </ul>
|
|
1077
|
+
* </li>
|
|
1078
|
+
* <li>
|
|
1079
|
+
* <p>For Facebook:</p>
|
|
1080
|
+
* <ul>
|
|
1081
|
+
* <li>
|
|
1082
|
+
* <p>
|
|
1083
|
+
* <code>client_id</code>
|
|
1084
|
+
* </p>
|
|
1085
|
+
* </li>
|
|
1086
|
+
* <li>
|
|
1087
|
+
* <p>
|
|
1088
|
+
* <code>client_secret</code>
|
|
1089
|
+
* </p>
|
|
1090
|
+
* </li>
|
|
1091
|
+
* <li>
|
|
1092
|
+
* <p>
|
|
1093
|
+
* <code>authorize_scopes</code>
|
|
1094
|
+
* </p>
|
|
1095
|
+
* </li>
|
|
1096
|
+
* <li>
|
|
1097
|
+
* <p>
|
|
1098
|
+
* <code>api_version</code>
|
|
1099
|
+
* </p>
|
|
1100
|
+
* </li>
|
|
1101
|
+
* </ul>
|
|
1102
|
+
* </li>
|
|
1103
|
+
* <li>
|
|
1104
|
+
* <p>For Sign in with Apple:</p>
|
|
1105
|
+
* <ul>
|
|
1106
|
+
* <li>
|
|
1107
|
+
* <p>
|
|
1108
|
+
* <code>client_id</code>
|
|
1109
|
+
* </p>
|
|
1110
|
+
* </li>
|
|
1111
|
+
* <li>
|
|
1112
|
+
* <p>
|
|
1113
|
+
* <code>team_id</code>
|
|
1114
|
+
* </p>
|
|
1115
|
+
* </li>
|
|
1116
|
+
* <li>
|
|
1117
|
+
* <p>
|
|
1118
|
+
* <code>key_id</code>
|
|
1119
|
+
* </p>
|
|
1120
|
+
* </li>
|
|
1121
|
+
* <li>
|
|
1122
|
+
* <p>
|
|
1123
|
+
* <code>private_key</code>
|
|
1124
|
+
* </p>
|
|
1125
|
+
* </li>
|
|
1126
|
+
* <li>
|
|
1127
|
+
* <p>
|
|
1128
|
+
* <code>authorize_scopes</code>
|
|
1129
|
+
* </p>
|
|
1130
|
+
* </li>
|
|
1131
|
+
* </ul>
|
|
1132
|
+
* </li>
|
|
1133
|
+
* <li>
|
|
1134
|
+
* <p>For OIDC providers:</p>
|
|
1135
|
+
* <ul>
|
|
1136
|
+
* <li>
|
|
1137
|
+
* <p>
|
|
1138
|
+
* <code>client_id</code>
|
|
1139
|
+
* </p>
|
|
1140
|
+
* </li>
|
|
1141
|
+
* <li>
|
|
1142
|
+
* <p>
|
|
1143
|
+
* <code>client_secret</code>
|
|
1144
|
+
* </p>
|
|
1145
|
+
* </li>
|
|
1146
|
+
* <li>
|
|
1147
|
+
* <p>
|
|
1148
|
+
* <code>attributes_request_method</code>
|
|
1149
|
+
* </p>
|
|
1150
|
+
* </li>
|
|
1151
|
+
* <li>
|
|
1152
|
+
* <p>
|
|
1153
|
+
* <code>oidc_issuer</code>
|
|
1154
|
+
* </p>
|
|
1155
|
+
* </li>
|
|
1156
|
+
* <li>
|
|
1157
|
+
* <p>
|
|
1158
|
+
* <code>authorize_scopes</code>
|
|
1159
|
+
* </p>
|
|
1160
|
+
* </li>
|
|
1161
|
+
* <li>
|
|
1162
|
+
* <p>
|
|
1163
|
+
* <code>authorize_url</code>
|
|
1164
|
+
* <i>if not available from discovery URL specified by oidc_issuer
|
|
1165
|
+
* key</i>
|
|
1166
|
+
* </p>
|
|
1167
|
+
* </li>
|
|
1168
|
+
* <li>
|
|
1169
|
+
* <p>
|
|
1170
|
+
* <code>token_url</code>
|
|
1171
|
+
* <i>if not available from discovery URL specified by oidc_issuer
|
|
1172
|
+
* key</i>
|
|
1173
|
+
* </p>
|
|
1174
|
+
* </li>
|
|
1175
|
+
* <li>
|
|
1176
|
+
* <p>
|
|
1177
|
+
* <code>attributes_url</code>
|
|
1178
|
+
* <i>if not available from discovery URL specified by oidc_issuer
|
|
1179
|
+
* key</i>
|
|
1180
|
+
* </p>
|
|
1181
|
+
* </li>
|
|
1182
|
+
* <li>
|
|
1183
|
+
* <p>
|
|
1184
|
+
* <code>jwks_uri</code>
|
|
1185
|
+
* <i>if not available from discovery URL specified by oidc_issuer
|
|
1186
|
+
* key</i>
|
|
1187
|
+
* </p>
|
|
1188
|
+
* </li>
|
|
1189
|
+
* </ul>
|
|
1190
|
+
* </li>
|
|
1191
|
+
* <li>
|
|
1192
|
+
* <p>For SAML providers:</p>
|
|
1193
|
+
* <ul>
|
|
1194
|
+
* <li>
|
|
1195
|
+
* <p>
|
|
1196
|
+
* <code>MetadataFile</code> OR <code>MetadataURL</code>
|
|
1197
|
+
* </p>
|
|
1198
|
+
* </li>
|
|
1199
|
+
* <li>
|
|
1200
|
+
* <p>
|
|
1201
|
+
* <code>IDPSignout</code>
|
|
1202
|
+
* <i>optional</i>
|
|
1203
|
+
* </p>
|
|
1204
|
+
* </li>
|
|
1205
|
+
* </ul>
|
|
1206
|
+
* </li>
|
|
1207
|
+
* </ul>
|
|
1208
|
+
*/
|
|
1209
|
+
identityProviderDetails?: {
|
|
1210
|
+
[key: string]: string;
|
|
1211
|
+
};
|
|
1212
|
+
}
|
|
1213
|
+
export declare namespace IdentityProvider {
|
|
1214
|
+
/**
|
|
1215
|
+
* @internal
|
|
1216
|
+
*/
|
|
1217
|
+
const filterSensitiveLog: (obj: IdentityProvider) => any;
|
|
1218
|
+
}
|
|
1219
|
+
export interface GetIdentityProviderResponse {
|
|
1220
|
+
/**
|
|
1221
|
+
* <p>The identity provider.</p>
|
|
1222
|
+
*/
|
|
1223
|
+
identityProvider?: IdentityProvider;
|
|
1224
|
+
}
|
|
1225
|
+
export declare namespace GetIdentityProviderResponse {
|
|
1226
|
+
/**
|
|
1227
|
+
* @internal
|
|
1228
|
+
*/
|
|
1229
|
+
const filterSensitiveLog: (obj: GetIdentityProviderResponse) => any;
|
|
1230
|
+
}
|
|
1231
|
+
export interface GetNetworkSettingsRequest {
|
|
1232
|
+
/**
|
|
1233
|
+
* <p>The ARN of the network settings.</p>
|
|
1234
|
+
*/
|
|
1235
|
+
networkSettingsArn: string | undefined;
|
|
1236
|
+
}
|
|
1237
|
+
export declare namespace GetNetworkSettingsRequest {
|
|
1238
|
+
/**
|
|
1239
|
+
* @internal
|
|
1240
|
+
*/
|
|
1241
|
+
const filterSensitiveLog: (obj: GetNetworkSettingsRequest) => any;
|
|
1242
|
+
}
|
|
1243
|
+
/**
|
|
1244
|
+
* <p>A network settings resource that can be associated with a web portal. Once associated
|
|
1245
|
+
* with a web portal, network settings define how streaming instances will connect with your
|
|
1246
|
+
* specified VPC. </p>
|
|
1247
|
+
*/
|
|
1248
|
+
export interface NetworkSettings {
|
|
1249
|
+
/**
|
|
1250
|
+
* <p>The ARN of the network settings.</p>
|
|
1251
|
+
*/
|
|
1252
|
+
networkSettingsArn: string | undefined;
|
|
1253
|
+
/**
|
|
1254
|
+
* <p>A list of web portal ARNs that this network settings is associated with.</p>
|
|
1255
|
+
*/
|
|
1256
|
+
associatedPortalArns?: string[];
|
|
1257
|
+
/**
|
|
1258
|
+
* <p>The VPC that streaming instances will connect to.</p>
|
|
1259
|
+
*/
|
|
1260
|
+
vpcId?: string;
|
|
1261
|
+
/**
|
|
1262
|
+
* <p>The subnets in which network interfaces are created to connect streaming instances to your VPC. At least two of these subnets must be in different availability zones.</p>
|
|
1263
|
+
*/
|
|
1264
|
+
subnetIds?: string[];
|
|
1265
|
+
/**
|
|
1266
|
+
* <p>One or more security groups used to control access from streaming instances to your VPC. </p>
|
|
1267
|
+
*/
|
|
1268
|
+
securityGroupIds?: string[];
|
|
1269
|
+
}
|
|
1270
|
+
export declare namespace NetworkSettings {
|
|
1271
|
+
/**
|
|
1272
|
+
* @internal
|
|
1273
|
+
*/
|
|
1274
|
+
const filterSensitiveLog: (obj: NetworkSettings) => any;
|
|
1275
|
+
}
|
|
1276
|
+
export interface GetNetworkSettingsResponse {
|
|
1277
|
+
/**
|
|
1278
|
+
* <p>The network settings.</p>
|
|
1279
|
+
*/
|
|
1280
|
+
networkSettings?: NetworkSettings;
|
|
1281
|
+
}
|
|
1282
|
+
export declare namespace GetNetworkSettingsResponse {
|
|
1283
|
+
/**
|
|
1284
|
+
* @internal
|
|
1285
|
+
*/
|
|
1286
|
+
const filterSensitiveLog: (obj: GetNetworkSettingsResponse) => any;
|
|
1287
|
+
}
|
|
1288
|
+
export interface GetPortalRequest {
|
|
1289
|
+
/**
|
|
1290
|
+
* <p>The ARN of the web portal.</p>
|
|
1291
|
+
*/
|
|
1292
|
+
portalArn: string | undefined;
|
|
1293
|
+
}
|
|
1294
|
+
export declare namespace GetPortalRequest {
|
|
1295
|
+
/**
|
|
1296
|
+
* @internal
|
|
1297
|
+
*/
|
|
1298
|
+
const filterSensitiveLog: (obj: GetPortalRequest) => any;
|
|
1299
|
+
}
|
|
1300
|
+
export declare enum BrowserType {
|
|
1301
|
+
CHROME = "Chrome"
|
|
1302
|
+
}
|
|
1303
|
+
export declare enum PortalStatus {
|
|
1304
|
+
ACTIVE = "Active",
|
|
1305
|
+
INCOMPLETE = "Incomplete",
|
|
1306
|
+
PENDING = "Pending"
|
|
1307
|
+
}
|
|
1308
|
+
export declare enum RendererType {
|
|
1309
|
+
APPSTREAM = "AppStream"
|
|
1310
|
+
}
|
|
1311
|
+
/**
|
|
1312
|
+
* <p>The web portal.</p>
|
|
1313
|
+
*/
|
|
1314
|
+
export interface Portal {
|
|
1315
|
+
/**
|
|
1316
|
+
* <p>The ARN of the web portal.</p>
|
|
1317
|
+
*/
|
|
1318
|
+
portalArn?: string;
|
|
1319
|
+
/**
|
|
1320
|
+
* <p>The renderer that is used in streaming sessions.</p>
|
|
1321
|
+
*/
|
|
1322
|
+
rendererType?: RendererType | string;
|
|
1323
|
+
/**
|
|
1324
|
+
* <p>The browser that users see when using a streaming session.</p>
|
|
1325
|
+
*/
|
|
1326
|
+
browserType?: BrowserType | string;
|
|
1327
|
+
/**
|
|
1328
|
+
* <p>The status of the web portal.</p>
|
|
1329
|
+
*/
|
|
1330
|
+
portalStatus?: PortalStatus | string;
|
|
1331
|
+
/**
|
|
1332
|
+
* <p>The endpoint URL of the web portal that users access in order to start streaming
|
|
1333
|
+
* sessions.</p>
|
|
1334
|
+
*/
|
|
1335
|
+
portalEndpoint?: string;
|
|
1336
|
+
/**
|
|
1337
|
+
* <p>The name of the web portal.</p>
|
|
1338
|
+
*/
|
|
1339
|
+
displayName?: string;
|
|
1340
|
+
/**
|
|
1341
|
+
* <p>The creation date of the web portal.</p>
|
|
1342
|
+
*/
|
|
1343
|
+
creationDate?: Date;
|
|
1344
|
+
/**
|
|
1345
|
+
* <p>The ARN of the browser settings that is associated with this web portal.</p>
|
|
1346
|
+
*/
|
|
1347
|
+
browserSettingsArn?: string;
|
|
1348
|
+
/**
|
|
1349
|
+
* <p>The ARN of the trust store that is associated with the web portal.</p>
|
|
1350
|
+
*/
|
|
1351
|
+
userSettingsArn?: string;
|
|
1352
|
+
/**
|
|
1353
|
+
* <p>The ARN of the network settings that is associated with the web portal.</p>
|
|
1354
|
+
*/
|
|
1355
|
+
networkSettingsArn?: string;
|
|
1356
|
+
/**
|
|
1357
|
+
* <p>The ARN of the trust store that is associated with the web portal.</p>
|
|
1358
|
+
*/
|
|
1359
|
+
trustStoreArn?: string;
|
|
1360
|
+
/**
|
|
1361
|
+
* <p>A message that explains why the web portal is in its current status.</p>
|
|
1362
|
+
*/
|
|
1363
|
+
statusReason?: string;
|
|
1364
|
+
}
|
|
1365
|
+
export declare namespace Portal {
|
|
1366
|
+
/**
|
|
1367
|
+
* @internal
|
|
1368
|
+
*/
|
|
1369
|
+
const filterSensitiveLog: (obj: Portal) => any;
|
|
1370
|
+
}
|
|
1371
|
+
export interface GetPortalResponse {
|
|
1372
|
+
/**
|
|
1373
|
+
* <p>The web portal.</p>
|
|
1374
|
+
*/
|
|
1375
|
+
portal?: Portal;
|
|
1376
|
+
}
|
|
1377
|
+
export declare namespace GetPortalResponse {
|
|
1378
|
+
/**
|
|
1379
|
+
* @internal
|
|
1380
|
+
*/
|
|
1381
|
+
const filterSensitiveLog: (obj: GetPortalResponse) => any;
|
|
1382
|
+
}
|
|
1383
|
+
export interface GetPortalServiceProviderMetadataRequest {
|
|
1384
|
+
/**
|
|
1385
|
+
* <p>The ARN of the web portal.</p>
|
|
1386
|
+
*/
|
|
1387
|
+
portalArn: string | undefined;
|
|
1388
|
+
}
|
|
1389
|
+
export declare namespace GetPortalServiceProviderMetadataRequest {
|
|
1390
|
+
/**
|
|
1391
|
+
* @internal
|
|
1392
|
+
*/
|
|
1393
|
+
const filterSensitiveLog: (obj: GetPortalServiceProviderMetadataRequest) => any;
|
|
1394
|
+
}
|
|
1395
|
+
export interface GetPortalServiceProviderMetadataResponse {
|
|
1396
|
+
/**
|
|
1397
|
+
* <p>The ARN of the web portal.</p>
|
|
1398
|
+
*/
|
|
1399
|
+
portalArn: string | undefined;
|
|
1400
|
+
/**
|
|
1401
|
+
* <p>The service provider SAML metadata.</p>
|
|
1402
|
+
*/
|
|
1403
|
+
serviceProviderSamlMetadata?: string;
|
|
1404
|
+
}
|
|
1405
|
+
export declare namespace GetPortalServiceProviderMetadataResponse {
|
|
1406
|
+
/**
|
|
1407
|
+
* @internal
|
|
1408
|
+
*/
|
|
1409
|
+
const filterSensitiveLog: (obj: GetPortalServiceProviderMetadataResponse) => any;
|
|
1410
|
+
}
|
|
1411
|
+
export interface GetTrustStoreRequest {
|
|
1412
|
+
/**
|
|
1413
|
+
* <p>The ARN of the trust store.</p>
|
|
1414
|
+
*/
|
|
1415
|
+
trustStoreArn: string | undefined;
|
|
1416
|
+
}
|
|
1417
|
+
export declare namespace GetTrustStoreRequest {
|
|
1418
|
+
/**
|
|
1419
|
+
* @internal
|
|
1420
|
+
*/
|
|
1421
|
+
const filterSensitiveLog: (obj: GetTrustStoreRequest) => any;
|
|
1422
|
+
}
|
|
1423
|
+
/**
|
|
1424
|
+
* <p>A trust store that can be associated with a web portal. A trust store contains
|
|
1425
|
+
* certificate authority (CA) certificates. Once associated with a web portal, the browser in
|
|
1426
|
+
* a streaming session will recognize certificates that have been issued using any of the CAs
|
|
1427
|
+
* in the trust store. If your organization has internal websites that use certificates issued
|
|
1428
|
+
* by private CAs, you should add the private CA certificate to the trust store. </p>
|
|
1429
|
+
*/
|
|
1430
|
+
export interface TrustStore {
|
|
1431
|
+
/**
|
|
1432
|
+
* <p>A list of web portal ARNs that this trust store is associated with.</p>
|
|
1433
|
+
*/
|
|
1434
|
+
associatedPortalArns?: string[];
|
|
1435
|
+
/**
|
|
1436
|
+
* <p>The ARN of the trust store.</p>
|
|
1437
|
+
*/
|
|
1438
|
+
trustStoreArn?: string;
|
|
1439
|
+
}
|
|
1440
|
+
export declare namespace TrustStore {
|
|
1441
|
+
/**
|
|
1442
|
+
* @internal
|
|
1443
|
+
*/
|
|
1444
|
+
const filterSensitiveLog: (obj: TrustStore) => any;
|
|
1445
|
+
}
|
|
1446
|
+
export interface GetTrustStoreResponse {
|
|
1447
|
+
/**
|
|
1448
|
+
* <p>The trust store.</p>
|
|
1449
|
+
*/
|
|
1450
|
+
trustStore?: TrustStore;
|
|
1451
|
+
}
|
|
1452
|
+
export declare namespace GetTrustStoreResponse {
|
|
1453
|
+
/**
|
|
1454
|
+
* @internal
|
|
1455
|
+
*/
|
|
1456
|
+
const filterSensitiveLog: (obj: GetTrustStoreResponse) => any;
|
|
1457
|
+
}
|
|
1458
|
+
export interface GetTrustStoreCertificateRequest {
|
|
1459
|
+
/**
|
|
1460
|
+
* <p>The ARN of the trust store certificate.</p>
|
|
1461
|
+
*/
|
|
1462
|
+
trustStoreArn: string | undefined;
|
|
1463
|
+
/**
|
|
1464
|
+
* <p>The thumbprint of the trust store certificate.</p>
|
|
1465
|
+
*/
|
|
1466
|
+
thumbprint: string | undefined;
|
|
1467
|
+
}
|
|
1468
|
+
export declare namespace GetTrustStoreCertificateRequest {
|
|
1469
|
+
/**
|
|
1470
|
+
* @internal
|
|
1471
|
+
*/
|
|
1472
|
+
const filterSensitiveLog: (obj: GetTrustStoreCertificateRequest) => any;
|
|
1473
|
+
}
|
|
1474
|
+
/**
|
|
1475
|
+
* <p>The certificate.</p>
|
|
1476
|
+
*/
|
|
1477
|
+
export interface Certificate {
|
|
1478
|
+
/**
|
|
1479
|
+
* <p>A hexadecimal identifier for the certificate.</p>
|
|
1480
|
+
*/
|
|
1481
|
+
thumbprint?: string;
|
|
1482
|
+
/**
|
|
1483
|
+
* <p>The entity the certificate belongs to.</p>
|
|
1484
|
+
*/
|
|
1485
|
+
subject?: string;
|
|
1486
|
+
/**
|
|
1487
|
+
* <p>The entity that issued the certificate.</p>
|
|
1488
|
+
*/
|
|
1489
|
+
issuer?: string;
|
|
1490
|
+
/**
|
|
1491
|
+
* <p>The certificate is not valid before this date.</p>
|
|
1492
|
+
*/
|
|
1493
|
+
notValidBefore?: Date;
|
|
1494
|
+
/**
|
|
1495
|
+
* <p>The certificate is not valid after this date.</p>
|
|
1496
|
+
*/
|
|
1497
|
+
notValidAfter?: Date;
|
|
1498
|
+
/**
|
|
1499
|
+
* <p>The body of the certificate.</p>
|
|
1500
|
+
*/
|
|
1501
|
+
body?: Uint8Array;
|
|
1502
|
+
}
|
|
1503
|
+
export declare namespace Certificate {
|
|
1504
|
+
/**
|
|
1505
|
+
* @internal
|
|
1506
|
+
*/
|
|
1507
|
+
const filterSensitiveLog: (obj: Certificate) => any;
|
|
1508
|
+
}
|
|
1509
|
+
export interface GetTrustStoreCertificateResponse {
|
|
1510
|
+
/**
|
|
1511
|
+
* <p>The ARN of the trust store certificate.</p>
|
|
1512
|
+
*/
|
|
1513
|
+
trustStoreArn?: string;
|
|
1514
|
+
/**
|
|
1515
|
+
* <p>The certificate of the trust store certificate.</p>
|
|
1516
|
+
*/
|
|
1517
|
+
certificate?: Certificate;
|
|
1518
|
+
}
|
|
1519
|
+
export declare namespace GetTrustStoreCertificateResponse {
|
|
1520
|
+
/**
|
|
1521
|
+
* @internal
|
|
1522
|
+
*/
|
|
1523
|
+
const filterSensitiveLog: (obj: GetTrustStoreCertificateResponse) => any;
|
|
1524
|
+
}
|
|
1525
|
+
export interface GetUserSettingsRequest {
|
|
1526
|
+
/**
|
|
1527
|
+
* <p>The ARN of the user settings.</p>
|
|
1528
|
+
*/
|
|
1529
|
+
userSettingsArn: string | undefined;
|
|
1530
|
+
}
|
|
1531
|
+
export declare namespace GetUserSettingsRequest {
|
|
1532
|
+
/**
|
|
1533
|
+
* @internal
|
|
1534
|
+
*/
|
|
1535
|
+
const filterSensitiveLog: (obj: GetUserSettingsRequest) => any;
|
|
1536
|
+
}
|
|
1537
|
+
/**
|
|
1538
|
+
* <p>A user settings resource that can be associated with a web portal. Once associated with
|
|
1539
|
+
* a web portal, user settings control how users can transfer data between a streaming session
|
|
1540
|
+
* and the their local devices. </p>
|
|
1541
|
+
*/
|
|
1542
|
+
export interface UserSettings {
|
|
1543
|
+
/**
|
|
1544
|
+
* <p>The ARN of the user settings.</p>
|
|
1545
|
+
*/
|
|
1546
|
+
userSettingsArn: string | undefined;
|
|
1547
|
+
/**
|
|
1548
|
+
* <p>A list of web portal ARNs that this user settings is associated with.</p>
|
|
1549
|
+
*/
|
|
1550
|
+
associatedPortalArns?: string[];
|
|
1551
|
+
/**
|
|
1552
|
+
* <p>Specifies whether the user can copy text from the streaming session to the local
|
|
1553
|
+
* device.</p>
|
|
1554
|
+
*/
|
|
1555
|
+
copyAllowed?: EnabledType | string;
|
|
1556
|
+
/**
|
|
1557
|
+
* <p>Specifies whether the user can paste text from the local device to the streaming
|
|
1558
|
+
* session.</p>
|
|
1559
|
+
*/
|
|
1560
|
+
pasteAllowed?: EnabledType | string;
|
|
1561
|
+
/**
|
|
1562
|
+
* <p>Specifies whether the user can download files from the streaming session to the local
|
|
1563
|
+
* device.</p>
|
|
1564
|
+
*/
|
|
1565
|
+
downloadAllowed?: EnabledType | string;
|
|
1566
|
+
/**
|
|
1567
|
+
* <p>Specifies whether the user can upload files from the local device to the streaming
|
|
1568
|
+
* session.</p>
|
|
1569
|
+
*/
|
|
1570
|
+
uploadAllowed?: EnabledType | string;
|
|
1571
|
+
/**
|
|
1572
|
+
* <p>Specifies whether the user can print to the local device.</p>
|
|
1573
|
+
*/
|
|
1574
|
+
printAllowed?: EnabledType | string;
|
|
1575
|
+
}
|
|
1576
|
+
export declare namespace UserSettings {
|
|
1577
|
+
/**
|
|
1578
|
+
* @internal
|
|
1579
|
+
*/
|
|
1580
|
+
const filterSensitiveLog: (obj: UserSettings) => any;
|
|
1581
|
+
}
|
|
1582
|
+
export interface GetUserSettingsResponse {
|
|
1583
|
+
/**
|
|
1584
|
+
* <p>The user settings.</p>
|
|
1585
|
+
*/
|
|
1586
|
+
userSettings?: UserSettings;
|
|
1587
|
+
}
|
|
1588
|
+
export declare namespace GetUserSettingsResponse {
|
|
1589
|
+
/**
|
|
1590
|
+
* @internal
|
|
1591
|
+
*/
|
|
1592
|
+
const filterSensitiveLog: (obj: GetUserSettingsResponse) => any;
|
|
1593
|
+
}
|
|
1594
|
+
export interface ListBrowserSettingsRequest {
|
|
1595
|
+
/**
|
|
1596
|
+
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
1597
|
+
*/
|
|
1598
|
+
nextToken?: string;
|
|
1599
|
+
/**
|
|
1600
|
+
* <p>The maximum number of results to be included in the next page.</p>
|
|
1601
|
+
*/
|
|
1602
|
+
maxResults?: number;
|
|
1603
|
+
}
|
|
1604
|
+
export declare namespace ListBrowserSettingsRequest {
|
|
1605
|
+
/**
|
|
1606
|
+
* @internal
|
|
1607
|
+
*/
|
|
1608
|
+
const filterSensitiveLog: (obj: ListBrowserSettingsRequest) => any;
|
|
1609
|
+
}
|
|
1610
|
+
/**
|
|
1611
|
+
* <p>The summary for browser settings.</p>
|
|
1612
|
+
*/
|
|
1613
|
+
export interface BrowserSettingsSummary {
|
|
1614
|
+
/**
|
|
1615
|
+
* <p>The ARN of the browser settings.</p>
|
|
1616
|
+
*/
|
|
1617
|
+
browserSettingsArn?: string;
|
|
1618
|
+
}
|
|
1619
|
+
export declare namespace BrowserSettingsSummary {
|
|
1620
|
+
/**
|
|
1621
|
+
* @internal
|
|
1622
|
+
*/
|
|
1623
|
+
const filterSensitiveLog: (obj: BrowserSettingsSummary) => any;
|
|
1624
|
+
}
|
|
1625
|
+
export interface ListBrowserSettingsResponse {
|
|
1626
|
+
/**
|
|
1627
|
+
* <p>The browser settings.</p>
|
|
1628
|
+
*/
|
|
1629
|
+
browserSettings?: BrowserSettingsSummary[];
|
|
1630
|
+
/**
|
|
1631
|
+
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
1632
|
+
*/
|
|
1633
|
+
nextToken?: string;
|
|
1634
|
+
}
|
|
1635
|
+
export declare namespace ListBrowserSettingsResponse {
|
|
1636
|
+
/**
|
|
1637
|
+
* @internal
|
|
1638
|
+
*/
|
|
1639
|
+
const filterSensitiveLog: (obj: ListBrowserSettingsResponse) => any;
|
|
1640
|
+
}
|
|
1641
|
+
export interface ListIdentityProvidersRequest {
|
|
1642
|
+
/**
|
|
1643
|
+
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
1644
|
+
*/
|
|
1645
|
+
nextToken?: string;
|
|
1646
|
+
/**
|
|
1647
|
+
* <p>The maximum number of results to be included in the next page.</p>
|
|
1648
|
+
*/
|
|
1649
|
+
maxResults?: number;
|
|
1650
|
+
/**
|
|
1651
|
+
* <p>The ARN of the web portal.</p>
|
|
1652
|
+
*/
|
|
1653
|
+
portalArn: string | undefined;
|
|
1654
|
+
}
|
|
1655
|
+
export declare namespace ListIdentityProvidersRequest {
|
|
1656
|
+
/**
|
|
1657
|
+
* @internal
|
|
1658
|
+
*/
|
|
1659
|
+
const filterSensitiveLog: (obj: ListIdentityProvidersRequest) => any;
|
|
1660
|
+
}
|
|
1661
|
+
/**
|
|
1662
|
+
* <p>The summary of the identity provider.</p>
|
|
1663
|
+
*/
|
|
1664
|
+
export interface IdentityProviderSummary {
|
|
1665
|
+
/**
|
|
1666
|
+
* <p>The ARN of the identity provider.</p>
|
|
1667
|
+
*/
|
|
1668
|
+
identityProviderArn?: string;
|
|
1669
|
+
/**
|
|
1670
|
+
* <p>The identity provider name.</p>
|
|
1671
|
+
*/
|
|
1672
|
+
identityProviderName?: string;
|
|
1673
|
+
/**
|
|
1674
|
+
* <p>The identity provider type.</p>
|
|
1675
|
+
*/
|
|
1676
|
+
identityProviderType?: IdentityProviderType | string;
|
|
1677
|
+
}
|
|
1678
|
+
export declare namespace IdentityProviderSummary {
|
|
1679
|
+
/**
|
|
1680
|
+
* @internal
|
|
1681
|
+
*/
|
|
1682
|
+
const filterSensitiveLog: (obj: IdentityProviderSummary) => any;
|
|
1683
|
+
}
|
|
1684
|
+
export interface ListIdentityProvidersResponse {
|
|
1685
|
+
/**
|
|
1686
|
+
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
1687
|
+
*/
|
|
1688
|
+
nextToken?: string;
|
|
1689
|
+
/**
|
|
1690
|
+
* <p>The identity providers.</p>
|
|
1691
|
+
*/
|
|
1692
|
+
identityProviders?: IdentityProviderSummary[];
|
|
1693
|
+
}
|
|
1694
|
+
export declare namespace ListIdentityProvidersResponse {
|
|
1695
|
+
/**
|
|
1696
|
+
* @internal
|
|
1697
|
+
*/
|
|
1698
|
+
const filterSensitiveLog: (obj: ListIdentityProvidersResponse) => any;
|
|
1699
|
+
}
|
|
1700
|
+
export interface ListNetworkSettingsRequest {
|
|
1701
|
+
/**
|
|
1702
|
+
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
1703
|
+
*/
|
|
1704
|
+
nextToken?: string;
|
|
1705
|
+
/**
|
|
1706
|
+
* <p>The maximum number of results to be included in the next page.</p>
|
|
1707
|
+
*/
|
|
1708
|
+
maxResults?: number;
|
|
1709
|
+
}
|
|
1710
|
+
export declare namespace ListNetworkSettingsRequest {
|
|
1711
|
+
/**
|
|
1712
|
+
* @internal
|
|
1713
|
+
*/
|
|
1714
|
+
const filterSensitiveLog: (obj: ListNetworkSettingsRequest) => any;
|
|
1715
|
+
}
|
|
1716
|
+
/**
|
|
1717
|
+
* <p>The summary of network settings.</p>
|
|
1718
|
+
*/
|
|
1719
|
+
export interface NetworkSettingsSummary {
|
|
1720
|
+
/**
|
|
1721
|
+
* <p>The ARN of the network settings.</p>
|
|
1722
|
+
*/
|
|
1723
|
+
networkSettingsArn?: string;
|
|
1724
|
+
/**
|
|
1725
|
+
* <p>The VPC ID of the network settings.</p>
|
|
1726
|
+
*/
|
|
1727
|
+
vpcId?: string;
|
|
1728
|
+
}
|
|
1729
|
+
export declare namespace NetworkSettingsSummary {
|
|
1730
|
+
/**
|
|
1731
|
+
* @internal
|
|
1732
|
+
*/
|
|
1733
|
+
const filterSensitiveLog: (obj: NetworkSettingsSummary) => any;
|
|
1734
|
+
}
|
|
1735
|
+
export interface ListNetworkSettingsResponse {
|
|
1736
|
+
/**
|
|
1737
|
+
* <p>The network settings.</p>
|
|
1738
|
+
*/
|
|
1739
|
+
networkSettings?: NetworkSettingsSummary[];
|
|
1740
|
+
/**
|
|
1741
|
+
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
1742
|
+
*/
|
|
1743
|
+
nextToken?: string;
|
|
1744
|
+
}
|
|
1745
|
+
export declare namespace ListNetworkSettingsResponse {
|
|
1746
|
+
/**
|
|
1747
|
+
* @internal
|
|
1748
|
+
*/
|
|
1749
|
+
const filterSensitiveLog: (obj: ListNetworkSettingsResponse) => any;
|
|
1750
|
+
}
|
|
1751
|
+
export interface ListPortalsRequest {
|
|
1752
|
+
/**
|
|
1753
|
+
* <p>The pagination token used to retrieve the next page of results for this operation. </p>
|
|
1754
|
+
*/
|
|
1755
|
+
nextToken?: string;
|
|
1756
|
+
/**
|
|
1757
|
+
* <p>The maximum number of results to be included in the next page.</p>
|
|
1758
|
+
*/
|
|
1759
|
+
maxResults?: number;
|
|
1760
|
+
}
|
|
1761
|
+
export declare namespace ListPortalsRequest {
|
|
1762
|
+
/**
|
|
1763
|
+
* @internal
|
|
1764
|
+
*/
|
|
1765
|
+
const filterSensitiveLog: (obj: ListPortalsRequest) => any;
|
|
1766
|
+
}
|
|
1767
|
+
/**
|
|
1768
|
+
* <p>The summary of the portal.</p>
|
|
1769
|
+
*/
|
|
1770
|
+
export interface PortalSummary {
|
|
1771
|
+
/**
|
|
1772
|
+
* <p>The ARN of the web portal.</p>
|
|
1773
|
+
*/
|
|
1774
|
+
portalArn?: string;
|
|
1775
|
+
/**
|
|
1776
|
+
* <p>The renderer that is used in streaming sessions.</p>
|
|
1777
|
+
*/
|
|
1778
|
+
rendererType?: RendererType | string;
|
|
1779
|
+
/**
|
|
1780
|
+
* <p>The browser type of the web portal.</p>
|
|
1781
|
+
*/
|
|
1782
|
+
browserType?: BrowserType | string;
|
|
1783
|
+
/**
|
|
1784
|
+
* <p>The status of the web portal.</p>
|
|
1785
|
+
*/
|
|
1786
|
+
portalStatus?: PortalStatus | string;
|
|
1787
|
+
/**
|
|
1788
|
+
* <p>The endpoint URL of the web portal that users access in order to start streaming
|
|
1789
|
+
* sessions.</p>
|
|
1790
|
+
*/
|
|
1791
|
+
portalEndpoint?: string;
|
|
1792
|
+
/**
|
|
1793
|
+
* <p>The name of the web portal.</p>
|
|
1794
|
+
*/
|
|
1795
|
+
displayName?: string;
|
|
1796
|
+
/**
|
|
1797
|
+
* <p>The creation date of the web portal.</p>
|
|
1798
|
+
*/
|
|
1799
|
+
creationDate?: Date;
|
|
1800
|
+
/**
|
|
1801
|
+
* <p>The ARN of the browser settings that is associated with the web portal.</p>
|
|
1802
|
+
*/
|
|
1803
|
+
browserSettingsArn?: string;
|
|
1804
|
+
/**
|
|
1805
|
+
* <p>The ARN of the user settings that is associated with the web portal.</p>
|
|
1806
|
+
*/
|
|
1807
|
+
userSettingsArn?: string;
|
|
1808
|
+
/**
|
|
1809
|
+
* <p>The ARN of the network settings that is associated with the web portal.</p>
|
|
1810
|
+
*/
|
|
1811
|
+
networkSettingsArn?: string;
|
|
1812
|
+
/**
|
|
1813
|
+
* <p>The ARN of the trust that is associated with this web portal.</p>
|
|
1814
|
+
*/
|
|
1815
|
+
trustStoreArn?: string;
|
|
1816
|
+
}
|
|
1817
|
+
export declare namespace PortalSummary {
|
|
1818
|
+
/**
|
|
1819
|
+
* @internal
|
|
1820
|
+
*/
|
|
1821
|
+
const filterSensitiveLog: (obj: PortalSummary) => any;
|
|
1822
|
+
}
|
|
1823
|
+
export interface ListPortalsResponse {
|
|
1824
|
+
/**
|
|
1825
|
+
* <p>The portals in the list.</p>
|
|
1826
|
+
*/
|
|
1827
|
+
portals?: PortalSummary[];
|
|
1828
|
+
/**
|
|
1829
|
+
* <p>The pagination token used to retrieve the next page of results for this operation. </p>
|
|
1830
|
+
*/
|
|
1831
|
+
nextToken?: string;
|
|
1832
|
+
}
|
|
1833
|
+
export declare namespace ListPortalsResponse {
|
|
1834
|
+
/**
|
|
1835
|
+
* @internal
|
|
1836
|
+
*/
|
|
1837
|
+
const filterSensitiveLog: (obj: ListPortalsResponse) => any;
|
|
1838
|
+
}
|
|
1839
|
+
export interface ListTagsForResourceRequest {
|
|
1840
|
+
/**
|
|
1841
|
+
* <p>The ARN of the resource.</p>
|
|
1842
|
+
*/
|
|
1843
|
+
resourceArn: string | undefined;
|
|
1844
|
+
}
|
|
1845
|
+
export declare namespace ListTagsForResourceRequest {
|
|
1846
|
+
/**
|
|
1847
|
+
* @internal
|
|
1848
|
+
*/
|
|
1849
|
+
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1850
|
+
}
|
|
1851
|
+
export interface ListTagsForResourceResponse {
|
|
1852
|
+
/**
|
|
1853
|
+
* <p>The tags of the resource.</p>
|
|
1854
|
+
*/
|
|
1855
|
+
tags?: Tag[];
|
|
1856
|
+
}
|
|
1857
|
+
export declare namespace ListTagsForResourceResponse {
|
|
1858
|
+
/**
|
|
1859
|
+
* @internal
|
|
1860
|
+
*/
|
|
1861
|
+
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1862
|
+
}
|
|
1863
|
+
export interface ListTrustStoreCertificatesRequest {
|
|
1864
|
+
/**
|
|
1865
|
+
* <p>The ARN of the trust store</p>
|
|
1866
|
+
*/
|
|
1867
|
+
trustStoreArn: string | undefined;
|
|
1868
|
+
/**
|
|
1869
|
+
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
1870
|
+
*/
|
|
1871
|
+
nextToken?: string;
|
|
1872
|
+
/**
|
|
1873
|
+
* <p>The maximum number of results to be included in the next page.</p>
|
|
1874
|
+
*/
|
|
1875
|
+
maxResults?: number;
|
|
1876
|
+
}
|
|
1877
|
+
export declare namespace ListTrustStoreCertificatesRequest {
|
|
1878
|
+
/**
|
|
1879
|
+
* @internal
|
|
1880
|
+
*/
|
|
1881
|
+
const filterSensitiveLog: (obj: ListTrustStoreCertificatesRequest) => any;
|
|
1882
|
+
}
|
|
1883
|
+
/**
|
|
1884
|
+
* <p>The summary of the certificate.</p>
|
|
1885
|
+
*/
|
|
1886
|
+
export interface CertificateSummary {
|
|
1887
|
+
/**
|
|
1888
|
+
* <p>A hexadecimal identifier for the certificate.</p>
|
|
1889
|
+
*/
|
|
1890
|
+
thumbprint?: string;
|
|
1891
|
+
/**
|
|
1892
|
+
* <p>The entity the certificate belongs to.</p>
|
|
1893
|
+
*/
|
|
1894
|
+
subject?: string;
|
|
1895
|
+
/**
|
|
1896
|
+
* <p>The entity that issued the certificate.</p>
|
|
1897
|
+
*/
|
|
1898
|
+
issuer?: string;
|
|
1899
|
+
/**
|
|
1900
|
+
* <p>The certificate is not valid before this date.</p>
|
|
1901
|
+
*/
|
|
1902
|
+
notValidBefore?: Date;
|
|
1903
|
+
/**
|
|
1904
|
+
* <p>The certificate is not valid after this date.</p>
|
|
1905
|
+
*/
|
|
1906
|
+
notValidAfter?: Date;
|
|
1907
|
+
}
|
|
1908
|
+
export declare namespace CertificateSummary {
|
|
1909
|
+
/**
|
|
1910
|
+
* @internal
|
|
1911
|
+
*/
|
|
1912
|
+
const filterSensitiveLog: (obj: CertificateSummary) => any;
|
|
1913
|
+
}
|
|
1914
|
+
export interface ListTrustStoreCertificatesResponse {
|
|
1915
|
+
/**
|
|
1916
|
+
* <p>The certificate list.</p>
|
|
1917
|
+
*/
|
|
1918
|
+
certificateList?: CertificateSummary[];
|
|
1919
|
+
/**
|
|
1920
|
+
* <p>The ARN of the trust store.</p>
|
|
1921
|
+
*/
|
|
1922
|
+
trustStoreArn?: string;
|
|
1923
|
+
/**
|
|
1924
|
+
* <p>The pagination token used to retrieve the next page of results for this operation.></p>
|
|
1925
|
+
*/
|
|
1926
|
+
nextToken?: string;
|
|
1927
|
+
}
|
|
1928
|
+
export declare namespace ListTrustStoreCertificatesResponse {
|
|
1929
|
+
/**
|
|
1930
|
+
* @internal
|
|
1931
|
+
*/
|
|
1932
|
+
const filterSensitiveLog: (obj: ListTrustStoreCertificatesResponse) => any;
|
|
1933
|
+
}
|
|
1934
|
+
export interface ListTrustStoresRequest {
|
|
1935
|
+
/**
|
|
1936
|
+
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
1937
|
+
*/
|
|
1938
|
+
nextToken?: string;
|
|
1939
|
+
/**
|
|
1940
|
+
* <p>The maximum number of results to be included in the next page.</p>
|
|
1941
|
+
*/
|
|
1942
|
+
maxResults?: number;
|
|
1943
|
+
}
|
|
1944
|
+
export declare namespace ListTrustStoresRequest {
|
|
1945
|
+
/**
|
|
1946
|
+
* @internal
|
|
1947
|
+
*/
|
|
1948
|
+
const filterSensitiveLog: (obj: ListTrustStoresRequest) => any;
|
|
1949
|
+
}
|
|
1950
|
+
/**
|
|
1951
|
+
* <p>The summary of the trust store.</p>
|
|
1952
|
+
*/
|
|
1953
|
+
export interface TrustStoreSummary {
|
|
1954
|
+
/**
|
|
1955
|
+
* <p>The ARN of the trust store.</p>
|
|
1956
|
+
*/
|
|
1957
|
+
trustStoreArn?: string;
|
|
1958
|
+
}
|
|
1959
|
+
export declare namespace TrustStoreSummary {
|
|
1960
|
+
/**
|
|
1961
|
+
* @internal
|
|
1962
|
+
*/
|
|
1963
|
+
const filterSensitiveLog: (obj: TrustStoreSummary) => any;
|
|
1964
|
+
}
|
|
1965
|
+
export interface ListTrustStoresResponse {
|
|
1966
|
+
/**
|
|
1967
|
+
* <p>The trust stores.</p>
|
|
1968
|
+
*/
|
|
1969
|
+
trustStores?: TrustStoreSummary[];
|
|
1970
|
+
/**
|
|
1971
|
+
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
1972
|
+
*/
|
|
1973
|
+
nextToken?: string;
|
|
1974
|
+
}
|
|
1975
|
+
export declare namespace ListTrustStoresResponse {
|
|
1976
|
+
/**
|
|
1977
|
+
* @internal
|
|
1978
|
+
*/
|
|
1979
|
+
const filterSensitiveLog: (obj: ListTrustStoresResponse) => any;
|
|
1980
|
+
}
|
|
1981
|
+
export interface ListUserSettingsRequest {
|
|
1982
|
+
/**
|
|
1983
|
+
* <p>The pagination token used to retrieve the next page of results for this operation. </p>
|
|
1984
|
+
*/
|
|
1985
|
+
nextToken?: string;
|
|
1986
|
+
/**
|
|
1987
|
+
* <p>The maximum number of results to be included in the next page.</p>
|
|
1988
|
+
*/
|
|
1989
|
+
maxResults?: number;
|
|
1990
|
+
}
|
|
1991
|
+
export declare namespace ListUserSettingsRequest {
|
|
1992
|
+
/**
|
|
1993
|
+
* @internal
|
|
1994
|
+
*/
|
|
1995
|
+
const filterSensitiveLog: (obj: ListUserSettingsRequest) => any;
|
|
1996
|
+
}
|
|
1997
|
+
/**
|
|
1998
|
+
* <p>The summary of user settings.</p>
|
|
1999
|
+
*/
|
|
2000
|
+
export interface UserSettingsSummary {
|
|
2001
|
+
/**
|
|
2002
|
+
* <p>The ARN of the user settings.</p>
|
|
2003
|
+
*/
|
|
2004
|
+
userSettingsArn?: string;
|
|
2005
|
+
/**
|
|
2006
|
+
* <p>Specifies whether the user can copy text from the streaming session to the local
|
|
2007
|
+
* device.</p>
|
|
2008
|
+
*/
|
|
2009
|
+
copyAllowed?: EnabledType | string;
|
|
2010
|
+
/**
|
|
2011
|
+
* <p>Specifies whether the user can paste text from the local device to the streaming
|
|
2012
|
+
* session.</p>
|
|
2013
|
+
*/
|
|
2014
|
+
pasteAllowed?: EnabledType | string;
|
|
2015
|
+
/**
|
|
2016
|
+
* <p>Specifies whether the user can download files from the streaming session to the local
|
|
2017
|
+
* device.</p>
|
|
2018
|
+
*/
|
|
2019
|
+
downloadAllowed?: EnabledType | string;
|
|
2020
|
+
/**
|
|
2021
|
+
* <p>Specifies whether the user can upload files from the local device to the streaming
|
|
2022
|
+
* session.</p>
|
|
2023
|
+
*/
|
|
2024
|
+
uploadAllowed?: EnabledType | string;
|
|
2025
|
+
/**
|
|
2026
|
+
* <p>Specifies whether the user can print to the local device.</p>
|
|
2027
|
+
*/
|
|
2028
|
+
printAllowed?: EnabledType | string;
|
|
2029
|
+
}
|
|
2030
|
+
export declare namespace UserSettingsSummary {
|
|
2031
|
+
/**
|
|
2032
|
+
* @internal
|
|
2033
|
+
*/
|
|
2034
|
+
const filterSensitiveLog: (obj: UserSettingsSummary) => any;
|
|
2035
|
+
}
|
|
2036
|
+
export interface ListUserSettingsResponse {
|
|
2037
|
+
/**
|
|
2038
|
+
* <p>The user settings.</p>
|
|
2039
|
+
*/
|
|
2040
|
+
userSettings?: UserSettingsSummary[];
|
|
2041
|
+
/**
|
|
2042
|
+
* <p>The pagination token used to retrieve the next page of results for this operation. </p>
|
|
2043
|
+
*/
|
|
2044
|
+
nextToken?: string;
|
|
2045
|
+
}
|
|
2046
|
+
export declare namespace ListUserSettingsResponse {
|
|
2047
|
+
/**
|
|
2048
|
+
* @internal
|
|
2049
|
+
*/
|
|
2050
|
+
const filterSensitiveLog: (obj: ListUserSettingsResponse) => any;
|
|
2051
|
+
}
|
|
2052
|
+
export interface TagResourceRequest {
|
|
2053
|
+
/**
|
|
2054
|
+
* <p>The ARN of the resource.</p>
|
|
2055
|
+
*/
|
|
2056
|
+
resourceArn: string | undefined;
|
|
2057
|
+
/**
|
|
2058
|
+
* <p>The tags of the resource.</p>
|
|
2059
|
+
*/
|
|
2060
|
+
tags: Tag[] | undefined;
|
|
2061
|
+
/**
|
|
2062
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
2063
|
+
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
2064
|
+
* request, if the original request completes successfully, subsequent retries with the same
|
|
2065
|
+
* client token returns the result from the original successful request. </p>
|
|
2066
|
+
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
2067
|
+
* SDK.</p>
|
|
2068
|
+
*/
|
|
2069
|
+
clientToken?: string;
|
|
2070
|
+
}
|
|
2071
|
+
export declare namespace TagResourceRequest {
|
|
2072
|
+
/**
|
|
2073
|
+
* @internal
|
|
2074
|
+
*/
|
|
2075
|
+
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
2076
|
+
}
|
|
2077
|
+
export interface TagResourceResponse {
|
|
2078
|
+
}
|
|
2079
|
+
export declare namespace TagResourceResponse {
|
|
2080
|
+
/**
|
|
2081
|
+
* @internal
|
|
2082
|
+
*/
|
|
2083
|
+
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
2084
|
+
}
|
|
2085
|
+
/**
|
|
2086
|
+
* <p>There are too many tags.</p>
|
|
2087
|
+
*/
|
|
2088
|
+
export interface TooManyTagsException extends __SmithyException, $MetadataBearer {
|
|
2089
|
+
name: "TooManyTagsException";
|
|
2090
|
+
$fault: "client";
|
|
2091
|
+
message?: string;
|
|
2092
|
+
/**
|
|
2093
|
+
* <p>Name of the resource affected.</p>
|
|
2094
|
+
*/
|
|
2095
|
+
resourceName?: string;
|
|
2096
|
+
}
|
|
2097
|
+
export declare namespace TooManyTagsException {
|
|
2098
|
+
/**
|
|
2099
|
+
* @internal
|
|
2100
|
+
*/
|
|
2101
|
+
const filterSensitiveLog: (obj: TooManyTagsException) => any;
|
|
2102
|
+
}
|
|
2103
|
+
export interface UntagResourceRequest {
|
|
2104
|
+
/**
|
|
2105
|
+
* <p>The ARN of the resource.</p>
|
|
2106
|
+
*/
|
|
2107
|
+
resourceArn: string | undefined;
|
|
2108
|
+
/**
|
|
2109
|
+
* <p>The list of tag keys to remove from the resource.</p>
|
|
2110
|
+
*/
|
|
2111
|
+
tagKeys: string[] | undefined;
|
|
2112
|
+
}
|
|
2113
|
+
export declare namespace UntagResourceRequest {
|
|
2114
|
+
/**
|
|
2115
|
+
* @internal
|
|
2116
|
+
*/
|
|
2117
|
+
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
2118
|
+
}
|
|
2119
|
+
export interface UntagResourceResponse {
|
|
2120
|
+
}
|
|
2121
|
+
export declare namespace UntagResourceResponse {
|
|
2122
|
+
/**
|
|
2123
|
+
* @internal
|
|
2124
|
+
*/
|
|
2125
|
+
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
2126
|
+
}
|
|
2127
|
+
export interface UpdateBrowserSettingsRequest {
|
|
2128
|
+
/**
|
|
2129
|
+
* <p>The ARN of the browser settings.</p>
|
|
2130
|
+
*/
|
|
2131
|
+
browserSettingsArn: string | undefined;
|
|
2132
|
+
/**
|
|
2133
|
+
* <p>A JSON string containing Chrome Enterprise policies that will be applied to all
|
|
2134
|
+
* streaming sessions. </p>
|
|
2135
|
+
*/
|
|
2136
|
+
browserPolicy?: string;
|
|
2137
|
+
/**
|
|
2138
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
2139
|
+
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
2140
|
+
* request, if the original request completes successfully, subsequent retries with the same
|
|
2141
|
+
* client token return the result from the original successful request. </p>
|
|
2142
|
+
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
2143
|
+
* SDK.</p>
|
|
2144
|
+
*/
|
|
2145
|
+
clientToken?: string;
|
|
2146
|
+
}
|
|
2147
|
+
export declare namespace UpdateBrowserSettingsRequest {
|
|
2148
|
+
/**
|
|
2149
|
+
* @internal
|
|
2150
|
+
*/
|
|
2151
|
+
const filterSensitiveLog: (obj: UpdateBrowserSettingsRequest) => any;
|
|
2152
|
+
}
|
|
2153
|
+
export interface UpdateBrowserSettingsResponse {
|
|
2154
|
+
/**
|
|
2155
|
+
* <p>The browser settings.</p>
|
|
2156
|
+
*/
|
|
2157
|
+
browserSettings: BrowserSettings | undefined;
|
|
2158
|
+
}
|
|
2159
|
+
export declare namespace UpdateBrowserSettingsResponse {
|
|
2160
|
+
/**
|
|
2161
|
+
* @internal
|
|
2162
|
+
*/
|
|
2163
|
+
const filterSensitiveLog: (obj: UpdateBrowserSettingsResponse) => any;
|
|
2164
|
+
}
|
|
2165
|
+
export interface UpdateIdentityProviderRequest {
|
|
2166
|
+
/**
|
|
2167
|
+
* <p>The ARN of the identity provider.</p>
|
|
2168
|
+
*/
|
|
2169
|
+
identityProviderArn: string | undefined;
|
|
2170
|
+
/**
|
|
2171
|
+
* <p>The name of the identity provider.</p>
|
|
2172
|
+
*/
|
|
2173
|
+
identityProviderName?: string;
|
|
2174
|
+
/**
|
|
2175
|
+
* <p>The type of the identity provider.</p>
|
|
2176
|
+
*/
|
|
2177
|
+
identityProviderType?: IdentityProviderType | string;
|
|
2178
|
+
/**
|
|
2179
|
+
* <p>The details of the identity provider.</p>
|
|
2180
|
+
*/
|
|
2181
|
+
identityProviderDetails?: {
|
|
2182
|
+
[key: string]: string;
|
|
2183
|
+
};
|
|
2184
|
+
/**
|
|
2185
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
2186
|
+
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
2187
|
+
* request, if the original request completes successfully, subsequent retries with the same
|
|
2188
|
+
* client token return the result from the original successful request. </p>
|
|
2189
|
+
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
2190
|
+
* SDK.</p>
|
|
2191
|
+
*/
|
|
2192
|
+
clientToken?: string;
|
|
2193
|
+
}
|
|
2194
|
+
export declare namespace UpdateIdentityProviderRequest {
|
|
2195
|
+
/**
|
|
2196
|
+
* @internal
|
|
2197
|
+
*/
|
|
2198
|
+
const filterSensitiveLog: (obj: UpdateIdentityProviderRequest) => any;
|
|
2199
|
+
}
|
|
2200
|
+
export interface UpdateIdentityProviderResponse {
|
|
2201
|
+
/**
|
|
2202
|
+
* <p>The identity provider.</p>
|
|
2203
|
+
*/
|
|
2204
|
+
identityProvider: IdentityProvider | undefined;
|
|
2205
|
+
}
|
|
2206
|
+
export declare namespace UpdateIdentityProviderResponse {
|
|
2207
|
+
/**
|
|
2208
|
+
* @internal
|
|
2209
|
+
*/
|
|
2210
|
+
const filterSensitiveLog: (obj: UpdateIdentityProviderResponse) => any;
|
|
2211
|
+
}
|
|
2212
|
+
export interface UpdateNetworkSettingsRequest {
|
|
2213
|
+
/**
|
|
2214
|
+
* <p>The ARN of the network settings.</p>
|
|
2215
|
+
*/
|
|
2216
|
+
networkSettingsArn: string | undefined;
|
|
2217
|
+
/**
|
|
2218
|
+
* <p>The VPC that streaming instances will connect to.</p>
|
|
2219
|
+
*/
|
|
2220
|
+
vpcId?: string;
|
|
2221
|
+
/**
|
|
2222
|
+
* <p>The subnets in which network interfaces are created to connect streaming instances to your VPC. At least two of these subnets must be in different availability zones.</p>
|
|
2223
|
+
*/
|
|
2224
|
+
subnetIds?: string[];
|
|
2225
|
+
/**
|
|
2226
|
+
* <p>One or more security groups used to control access from streaming instances to your VPC.</p>
|
|
2227
|
+
*/
|
|
2228
|
+
securityGroupIds?: string[];
|
|
2229
|
+
/**
|
|
2230
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
2231
|
+
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
2232
|
+
* request, if the original request completes successfully, subsequent retries with the same
|
|
2233
|
+
* client token return the result from the original successful request. </p>
|
|
2234
|
+
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
2235
|
+
* SDK.</p>
|
|
2236
|
+
*/
|
|
2237
|
+
clientToken?: string;
|
|
2238
|
+
}
|
|
2239
|
+
export declare namespace UpdateNetworkSettingsRequest {
|
|
2240
|
+
/**
|
|
2241
|
+
* @internal
|
|
2242
|
+
*/
|
|
2243
|
+
const filterSensitiveLog: (obj: UpdateNetworkSettingsRequest) => any;
|
|
2244
|
+
}
|
|
2245
|
+
export interface UpdateNetworkSettingsResponse {
|
|
2246
|
+
/**
|
|
2247
|
+
* <p>The network settings.</p>
|
|
2248
|
+
*/
|
|
2249
|
+
networkSettings: NetworkSettings | undefined;
|
|
2250
|
+
}
|
|
2251
|
+
export declare namespace UpdateNetworkSettingsResponse {
|
|
2252
|
+
/**
|
|
2253
|
+
* @internal
|
|
2254
|
+
*/
|
|
2255
|
+
const filterSensitiveLog: (obj: UpdateNetworkSettingsResponse) => any;
|
|
2256
|
+
}
|
|
2257
|
+
export interface UpdatePortalRequest {
|
|
2258
|
+
/**
|
|
2259
|
+
* <p>The ARN of the web portal.</p>
|
|
2260
|
+
*/
|
|
2261
|
+
portalArn: string | undefined;
|
|
2262
|
+
/**
|
|
2263
|
+
* <p>The name of the web portal. This is not visible to users who log into the web portal.</p>
|
|
2264
|
+
*/
|
|
2265
|
+
displayName?: string;
|
|
2266
|
+
}
|
|
2267
|
+
export declare namespace UpdatePortalRequest {
|
|
2268
|
+
/**
|
|
2269
|
+
* @internal
|
|
2270
|
+
*/
|
|
2271
|
+
const filterSensitiveLog: (obj: UpdatePortalRequest) => any;
|
|
2272
|
+
}
|
|
2273
|
+
export interface UpdatePortalResponse {
|
|
2274
|
+
/**
|
|
2275
|
+
* <p>The web portal.</p>
|
|
2276
|
+
*/
|
|
2277
|
+
portal?: Portal;
|
|
2278
|
+
}
|
|
2279
|
+
export declare namespace UpdatePortalResponse {
|
|
2280
|
+
/**
|
|
2281
|
+
* @internal
|
|
2282
|
+
*/
|
|
2283
|
+
const filterSensitiveLog: (obj: UpdatePortalResponse) => any;
|
|
2284
|
+
}
|
|
2285
|
+
export interface UpdateTrustStoreRequest {
|
|
2286
|
+
/**
|
|
2287
|
+
* <p>The ARN of the trust store.</p>
|
|
2288
|
+
*/
|
|
2289
|
+
trustStoreArn: string | undefined;
|
|
2290
|
+
/**
|
|
2291
|
+
* <p>A list of CA certificates to add to the trust store.</p>
|
|
2292
|
+
*/
|
|
2293
|
+
certificatesToAdd?: Uint8Array[];
|
|
2294
|
+
/**
|
|
2295
|
+
* <p>A list of CA certificates to delete from a trust store.</p>
|
|
2296
|
+
*/
|
|
2297
|
+
certificatesToDelete?: string[];
|
|
2298
|
+
/**
|
|
2299
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
2300
|
+
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
2301
|
+
* request, if the original request completes successfully, subsequent retries with the same
|
|
2302
|
+
* client token return the result from the original successful request. </p>
|
|
2303
|
+
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
2304
|
+
* SDK.</p>
|
|
2305
|
+
*/
|
|
2306
|
+
clientToken?: string;
|
|
2307
|
+
}
|
|
2308
|
+
export declare namespace UpdateTrustStoreRequest {
|
|
2309
|
+
/**
|
|
2310
|
+
* @internal
|
|
2311
|
+
*/
|
|
2312
|
+
const filterSensitiveLog: (obj: UpdateTrustStoreRequest) => any;
|
|
2313
|
+
}
|
|
2314
|
+
export interface UpdateTrustStoreResponse {
|
|
2315
|
+
/**
|
|
2316
|
+
* <p>The ARN of the trust store.</p>
|
|
2317
|
+
*/
|
|
2318
|
+
trustStoreArn: string | undefined;
|
|
2319
|
+
}
|
|
2320
|
+
export declare namespace UpdateTrustStoreResponse {
|
|
2321
|
+
/**
|
|
2322
|
+
* @internal
|
|
2323
|
+
*/
|
|
2324
|
+
const filterSensitiveLog: (obj: UpdateTrustStoreResponse) => any;
|
|
2325
|
+
}
|
|
2326
|
+
export interface UpdateUserSettingsRequest {
|
|
2327
|
+
/**
|
|
2328
|
+
* <p>The ARN of the user settings.</p>
|
|
2329
|
+
*/
|
|
2330
|
+
userSettingsArn: string | undefined;
|
|
2331
|
+
/**
|
|
2332
|
+
* <p>Specifies whether the user can copy text from the streaming session to the local
|
|
2333
|
+
* device.</p>
|
|
2334
|
+
*/
|
|
2335
|
+
copyAllowed?: EnabledType | string;
|
|
2336
|
+
/**
|
|
2337
|
+
* <p>Specifies whether the user can paste text from the local device to the streaming
|
|
2338
|
+
* session.</p>
|
|
2339
|
+
*/
|
|
2340
|
+
pasteAllowed?: EnabledType | string;
|
|
2341
|
+
/**
|
|
2342
|
+
* <p>Specifies whether the user can download files from the streaming session to the local
|
|
2343
|
+
* device.</p>
|
|
2344
|
+
*/
|
|
2345
|
+
downloadAllowed?: EnabledType | string;
|
|
2346
|
+
/**
|
|
2347
|
+
* <p>Specifies whether the user can upload files from the local device to the streaming
|
|
2348
|
+
* session.</p>
|
|
2349
|
+
*/
|
|
2350
|
+
uploadAllowed?: EnabledType | string;
|
|
2351
|
+
/**
|
|
2352
|
+
* <p>Specifies whether the user can print to the local device.</p>
|
|
2353
|
+
*/
|
|
2354
|
+
printAllowed?: EnabledType | string;
|
|
2355
|
+
/**
|
|
2356
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
2357
|
+
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
2358
|
+
* request, if the original request completes successfully, subsequent retries with the same
|
|
2359
|
+
* client token return the result from the original successful request. </p>
|
|
2360
|
+
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
2361
|
+
* SDK.</p>
|
|
2362
|
+
*/
|
|
2363
|
+
clientToken?: string;
|
|
2364
|
+
}
|
|
2365
|
+
export declare namespace UpdateUserSettingsRequest {
|
|
2366
|
+
/**
|
|
2367
|
+
* @internal
|
|
2368
|
+
*/
|
|
2369
|
+
const filterSensitiveLog: (obj: UpdateUserSettingsRequest) => any;
|
|
2370
|
+
}
|
|
2371
|
+
export interface UpdateUserSettingsResponse {
|
|
2372
|
+
/**
|
|
2373
|
+
* <p>The user settings.</p>
|
|
2374
|
+
*/
|
|
2375
|
+
userSettings: UserSettings | undefined;
|
|
2376
|
+
}
|
|
2377
|
+
export declare namespace UpdateUserSettingsResponse {
|
|
2378
|
+
/**
|
|
2379
|
+
* @internal
|
|
2380
|
+
*/
|
|
2381
|
+
const filterSensitiveLog: (obj: UpdateUserSettingsResponse) => any;
|
|
2382
|
+
}
|