@aws-sdk/client-workspaces-web 3.935.0 → 3.939.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +79 -0
- package/dist-es/models/enums.js +66 -0
- package/dist-es/models/models_0.js +1 -66
- package/dist-types/models/enums.d.ts +170 -0
- package/dist-types/models/errors.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +1 -171
- package/dist-types/ts3.4/models/enums.d.ts +84 -0
- package/dist-types/ts3.4/models/errors.d.ts +2 -4
- package/dist-types/ts3.4/models/models_0.d.ts +12 -84
- package/package.json +12 -12
package/dist-cjs/index.js
CHANGED
|
@@ -3847,6 +3847,16 @@ const paginateListUserAccessLoggingSettings = core.createPaginator(WorkSpacesWeb
|
|
|
3847
3847
|
|
|
3848
3848
|
const paginateListUserSettings = core.createPaginator(WorkSpacesWebClient, ListUserSettingsCommand, "nextToken", "nextToken", "maxResults");
|
|
3849
3849
|
|
|
3850
|
+
const ValidationExceptionReason = {
|
|
3851
|
+
CANNOT_PARSE: "cannotParse",
|
|
3852
|
+
FIELD_VALIDATION_FAILED: "fieldValidationFailed",
|
|
3853
|
+
OTHER: "other",
|
|
3854
|
+
UNKNOWN_OPERATION: "unknownOperation",
|
|
3855
|
+
};
|
|
3856
|
+
const AuthenticationType = {
|
|
3857
|
+
IAM_IDENTITY_CENTER: "IAM_Identity_Center",
|
|
3858
|
+
STANDARD: "Standard",
|
|
3859
|
+
};
|
|
3850
3860
|
const Category = {
|
|
3851
3861
|
CHAT: "Chat",
|
|
3852
3862
|
CRIMINAL_ACTIVITY: "CriminalActivity",
|
|
@@ -3876,14 +3886,41 @@ const Category = {
|
|
|
3876
3886
|
WEAPONS: "Weapons",
|
|
3877
3887
|
WEB_BASED_EMAIL: "WebBasedEmail",
|
|
3878
3888
|
};
|
|
3889
|
+
const RedactionPlaceHolderType = {
|
|
3890
|
+
CUSTOM_TEXT: "CustomText",
|
|
3891
|
+
};
|
|
3879
3892
|
const SessionStatus = {
|
|
3880
3893
|
ACTIVE: "Active",
|
|
3881
3894
|
TERMINATED: "Terminated",
|
|
3882
3895
|
};
|
|
3896
|
+
const IdentityProviderType = {
|
|
3897
|
+
Facebook: "Facebook",
|
|
3898
|
+
Google: "Google",
|
|
3899
|
+
LoginWithAmazon: "LoginWithAmazon",
|
|
3900
|
+
OIDC: "OIDC",
|
|
3901
|
+
SAML: "SAML",
|
|
3902
|
+
SignInWithApple: "SignInWithApple",
|
|
3903
|
+
};
|
|
3883
3904
|
const SessionSortBy = {
|
|
3884
3905
|
START_TIME_ASCENDING: "StartTimeAscending",
|
|
3885
3906
|
START_TIME_DESCENDING: "StartTimeDescending",
|
|
3886
3907
|
};
|
|
3908
|
+
const BrowserType = {
|
|
3909
|
+
CHROME: "Chrome",
|
|
3910
|
+
};
|
|
3911
|
+
const _InstanceType = {
|
|
3912
|
+
STANDARD_LARGE: "standard.large",
|
|
3913
|
+
STANDARD_REGULAR: "standard.regular",
|
|
3914
|
+
STANDARD_XLARGE: "standard.xlarge",
|
|
3915
|
+
};
|
|
3916
|
+
const PortalStatus = {
|
|
3917
|
+
ACTIVE: "Active",
|
|
3918
|
+
INCOMPLETE: "Incomplete",
|
|
3919
|
+
PENDING: "Pending",
|
|
3920
|
+
};
|
|
3921
|
+
const RendererType = {
|
|
3922
|
+
APPSTREAM: "AppStream",
|
|
3923
|
+
};
|
|
3887
3924
|
const Event = {
|
|
3888
3925
|
CONTENT_COPY_FROM_WEBSITE: "ContentCopyFromWebsite",
|
|
3889
3926
|
CONTENT_PASTE_TO_WEBSITE: "ContentPasteToWebsite",
|
|
@@ -3911,6 +3948,35 @@ const LogFileFormat = {
|
|
|
3911
3948
|
JSON: "Json",
|
|
3912
3949
|
JSON_LINES: "JSONLines",
|
|
3913
3950
|
};
|
|
3951
|
+
const EnabledType = {
|
|
3952
|
+
DISABLED: "Disabled",
|
|
3953
|
+
ENABLED: "Enabled",
|
|
3954
|
+
};
|
|
3955
|
+
const ToolbarItem = {
|
|
3956
|
+
DUAL_MONITOR: "DualMonitor",
|
|
3957
|
+
FULL_SCREEN: "FullScreen",
|
|
3958
|
+
MICROPHONE: "Microphone",
|
|
3959
|
+
WEBCAM: "Webcam",
|
|
3960
|
+
WINDOWS: "Windows",
|
|
3961
|
+
};
|
|
3962
|
+
const MaxDisplayResolution = {
|
|
3963
|
+
RESOLUTION_1080P: "size1920X1080",
|
|
3964
|
+
RESOLUTION_1440P: "size2560X1440",
|
|
3965
|
+
RESOLUTION_1440P_ULTRA_WIDE: "size3440X1440",
|
|
3966
|
+
RESOLUTION_600P: "size800X600",
|
|
3967
|
+
RESOLUTION_720P: "size1280X720",
|
|
3968
|
+
RESOLUTION_768P: "size1024X768",
|
|
3969
|
+
RESOLUTION_DCI_4K: "size4096X2160",
|
|
3970
|
+
RESOLUTION_UHD_4K: "size3840X2160",
|
|
3971
|
+
};
|
|
3972
|
+
const ToolbarType = {
|
|
3973
|
+
DOCKED: "Docked",
|
|
3974
|
+
FLOATING: "Floating",
|
|
3975
|
+
};
|
|
3976
|
+
const VisualMode = {
|
|
3977
|
+
DARK: "Dark",
|
|
3978
|
+
LIGHT: "Light",
|
|
3979
|
+
};
|
|
3914
3980
|
|
|
3915
3981
|
Object.defineProperty(exports, "$Command", {
|
|
3916
3982
|
enumerable: true,
|
|
@@ -3929,6 +3995,8 @@ exports.AssociateSessionLoggerCommand = AssociateSessionLoggerCommand;
|
|
|
3929
3995
|
exports.AssociateTrustStoreCommand = AssociateTrustStoreCommand;
|
|
3930
3996
|
exports.AssociateUserAccessLoggingSettingsCommand = AssociateUserAccessLoggingSettingsCommand;
|
|
3931
3997
|
exports.AssociateUserSettingsCommand = AssociateUserSettingsCommand;
|
|
3998
|
+
exports.AuthenticationType = AuthenticationType;
|
|
3999
|
+
exports.BrowserType = BrowserType;
|
|
3932
4000
|
exports.Category = Category;
|
|
3933
4001
|
exports.ConflictException = ConflictException$1;
|
|
3934
4002
|
exports.CreateBrowserSettingsCommand = CreateBrowserSettingsCommand;
|
|
@@ -3959,6 +4027,7 @@ exports.DisassociateSessionLoggerCommand = DisassociateSessionLoggerCommand;
|
|
|
3959
4027
|
exports.DisassociateTrustStoreCommand = DisassociateTrustStoreCommand;
|
|
3960
4028
|
exports.DisassociateUserAccessLoggingSettingsCommand = DisassociateUserAccessLoggingSettingsCommand;
|
|
3961
4029
|
exports.DisassociateUserSettingsCommand = DisassociateUserSettingsCommand;
|
|
4030
|
+
exports.EnabledType = EnabledType;
|
|
3962
4031
|
exports.Event = Event;
|
|
3963
4032
|
exports.ExpireSessionCommand = ExpireSessionCommand;
|
|
3964
4033
|
exports.FolderStructure = FolderStructure;
|
|
@@ -3975,6 +4044,7 @@ exports.GetTrustStoreCertificateCommand = GetTrustStoreCertificateCommand;
|
|
|
3975
4044
|
exports.GetTrustStoreCommand = GetTrustStoreCommand;
|
|
3976
4045
|
exports.GetUserAccessLoggingSettingsCommand = GetUserAccessLoggingSettingsCommand;
|
|
3977
4046
|
exports.GetUserSettingsCommand = GetUserSettingsCommand;
|
|
4047
|
+
exports.IdentityProviderType = IdentityProviderType;
|
|
3978
4048
|
exports.InternalServerException = InternalServerException$1;
|
|
3979
4049
|
exports.ListBrowserSettingsCommand = ListBrowserSettingsCommand;
|
|
3980
4050
|
exports.ListDataProtectionSettingsCommand = ListDataProtectionSettingsCommand;
|
|
@@ -3990,6 +4060,10 @@ exports.ListTrustStoresCommand = ListTrustStoresCommand;
|
|
|
3990
4060
|
exports.ListUserAccessLoggingSettingsCommand = ListUserAccessLoggingSettingsCommand;
|
|
3991
4061
|
exports.ListUserSettingsCommand = ListUserSettingsCommand;
|
|
3992
4062
|
exports.LogFileFormat = LogFileFormat;
|
|
4063
|
+
exports.MaxDisplayResolution = MaxDisplayResolution;
|
|
4064
|
+
exports.PortalStatus = PortalStatus;
|
|
4065
|
+
exports.RedactionPlaceHolderType = RedactionPlaceHolderType;
|
|
4066
|
+
exports.RendererType = RendererType;
|
|
3993
4067
|
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
3994
4068
|
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
3995
4069
|
exports.SessionSortBy = SessionSortBy;
|
|
@@ -3997,6 +4071,8 @@ exports.SessionStatus = SessionStatus;
|
|
|
3997
4071
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3998
4072
|
exports.ThrottlingException = ThrottlingException$1;
|
|
3999
4073
|
exports.TooManyTagsException = TooManyTagsException$1;
|
|
4074
|
+
exports.ToolbarItem = ToolbarItem;
|
|
4075
|
+
exports.ToolbarType = ToolbarType;
|
|
4000
4076
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
4001
4077
|
exports.UpdateBrowserSettingsCommand = UpdateBrowserSettingsCommand;
|
|
4002
4078
|
exports.UpdateDataProtectionSettingsCommand = UpdateDataProtectionSettingsCommand;
|
|
@@ -4009,9 +4085,12 @@ exports.UpdateTrustStoreCommand = UpdateTrustStoreCommand;
|
|
|
4009
4085
|
exports.UpdateUserAccessLoggingSettingsCommand = UpdateUserAccessLoggingSettingsCommand;
|
|
4010
4086
|
exports.UpdateUserSettingsCommand = UpdateUserSettingsCommand;
|
|
4011
4087
|
exports.ValidationException = ValidationException$1;
|
|
4088
|
+
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
4089
|
+
exports.VisualMode = VisualMode;
|
|
4012
4090
|
exports.WorkSpacesWeb = WorkSpacesWeb;
|
|
4013
4091
|
exports.WorkSpacesWebClient = WorkSpacesWebClient;
|
|
4014
4092
|
exports.WorkSpacesWebServiceException = WorkSpacesWebServiceException$1;
|
|
4093
|
+
exports._InstanceType = _InstanceType;
|
|
4015
4094
|
exports.paginateListBrowserSettings = paginateListBrowserSettings;
|
|
4016
4095
|
exports.paginateListDataProtectionSettings = paginateListDataProtectionSettings;
|
|
4017
4096
|
exports.paginateListIdentityProviders = paginateListIdentityProviders;
|
package/dist-es/models/enums.js
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
export const ValidationExceptionReason = {
|
|
2
|
+
CANNOT_PARSE: "cannotParse",
|
|
3
|
+
FIELD_VALIDATION_FAILED: "fieldValidationFailed",
|
|
4
|
+
OTHER: "other",
|
|
5
|
+
UNKNOWN_OPERATION: "unknownOperation",
|
|
6
|
+
};
|
|
7
|
+
export const AuthenticationType = {
|
|
8
|
+
IAM_IDENTITY_CENTER: "IAM_Identity_Center",
|
|
9
|
+
STANDARD: "Standard",
|
|
10
|
+
};
|
|
1
11
|
export const Category = {
|
|
2
12
|
CHAT: "Chat",
|
|
3
13
|
CRIMINAL_ACTIVITY: "CriminalActivity",
|
|
@@ -27,14 +37,41 @@ export const Category = {
|
|
|
27
37
|
WEAPONS: "Weapons",
|
|
28
38
|
WEB_BASED_EMAIL: "WebBasedEmail",
|
|
29
39
|
};
|
|
40
|
+
export const RedactionPlaceHolderType = {
|
|
41
|
+
CUSTOM_TEXT: "CustomText",
|
|
42
|
+
};
|
|
30
43
|
export const SessionStatus = {
|
|
31
44
|
ACTIVE: "Active",
|
|
32
45
|
TERMINATED: "Terminated",
|
|
33
46
|
};
|
|
47
|
+
export const IdentityProviderType = {
|
|
48
|
+
Facebook: "Facebook",
|
|
49
|
+
Google: "Google",
|
|
50
|
+
LoginWithAmazon: "LoginWithAmazon",
|
|
51
|
+
OIDC: "OIDC",
|
|
52
|
+
SAML: "SAML",
|
|
53
|
+
SignInWithApple: "SignInWithApple",
|
|
54
|
+
};
|
|
34
55
|
export const SessionSortBy = {
|
|
35
56
|
START_TIME_ASCENDING: "StartTimeAscending",
|
|
36
57
|
START_TIME_DESCENDING: "StartTimeDescending",
|
|
37
58
|
};
|
|
59
|
+
export const BrowserType = {
|
|
60
|
+
CHROME: "Chrome",
|
|
61
|
+
};
|
|
62
|
+
export const _InstanceType = {
|
|
63
|
+
STANDARD_LARGE: "standard.large",
|
|
64
|
+
STANDARD_REGULAR: "standard.regular",
|
|
65
|
+
STANDARD_XLARGE: "standard.xlarge",
|
|
66
|
+
};
|
|
67
|
+
export const PortalStatus = {
|
|
68
|
+
ACTIVE: "Active",
|
|
69
|
+
INCOMPLETE: "Incomplete",
|
|
70
|
+
PENDING: "Pending",
|
|
71
|
+
};
|
|
72
|
+
export const RendererType = {
|
|
73
|
+
APPSTREAM: "AppStream",
|
|
74
|
+
};
|
|
38
75
|
export const Event = {
|
|
39
76
|
CONTENT_COPY_FROM_WEBSITE: "ContentCopyFromWebsite",
|
|
40
77
|
CONTENT_PASTE_TO_WEBSITE: "ContentPasteToWebsite",
|
|
@@ -62,3 +99,32 @@ export const LogFileFormat = {
|
|
|
62
99
|
JSON: "Json",
|
|
63
100
|
JSON_LINES: "JSONLines",
|
|
64
101
|
};
|
|
102
|
+
export const EnabledType = {
|
|
103
|
+
DISABLED: "Disabled",
|
|
104
|
+
ENABLED: "Enabled",
|
|
105
|
+
};
|
|
106
|
+
export const ToolbarItem = {
|
|
107
|
+
DUAL_MONITOR: "DualMonitor",
|
|
108
|
+
FULL_SCREEN: "FullScreen",
|
|
109
|
+
MICROPHONE: "Microphone",
|
|
110
|
+
WEBCAM: "Webcam",
|
|
111
|
+
WINDOWS: "Windows",
|
|
112
|
+
};
|
|
113
|
+
export const MaxDisplayResolution = {
|
|
114
|
+
RESOLUTION_1080P: "size1920X1080",
|
|
115
|
+
RESOLUTION_1440P: "size2560X1440",
|
|
116
|
+
RESOLUTION_1440P_ULTRA_WIDE: "size3440X1440",
|
|
117
|
+
RESOLUTION_600P: "size800X600",
|
|
118
|
+
RESOLUTION_720P: "size1280X720",
|
|
119
|
+
RESOLUTION_768P: "size1024X768",
|
|
120
|
+
RESOLUTION_DCI_4K: "size4096X2160",
|
|
121
|
+
RESOLUTION_UHD_4K: "size3840X2160",
|
|
122
|
+
};
|
|
123
|
+
export const ToolbarType = {
|
|
124
|
+
DOCKED: "Docked",
|
|
125
|
+
FLOATING: "Floating",
|
|
126
|
+
};
|
|
127
|
+
export const VisualMode = {
|
|
128
|
+
DARK: "Dark",
|
|
129
|
+
LIGHT: "Light",
|
|
130
|
+
};
|
|
@@ -1,66 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
CANNOT_PARSE: "cannotParse",
|
|
3
|
-
FIELD_VALIDATION_FAILED: "fieldValidationFailed",
|
|
4
|
-
OTHER: "other",
|
|
5
|
-
UNKNOWN_OPERATION: "unknownOperation",
|
|
6
|
-
};
|
|
7
|
-
export const AuthenticationType = {
|
|
8
|
-
IAM_IDENTITY_CENTER: "IAM_Identity_Center",
|
|
9
|
-
STANDARD: "Standard",
|
|
10
|
-
};
|
|
11
|
-
export const RedactionPlaceHolderType = {
|
|
12
|
-
CUSTOM_TEXT: "CustomText",
|
|
13
|
-
};
|
|
14
|
-
export const IdentityProviderType = {
|
|
15
|
-
Facebook: "Facebook",
|
|
16
|
-
Google: "Google",
|
|
17
|
-
LoginWithAmazon: "LoginWithAmazon",
|
|
18
|
-
OIDC: "OIDC",
|
|
19
|
-
SAML: "SAML",
|
|
20
|
-
SignInWithApple: "SignInWithApple",
|
|
21
|
-
};
|
|
22
|
-
export const BrowserType = {
|
|
23
|
-
CHROME: "Chrome",
|
|
24
|
-
};
|
|
25
|
-
export const _InstanceType = {
|
|
26
|
-
STANDARD_LARGE: "standard.large",
|
|
27
|
-
STANDARD_REGULAR: "standard.regular",
|
|
28
|
-
STANDARD_XLARGE: "standard.xlarge",
|
|
29
|
-
};
|
|
30
|
-
export const PortalStatus = {
|
|
31
|
-
ACTIVE: "Active",
|
|
32
|
-
INCOMPLETE: "Incomplete",
|
|
33
|
-
PENDING: "Pending",
|
|
34
|
-
};
|
|
35
|
-
export const RendererType = {
|
|
36
|
-
APPSTREAM: "AppStream",
|
|
37
|
-
};
|
|
38
|
-
export const EnabledType = {
|
|
39
|
-
DISABLED: "Disabled",
|
|
40
|
-
ENABLED: "Enabled",
|
|
41
|
-
};
|
|
42
|
-
export const ToolbarItem = {
|
|
43
|
-
DUAL_MONITOR: "DualMonitor",
|
|
44
|
-
FULL_SCREEN: "FullScreen",
|
|
45
|
-
MICROPHONE: "Microphone",
|
|
46
|
-
WEBCAM: "Webcam",
|
|
47
|
-
WINDOWS: "Windows",
|
|
48
|
-
};
|
|
49
|
-
export const MaxDisplayResolution = {
|
|
50
|
-
RESOLUTION_1080P: "size1920X1080",
|
|
51
|
-
RESOLUTION_1440P: "size2560X1440",
|
|
52
|
-
RESOLUTION_1440P_ULTRA_WIDE: "size3440X1440",
|
|
53
|
-
RESOLUTION_600P: "size800X600",
|
|
54
|
-
RESOLUTION_720P: "size1280X720",
|
|
55
|
-
RESOLUTION_768P: "size1024X768",
|
|
56
|
-
RESOLUTION_DCI_4K: "size4096X2160",
|
|
57
|
-
RESOLUTION_UHD_4K: "size3840X2160",
|
|
58
|
-
};
|
|
59
|
-
export const ToolbarType = {
|
|
60
|
-
DOCKED: "Docked",
|
|
61
|
-
FLOATING: "Floating",
|
|
62
|
-
};
|
|
63
|
-
export const VisualMode = {
|
|
64
|
-
DARK: "Dark",
|
|
65
|
-
LIGHT: "Light",
|
|
66
|
-
};
|
|
1
|
+
export {};
|
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const ValidationExceptionReason: {
|
|
6
|
+
readonly CANNOT_PARSE: "cannotParse";
|
|
7
|
+
readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
|
|
8
|
+
readonly OTHER: "other";
|
|
9
|
+
readonly UNKNOWN_OPERATION: "unknownOperation";
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
* @enum
|
|
18
|
+
*/
|
|
19
|
+
export declare const AuthenticationType: {
|
|
20
|
+
readonly IAM_IDENTITY_CENTER: "IAM_Identity_Center";
|
|
21
|
+
readonly STANDARD: "Standard";
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
export type AuthenticationType = (typeof AuthenticationType)[keyof typeof AuthenticationType];
|
|
1
27
|
/**
|
|
2
28
|
* @public
|
|
3
29
|
* @enum
|
|
@@ -35,6 +61,17 @@ export declare const Category: {
|
|
|
35
61
|
* @public
|
|
36
62
|
*/
|
|
37
63
|
export type Category = (typeof Category)[keyof typeof Category];
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
* @enum
|
|
67
|
+
*/
|
|
68
|
+
export declare const RedactionPlaceHolderType: {
|
|
69
|
+
readonly CUSTOM_TEXT: "CustomText";
|
|
70
|
+
};
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
export type RedactionPlaceHolderType = (typeof RedactionPlaceHolderType)[keyof typeof RedactionPlaceHolderType];
|
|
38
75
|
/**
|
|
39
76
|
* @public
|
|
40
77
|
* @enum
|
|
@@ -47,6 +84,22 @@ export declare const SessionStatus: {
|
|
|
47
84
|
* @public
|
|
48
85
|
*/
|
|
49
86
|
export type SessionStatus = (typeof SessionStatus)[keyof typeof SessionStatus];
|
|
87
|
+
/**
|
|
88
|
+
* @public
|
|
89
|
+
* @enum
|
|
90
|
+
*/
|
|
91
|
+
export declare const IdentityProviderType: {
|
|
92
|
+
readonly Facebook: "Facebook";
|
|
93
|
+
readonly Google: "Google";
|
|
94
|
+
readonly LoginWithAmazon: "LoginWithAmazon";
|
|
95
|
+
readonly OIDC: "OIDC";
|
|
96
|
+
readonly SAML: "SAML";
|
|
97
|
+
readonly SignInWithApple: "SignInWithApple";
|
|
98
|
+
};
|
|
99
|
+
/**
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
export type IdentityProviderType = (typeof IdentityProviderType)[keyof typeof IdentityProviderType];
|
|
50
103
|
/**
|
|
51
104
|
* @public
|
|
52
105
|
* @enum
|
|
@@ -59,6 +112,54 @@ export declare const SessionSortBy: {
|
|
|
59
112
|
* @public
|
|
60
113
|
*/
|
|
61
114
|
export type SessionSortBy = (typeof SessionSortBy)[keyof typeof SessionSortBy];
|
|
115
|
+
/**
|
|
116
|
+
* @public
|
|
117
|
+
* @enum
|
|
118
|
+
*/
|
|
119
|
+
export declare const BrowserType: {
|
|
120
|
+
readonly CHROME: "Chrome";
|
|
121
|
+
};
|
|
122
|
+
/**
|
|
123
|
+
* @public
|
|
124
|
+
*/
|
|
125
|
+
export type BrowserType = (typeof BrowserType)[keyof typeof BrowserType];
|
|
126
|
+
/**
|
|
127
|
+
* @public
|
|
128
|
+
* @enum
|
|
129
|
+
*/
|
|
130
|
+
export declare const _InstanceType: {
|
|
131
|
+
readonly STANDARD_LARGE: "standard.large";
|
|
132
|
+
readonly STANDARD_REGULAR: "standard.regular";
|
|
133
|
+
readonly STANDARD_XLARGE: "standard.xlarge";
|
|
134
|
+
};
|
|
135
|
+
/**
|
|
136
|
+
* @public
|
|
137
|
+
*/
|
|
138
|
+
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
139
|
+
/**
|
|
140
|
+
* @public
|
|
141
|
+
* @enum
|
|
142
|
+
*/
|
|
143
|
+
export declare const PortalStatus: {
|
|
144
|
+
readonly ACTIVE: "Active";
|
|
145
|
+
readonly INCOMPLETE: "Incomplete";
|
|
146
|
+
readonly PENDING: "Pending";
|
|
147
|
+
};
|
|
148
|
+
/**
|
|
149
|
+
* @public
|
|
150
|
+
*/
|
|
151
|
+
export type PortalStatus = (typeof PortalStatus)[keyof typeof PortalStatus];
|
|
152
|
+
/**
|
|
153
|
+
* @public
|
|
154
|
+
* @enum
|
|
155
|
+
*/
|
|
156
|
+
export declare const RendererType: {
|
|
157
|
+
readonly APPSTREAM: "AppStream";
|
|
158
|
+
};
|
|
159
|
+
/**
|
|
160
|
+
* @public
|
|
161
|
+
*/
|
|
162
|
+
export type RendererType = (typeof RendererType)[keyof typeof RendererType];
|
|
62
163
|
/**
|
|
63
164
|
* @public
|
|
64
165
|
* @enum
|
|
@@ -110,3 +211,72 @@ export declare const LogFileFormat: {
|
|
|
110
211
|
* @public
|
|
111
212
|
*/
|
|
112
213
|
export type LogFileFormat = (typeof LogFileFormat)[keyof typeof LogFileFormat];
|
|
214
|
+
/**
|
|
215
|
+
* @public
|
|
216
|
+
* @enum
|
|
217
|
+
*/
|
|
218
|
+
export declare const EnabledType: {
|
|
219
|
+
readonly DISABLED: "Disabled";
|
|
220
|
+
readonly ENABLED: "Enabled";
|
|
221
|
+
};
|
|
222
|
+
/**
|
|
223
|
+
* @public
|
|
224
|
+
*/
|
|
225
|
+
export type EnabledType = (typeof EnabledType)[keyof typeof EnabledType];
|
|
226
|
+
/**
|
|
227
|
+
* @public
|
|
228
|
+
* @enum
|
|
229
|
+
*/
|
|
230
|
+
export declare const ToolbarItem: {
|
|
231
|
+
readonly DUAL_MONITOR: "DualMonitor";
|
|
232
|
+
readonly FULL_SCREEN: "FullScreen";
|
|
233
|
+
readonly MICROPHONE: "Microphone";
|
|
234
|
+
readonly WEBCAM: "Webcam";
|
|
235
|
+
readonly WINDOWS: "Windows";
|
|
236
|
+
};
|
|
237
|
+
/**
|
|
238
|
+
* @public
|
|
239
|
+
*/
|
|
240
|
+
export type ToolbarItem = (typeof ToolbarItem)[keyof typeof ToolbarItem];
|
|
241
|
+
/**
|
|
242
|
+
* @public
|
|
243
|
+
* @enum
|
|
244
|
+
*/
|
|
245
|
+
export declare const MaxDisplayResolution: {
|
|
246
|
+
readonly RESOLUTION_1080P: "size1920X1080";
|
|
247
|
+
readonly RESOLUTION_1440P: "size2560X1440";
|
|
248
|
+
readonly RESOLUTION_1440P_ULTRA_WIDE: "size3440X1440";
|
|
249
|
+
readonly RESOLUTION_600P: "size800X600";
|
|
250
|
+
readonly RESOLUTION_720P: "size1280X720";
|
|
251
|
+
readonly RESOLUTION_768P: "size1024X768";
|
|
252
|
+
readonly RESOLUTION_DCI_4K: "size4096X2160";
|
|
253
|
+
readonly RESOLUTION_UHD_4K: "size3840X2160";
|
|
254
|
+
};
|
|
255
|
+
/**
|
|
256
|
+
* @public
|
|
257
|
+
*/
|
|
258
|
+
export type MaxDisplayResolution = (typeof MaxDisplayResolution)[keyof typeof MaxDisplayResolution];
|
|
259
|
+
/**
|
|
260
|
+
* @public
|
|
261
|
+
* @enum
|
|
262
|
+
*/
|
|
263
|
+
export declare const ToolbarType: {
|
|
264
|
+
readonly DOCKED: "Docked";
|
|
265
|
+
readonly FLOATING: "Floating";
|
|
266
|
+
};
|
|
267
|
+
/**
|
|
268
|
+
* @public
|
|
269
|
+
*/
|
|
270
|
+
export type ToolbarType = (typeof ToolbarType)[keyof typeof ToolbarType];
|
|
271
|
+
/**
|
|
272
|
+
* @public
|
|
273
|
+
* @enum
|
|
274
|
+
*/
|
|
275
|
+
export declare const VisualMode: {
|
|
276
|
+
readonly DARK: "Dark";
|
|
277
|
+
readonly LIGHT: "Light";
|
|
278
|
+
};
|
|
279
|
+
/**
|
|
280
|
+
* @public
|
|
281
|
+
*/
|
|
282
|
+
export type VisualMode = (typeof VisualMode)[keyof typeof VisualMode];
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import {
|
|
2
|
+
import { ValidationExceptionReason } from "./enums";
|
|
3
|
+
import { ValidationExceptionField } from "./models_0";
|
|
3
4
|
import { WorkSpacesWebServiceException as __BaseException } from "./WorkSpacesWebServiceException";
|
|
4
5
|
/**
|
|
5
6
|
* <p>Access is denied.</p>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Category, Event, FolderStructure, LogFileFormat, SessionSortBy, SessionStatus } from "./enums";
|
|
1
|
+
import { _InstanceType, AuthenticationType, BrowserType, Category, EnabledType, Event, FolderStructure, IdentityProviderType, LogFileFormat, MaxDisplayResolution, PortalStatus, RedactionPlaceHolderType, RendererType, SessionSortBy, SessionStatus, ToolbarItem, ToolbarType, VisualMode } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* @public
|
|
4
4
|
*/
|
|
@@ -45,20 +45,6 @@ export interface ValidationExceptionField {
|
|
|
45
45
|
*/
|
|
46
46
|
message: string | undefined;
|
|
47
47
|
}
|
|
48
|
-
/**
|
|
49
|
-
* @public
|
|
50
|
-
* @enum
|
|
51
|
-
*/
|
|
52
|
-
export declare const ValidationExceptionReason: {
|
|
53
|
-
readonly CANNOT_PARSE: "cannotParse";
|
|
54
|
-
readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
|
|
55
|
-
readonly OTHER: "other";
|
|
56
|
-
readonly UNKNOWN_OPERATION: "unknownOperation";
|
|
57
|
-
};
|
|
58
|
-
/**
|
|
59
|
-
* @public
|
|
60
|
-
*/
|
|
61
|
-
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
62
48
|
/**
|
|
63
49
|
* @public
|
|
64
50
|
*/
|
|
@@ -269,18 +255,6 @@ export interface AssociateUserSettingsResponse {
|
|
|
269
255
|
*/
|
|
270
256
|
userSettingsArn: string | undefined;
|
|
271
257
|
}
|
|
272
|
-
/**
|
|
273
|
-
* @public
|
|
274
|
-
* @enum
|
|
275
|
-
*/
|
|
276
|
-
export declare const AuthenticationType: {
|
|
277
|
-
readonly IAM_IDENTITY_CENTER: "IAM_Identity_Center";
|
|
278
|
-
readonly STANDARD: "Standard";
|
|
279
|
-
};
|
|
280
|
-
/**
|
|
281
|
-
* @public
|
|
282
|
-
*/
|
|
283
|
-
export type AuthenticationType = (typeof AuthenticationType)[keyof typeof AuthenticationType];
|
|
284
258
|
/**
|
|
285
259
|
* <p>The tag.</p>
|
|
286
260
|
* @public
|
|
@@ -554,17 +528,6 @@ export interface CustomPattern {
|
|
|
554
528
|
*/
|
|
555
529
|
keywordRegex?: string | undefined;
|
|
556
530
|
}
|
|
557
|
-
/**
|
|
558
|
-
* @public
|
|
559
|
-
* @enum
|
|
560
|
-
*/
|
|
561
|
-
export declare const RedactionPlaceHolderType: {
|
|
562
|
-
readonly CUSTOM_TEXT: "CustomText";
|
|
563
|
-
};
|
|
564
|
-
/**
|
|
565
|
-
* @public
|
|
566
|
-
*/
|
|
567
|
-
export type RedactionPlaceHolderType = (typeof RedactionPlaceHolderType)[keyof typeof RedactionPlaceHolderType];
|
|
568
531
|
/**
|
|
569
532
|
* <p>The redaction placeholder that will replace the redacted text in session.</p>
|
|
570
533
|
* @public
|
|
@@ -983,22 +946,6 @@ export interface GetSessionResponse {
|
|
|
983
946
|
*/
|
|
984
947
|
session?: Session | undefined;
|
|
985
948
|
}
|
|
986
|
-
/**
|
|
987
|
-
* @public
|
|
988
|
-
* @enum
|
|
989
|
-
*/
|
|
990
|
-
export declare const IdentityProviderType: {
|
|
991
|
-
readonly Facebook: "Facebook";
|
|
992
|
-
readonly Google: "Google";
|
|
993
|
-
readonly LoginWithAmazon: "LoginWithAmazon";
|
|
994
|
-
readonly OIDC: "OIDC";
|
|
995
|
-
readonly SAML: "SAML";
|
|
996
|
-
readonly SignInWithApple: "SignInWithApple";
|
|
997
|
-
};
|
|
998
|
-
/**
|
|
999
|
-
* @public
|
|
1000
|
-
*/
|
|
1001
|
-
export type IdentityProviderType = (typeof IdentityProviderType)[keyof typeof IdentityProviderType];
|
|
1002
949
|
/**
|
|
1003
950
|
* @public
|
|
1004
951
|
*/
|
|
@@ -2296,30 +2243,6 @@ export interface UpdateNetworkSettingsResponse {
|
|
|
2296
2243
|
*/
|
|
2297
2244
|
networkSettings: NetworkSettings | undefined;
|
|
2298
2245
|
}
|
|
2299
|
-
/**
|
|
2300
|
-
* @public
|
|
2301
|
-
* @enum
|
|
2302
|
-
*/
|
|
2303
|
-
export declare const BrowserType: {
|
|
2304
|
-
readonly CHROME: "Chrome";
|
|
2305
|
-
};
|
|
2306
|
-
/**
|
|
2307
|
-
* @public
|
|
2308
|
-
*/
|
|
2309
|
-
export type BrowserType = (typeof BrowserType)[keyof typeof BrowserType];
|
|
2310
|
-
/**
|
|
2311
|
-
* @public
|
|
2312
|
-
* @enum
|
|
2313
|
-
*/
|
|
2314
|
-
export declare const _InstanceType: {
|
|
2315
|
-
readonly STANDARD_LARGE: "standard.large";
|
|
2316
|
-
readonly STANDARD_REGULAR: "standard.regular";
|
|
2317
|
-
readonly STANDARD_XLARGE: "standard.xlarge";
|
|
2318
|
-
};
|
|
2319
|
-
/**
|
|
2320
|
-
* @public
|
|
2321
|
-
*/
|
|
2322
|
-
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
2323
2246
|
/**
|
|
2324
2247
|
* @public
|
|
2325
2248
|
*/
|
|
@@ -2542,30 +2465,6 @@ export interface GetPortalRequest {
|
|
|
2542
2465
|
*/
|
|
2543
2466
|
portalArn: string | undefined;
|
|
2544
2467
|
}
|
|
2545
|
-
/**
|
|
2546
|
-
* @public
|
|
2547
|
-
* @enum
|
|
2548
|
-
*/
|
|
2549
|
-
export declare const PortalStatus: {
|
|
2550
|
-
readonly ACTIVE: "Active";
|
|
2551
|
-
readonly INCOMPLETE: "Incomplete";
|
|
2552
|
-
readonly PENDING: "Pending";
|
|
2553
|
-
};
|
|
2554
|
-
/**
|
|
2555
|
-
* @public
|
|
2556
|
-
*/
|
|
2557
|
-
export type PortalStatus = (typeof PortalStatus)[keyof typeof PortalStatus];
|
|
2558
|
-
/**
|
|
2559
|
-
* @public
|
|
2560
|
-
* @enum
|
|
2561
|
-
*/
|
|
2562
|
-
export declare const RendererType: {
|
|
2563
|
-
readonly APPSTREAM: "AppStream";
|
|
2564
|
-
};
|
|
2565
|
-
/**
|
|
2566
|
-
* @public
|
|
2567
|
-
*/
|
|
2568
|
-
export type RendererType = (typeof RendererType)[keyof typeof RendererType];
|
|
2569
2468
|
/**
|
|
2570
2469
|
* <p>The web portal.</p>
|
|
2571
2470
|
* @public
|
|
@@ -3806,75 +3705,6 @@ export interface CookieSynchronizationConfiguration {
|
|
|
3806
3705
|
*/
|
|
3807
3706
|
blocklist?: CookieSpecification[] | undefined;
|
|
3808
3707
|
}
|
|
3809
|
-
/**
|
|
3810
|
-
* @public
|
|
3811
|
-
* @enum
|
|
3812
|
-
*/
|
|
3813
|
-
export declare const EnabledType: {
|
|
3814
|
-
readonly DISABLED: "Disabled";
|
|
3815
|
-
readonly ENABLED: "Enabled";
|
|
3816
|
-
};
|
|
3817
|
-
/**
|
|
3818
|
-
* @public
|
|
3819
|
-
*/
|
|
3820
|
-
export type EnabledType = (typeof EnabledType)[keyof typeof EnabledType];
|
|
3821
|
-
/**
|
|
3822
|
-
* @public
|
|
3823
|
-
* @enum
|
|
3824
|
-
*/
|
|
3825
|
-
export declare const ToolbarItem: {
|
|
3826
|
-
readonly DUAL_MONITOR: "DualMonitor";
|
|
3827
|
-
readonly FULL_SCREEN: "FullScreen";
|
|
3828
|
-
readonly MICROPHONE: "Microphone";
|
|
3829
|
-
readonly WEBCAM: "Webcam";
|
|
3830
|
-
readonly WINDOWS: "Windows";
|
|
3831
|
-
};
|
|
3832
|
-
/**
|
|
3833
|
-
* @public
|
|
3834
|
-
*/
|
|
3835
|
-
export type ToolbarItem = (typeof ToolbarItem)[keyof typeof ToolbarItem];
|
|
3836
|
-
/**
|
|
3837
|
-
* @public
|
|
3838
|
-
* @enum
|
|
3839
|
-
*/
|
|
3840
|
-
export declare const MaxDisplayResolution: {
|
|
3841
|
-
readonly RESOLUTION_1080P: "size1920X1080";
|
|
3842
|
-
readonly RESOLUTION_1440P: "size2560X1440";
|
|
3843
|
-
readonly RESOLUTION_1440P_ULTRA_WIDE: "size3440X1440";
|
|
3844
|
-
readonly RESOLUTION_600P: "size800X600";
|
|
3845
|
-
readonly RESOLUTION_720P: "size1280X720";
|
|
3846
|
-
readonly RESOLUTION_768P: "size1024X768";
|
|
3847
|
-
readonly RESOLUTION_DCI_4K: "size4096X2160";
|
|
3848
|
-
readonly RESOLUTION_UHD_4K: "size3840X2160";
|
|
3849
|
-
};
|
|
3850
|
-
/**
|
|
3851
|
-
* @public
|
|
3852
|
-
*/
|
|
3853
|
-
export type MaxDisplayResolution = (typeof MaxDisplayResolution)[keyof typeof MaxDisplayResolution];
|
|
3854
|
-
/**
|
|
3855
|
-
* @public
|
|
3856
|
-
* @enum
|
|
3857
|
-
*/
|
|
3858
|
-
export declare const ToolbarType: {
|
|
3859
|
-
readonly DOCKED: "Docked";
|
|
3860
|
-
readonly FLOATING: "Floating";
|
|
3861
|
-
};
|
|
3862
|
-
/**
|
|
3863
|
-
* @public
|
|
3864
|
-
*/
|
|
3865
|
-
export type ToolbarType = (typeof ToolbarType)[keyof typeof ToolbarType];
|
|
3866
|
-
/**
|
|
3867
|
-
* @public
|
|
3868
|
-
* @enum
|
|
3869
|
-
*/
|
|
3870
|
-
export declare const VisualMode: {
|
|
3871
|
-
readonly DARK: "Dark";
|
|
3872
|
-
readonly LIGHT: "Light";
|
|
3873
|
-
};
|
|
3874
|
-
/**
|
|
3875
|
-
* @public
|
|
3876
|
-
*/
|
|
3877
|
-
export type VisualMode = (typeof VisualMode)[keyof typeof VisualMode];
|
|
3878
3708
|
/**
|
|
3879
3709
|
* <p>The configuration of the toolbar. This allows administrators to select the toolbar type and visual mode, set maximum display resolution for sessions, and choose which items are visible to end users during their sessions. If administrators do not modify these settings, end users retain control over their toolbar preferences.</p>
|
|
3880
3710
|
* @public
|
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
export declare const ValidationExceptionReason: {
|
|
2
|
+
readonly CANNOT_PARSE: "cannotParse";
|
|
3
|
+
readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
|
|
4
|
+
readonly OTHER: "other";
|
|
5
|
+
readonly UNKNOWN_OPERATION: "unknownOperation";
|
|
6
|
+
};
|
|
7
|
+
export type ValidationExceptionReason =
|
|
8
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
9
|
+
export declare const AuthenticationType: {
|
|
10
|
+
readonly IAM_IDENTITY_CENTER: "IAM_Identity_Center";
|
|
11
|
+
readonly STANDARD: "Standard";
|
|
12
|
+
};
|
|
13
|
+
export type AuthenticationType =
|
|
14
|
+
(typeof AuthenticationType)[keyof typeof AuthenticationType];
|
|
1
15
|
export declare const Category: {
|
|
2
16
|
readonly CHAT: "Chat";
|
|
3
17
|
readonly CRIMINAL_ACTIVITY: "CriminalActivity";
|
|
@@ -28,16 +42,51 @@ export declare const Category: {
|
|
|
28
42
|
readonly WEB_BASED_EMAIL: "WebBasedEmail";
|
|
29
43
|
};
|
|
30
44
|
export type Category = (typeof Category)[keyof typeof Category];
|
|
45
|
+
export declare const RedactionPlaceHolderType: {
|
|
46
|
+
readonly CUSTOM_TEXT: "CustomText";
|
|
47
|
+
};
|
|
48
|
+
export type RedactionPlaceHolderType =
|
|
49
|
+
(typeof RedactionPlaceHolderType)[keyof typeof RedactionPlaceHolderType];
|
|
31
50
|
export declare const SessionStatus: {
|
|
32
51
|
readonly ACTIVE: "Active";
|
|
33
52
|
readonly TERMINATED: "Terminated";
|
|
34
53
|
};
|
|
35
54
|
export type SessionStatus = (typeof SessionStatus)[keyof typeof SessionStatus];
|
|
55
|
+
export declare const IdentityProviderType: {
|
|
56
|
+
readonly Facebook: "Facebook";
|
|
57
|
+
readonly Google: "Google";
|
|
58
|
+
readonly LoginWithAmazon: "LoginWithAmazon";
|
|
59
|
+
readonly OIDC: "OIDC";
|
|
60
|
+
readonly SAML: "SAML";
|
|
61
|
+
readonly SignInWithApple: "SignInWithApple";
|
|
62
|
+
};
|
|
63
|
+
export type IdentityProviderType =
|
|
64
|
+
(typeof IdentityProviderType)[keyof typeof IdentityProviderType];
|
|
36
65
|
export declare const SessionSortBy: {
|
|
37
66
|
readonly START_TIME_ASCENDING: "StartTimeAscending";
|
|
38
67
|
readonly START_TIME_DESCENDING: "StartTimeDescending";
|
|
39
68
|
};
|
|
40
69
|
export type SessionSortBy = (typeof SessionSortBy)[keyof typeof SessionSortBy];
|
|
70
|
+
export declare const BrowserType: {
|
|
71
|
+
readonly CHROME: "Chrome";
|
|
72
|
+
};
|
|
73
|
+
export type BrowserType = (typeof BrowserType)[keyof typeof BrowserType];
|
|
74
|
+
export declare const _InstanceType: {
|
|
75
|
+
readonly STANDARD_LARGE: "standard.large";
|
|
76
|
+
readonly STANDARD_REGULAR: "standard.regular";
|
|
77
|
+
readonly STANDARD_XLARGE: "standard.xlarge";
|
|
78
|
+
};
|
|
79
|
+
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
80
|
+
export declare const PortalStatus: {
|
|
81
|
+
readonly ACTIVE: "Active";
|
|
82
|
+
readonly INCOMPLETE: "Incomplete";
|
|
83
|
+
readonly PENDING: "Pending";
|
|
84
|
+
};
|
|
85
|
+
export type PortalStatus = (typeof PortalStatus)[keyof typeof PortalStatus];
|
|
86
|
+
export declare const RendererType: {
|
|
87
|
+
readonly APPSTREAM: "AppStream";
|
|
88
|
+
};
|
|
89
|
+
export type RendererType = (typeof RendererType)[keyof typeof RendererType];
|
|
41
90
|
export declare const Event: {
|
|
42
91
|
readonly CONTENT_COPY_FROM_WEBSITE: "ContentCopyFromWebsite";
|
|
43
92
|
readonly CONTENT_PASTE_TO_WEBSITE: "ContentPasteToWebsite";
|
|
@@ -69,3 +118,38 @@ export declare const LogFileFormat: {
|
|
|
69
118
|
readonly JSON_LINES: "JSONLines";
|
|
70
119
|
};
|
|
71
120
|
export type LogFileFormat = (typeof LogFileFormat)[keyof typeof LogFileFormat];
|
|
121
|
+
export declare const EnabledType: {
|
|
122
|
+
readonly DISABLED: "Disabled";
|
|
123
|
+
readonly ENABLED: "Enabled";
|
|
124
|
+
};
|
|
125
|
+
export type EnabledType = (typeof EnabledType)[keyof typeof EnabledType];
|
|
126
|
+
export declare const ToolbarItem: {
|
|
127
|
+
readonly DUAL_MONITOR: "DualMonitor";
|
|
128
|
+
readonly FULL_SCREEN: "FullScreen";
|
|
129
|
+
readonly MICROPHONE: "Microphone";
|
|
130
|
+
readonly WEBCAM: "Webcam";
|
|
131
|
+
readonly WINDOWS: "Windows";
|
|
132
|
+
};
|
|
133
|
+
export type ToolbarItem = (typeof ToolbarItem)[keyof typeof ToolbarItem];
|
|
134
|
+
export declare const MaxDisplayResolution: {
|
|
135
|
+
readonly RESOLUTION_1080P: "size1920X1080";
|
|
136
|
+
readonly RESOLUTION_1440P: "size2560X1440";
|
|
137
|
+
readonly RESOLUTION_1440P_ULTRA_WIDE: "size3440X1440";
|
|
138
|
+
readonly RESOLUTION_600P: "size800X600";
|
|
139
|
+
readonly RESOLUTION_720P: "size1280X720";
|
|
140
|
+
readonly RESOLUTION_768P: "size1024X768";
|
|
141
|
+
readonly RESOLUTION_DCI_4K: "size4096X2160";
|
|
142
|
+
readonly RESOLUTION_UHD_4K: "size3840X2160";
|
|
143
|
+
};
|
|
144
|
+
export type MaxDisplayResolution =
|
|
145
|
+
(typeof MaxDisplayResolution)[keyof typeof MaxDisplayResolution];
|
|
146
|
+
export declare const ToolbarType: {
|
|
147
|
+
readonly DOCKED: "Docked";
|
|
148
|
+
readonly FLOATING: "Floating";
|
|
149
|
+
};
|
|
150
|
+
export type ToolbarType = (typeof ToolbarType)[keyof typeof ToolbarType];
|
|
151
|
+
export declare const VisualMode: {
|
|
152
|
+
readonly DARK: "Dark";
|
|
153
|
+
readonly LIGHT: "Light";
|
|
154
|
+
};
|
|
155
|
+
export type VisualMode = (typeof VisualMode)[keyof typeof VisualMode];
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
ValidationExceptionReason,
|
|
5
|
-
} from "./models_0";
|
|
2
|
+
import { ValidationExceptionReason } from "./enums";
|
|
3
|
+
import { ValidationExceptionField } from "./models_0";
|
|
6
4
|
import { WorkSpacesWebServiceException as __BaseException } from "./WorkSpacesWebServiceException";
|
|
7
5
|
export declare class AccessDeniedException extends __BaseException {
|
|
8
6
|
readonly name: "AccessDeniedException";
|
|
@@ -1,10 +1,22 @@
|
|
|
1
1
|
import {
|
|
2
|
+
_InstanceType,
|
|
3
|
+
AuthenticationType,
|
|
4
|
+
BrowserType,
|
|
2
5
|
Category,
|
|
6
|
+
EnabledType,
|
|
3
7
|
Event,
|
|
4
8
|
FolderStructure,
|
|
9
|
+
IdentityProviderType,
|
|
5
10
|
LogFileFormat,
|
|
11
|
+
MaxDisplayResolution,
|
|
12
|
+
PortalStatus,
|
|
13
|
+
RedactionPlaceHolderType,
|
|
14
|
+
RendererType,
|
|
6
15
|
SessionSortBy,
|
|
7
16
|
SessionStatus,
|
|
17
|
+
ToolbarItem,
|
|
18
|
+
ToolbarType,
|
|
19
|
+
VisualMode,
|
|
8
20
|
} from "./enums";
|
|
9
21
|
export interface AssociateBrowserSettingsRequest {
|
|
10
22
|
portalArn: string | undefined;
|
|
@@ -18,14 +30,6 @@ export interface ValidationExceptionField {
|
|
|
18
30
|
name: string | undefined;
|
|
19
31
|
message: string | undefined;
|
|
20
32
|
}
|
|
21
|
-
export declare const ValidationExceptionReason: {
|
|
22
|
-
readonly CANNOT_PARSE: "cannotParse";
|
|
23
|
-
readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
|
|
24
|
-
readonly OTHER: "other";
|
|
25
|
-
readonly UNKNOWN_OPERATION: "unknownOperation";
|
|
26
|
-
};
|
|
27
|
-
export type ValidationExceptionReason =
|
|
28
|
-
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
29
33
|
export interface AssociateDataProtectionSettingsRequest {
|
|
30
34
|
portalArn: string | undefined;
|
|
31
35
|
dataProtectionSettingsArn: string | undefined;
|
|
@@ -82,12 +86,6 @@ export interface AssociateUserSettingsResponse {
|
|
|
82
86
|
portalArn: string | undefined;
|
|
83
87
|
userSettingsArn: string | undefined;
|
|
84
88
|
}
|
|
85
|
-
export declare const AuthenticationType: {
|
|
86
|
-
readonly IAM_IDENTITY_CENTER: "IAM_Identity_Center";
|
|
87
|
-
readonly STANDARD: "Standard";
|
|
88
|
-
};
|
|
89
|
-
export type AuthenticationType =
|
|
90
|
-
(typeof AuthenticationType)[keyof typeof AuthenticationType];
|
|
91
89
|
export interface Tag {
|
|
92
90
|
Key: string | undefined;
|
|
93
91
|
Value: string | undefined;
|
|
@@ -152,11 +150,6 @@ export interface CustomPattern {
|
|
|
152
150
|
patternDescription?: string | undefined;
|
|
153
151
|
keywordRegex?: string | undefined;
|
|
154
152
|
}
|
|
155
|
-
export declare const RedactionPlaceHolderType: {
|
|
156
|
-
readonly CUSTOM_TEXT: "CustomText";
|
|
157
|
-
};
|
|
158
|
-
export type RedactionPlaceHolderType =
|
|
159
|
-
(typeof RedactionPlaceHolderType)[keyof typeof RedactionPlaceHolderType];
|
|
160
153
|
export interface RedactionPlaceHolder {
|
|
161
154
|
redactionPlaceHolderType: RedactionPlaceHolderType | undefined;
|
|
162
155
|
redactionPlaceHolderText?: string | undefined;
|
|
@@ -252,16 +245,6 @@ export interface Session {
|
|
|
252
245
|
export interface GetSessionResponse {
|
|
253
246
|
session?: Session | undefined;
|
|
254
247
|
}
|
|
255
|
-
export declare const IdentityProviderType: {
|
|
256
|
-
readonly Facebook: "Facebook";
|
|
257
|
-
readonly Google: "Google";
|
|
258
|
-
readonly LoginWithAmazon: "LoginWithAmazon";
|
|
259
|
-
readonly OIDC: "OIDC";
|
|
260
|
-
readonly SAML: "SAML";
|
|
261
|
-
readonly SignInWithApple: "SignInWithApple";
|
|
262
|
-
};
|
|
263
|
-
export type IdentityProviderType =
|
|
264
|
-
(typeof IdentityProviderType)[keyof typeof IdentityProviderType];
|
|
265
248
|
export interface CreateIdentityProviderRequest {
|
|
266
249
|
portalArn: string | undefined;
|
|
267
250
|
identityProviderName: string | undefined;
|
|
@@ -449,16 +432,6 @@ export interface UpdateNetworkSettingsRequest {
|
|
|
449
432
|
export interface UpdateNetworkSettingsResponse {
|
|
450
433
|
networkSettings: NetworkSettings | undefined;
|
|
451
434
|
}
|
|
452
|
-
export declare const BrowserType: {
|
|
453
|
-
readonly CHROME: "Chrome";
|
|
454
|
-
};
|
|
455
|
-
export type BrowserType = (typeof BrowserType)[keyof typeof BrowserType];
|
|
456
|
-
export declare const _InstanceType: {
|
|
457
|
-
readonly STANDARD_LARGE: "standard.large";
|
|
458
|
-
readonly STANDARD_REGULAR: "standard.regular";
|
|
459
|
-
readonly STANDARD_XLARGE: "standard.xlarge";
|
|
460
|
-
};
|
|
461
|
-
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
462
435
|
export interface CreatePortalRequest {
|
|
463
436
|
displayName?: string | undefined;
|
|
464
437
|
tags?: Tag[] | undefined;
|
|
@@ -512,16 +485,6 @@ export interface DisassociateUserSettingsResponse {}
|
|
|
512
485
|
export interface GetPortalRequest {
|
|
513
486
|
portalArn: string | undefined;
|
|
514
487
|
}
|
|
515
|
-
export declare const PortalStatus: {
|
|
516
|
-
readonly ACTIVE: "Active";
|
|
517
|
-
readonly INCOMPLETE: "Incomplete";
|
|
518
|
-
readonly PENDING: "Pending";
|
|
519
|
-
};
|
|
520
|
-
export type PortalStatus = (typeof PortalStatus)[keyof typeof PortalStatus];
|
|
521
|
-
export declare const RendererType: {
|
|
522
|
-
readonly APPSTREAM: "AppStream";
|
|
523
|
-
};
|
|
524
|
-
export type RendererType = (typeof RendererType)[keyof typeof RendererType];
|
|
525
488
|
export interface Portal {
|
|
526
489
|
portalArn: string | undefined;
|
|
527
490
|
rendererType?: RendererType | undefined;
|
|
@@ -823,41 +786,6 @@ export interface CookieSynchronizationConfiguration {
|
|
|
823
786
|
allowlist: CookieSpecification[] | undefined;
|
|
824
787
|
blocklist?: CookieSpecification[] | undefined;
|
|
825
788
|
}
|
|
826
|
-
export declare const EnabledType: {
|
|
827
|
-
readonly DISABLED: "Disabled";
|
|
828
|
-
readonly ENABLED: "Enabled";
|
|
829
|
-
};
|
|
830
|
-
export type EnabledType = (typeof EnabledType)[keyof typeof EnabledType];
|
|
831
|
-
export declare const ToolbarItem: {
|
|
832
|
-
readonly DUAL_MONITOR: "DualMonitor";
|
|
833
|
-
readonly FULL_SCREEN: "FullScreen";
|
|
834
|
-
readonly MICROPHONE: "Microphone";
|
|
835
|
-
readonly WEBCAM: "Webcam";
|
|
836
|
-
readonly WINDOWS: "Windows";
|
|
837
|
-
};
|
|
838
|
-
export type ToolbarItem = (typeof ToolbarItem)[keyof typeof ToolbarItem];
|
|
839
|
-
export declare const MaxDisplayResolution: {
|
|
840
|
-
readonly RESOLUTION_1080P: "size1920X1080";
|
|
841
|
-
readonly RESOLUTION_1440P: "size2560X1440";
|
|
842
|
-
readonly RESOLUTION_1440P_ULTRA_WIDE: "size3440X1440";
|
|
843
|
-
readonly RESOLUTION_600P: "size800X600";
|
|
844
|
-
readonly RESOLUTION_720P: "size1280X720";
|
|
845
|
-
readonly RESOLUTION_768P: "size1024X768";
|
|
846
|
-
readonly RESOLUTION_DCI_4K: "size4096X2160";
|
|
847
|
-
readonly RESOLUTION_UHD_4K: "size3840X2160";
|
|
848
|
-
};
|
|
849
|
-
export type MaxDisplayResolution =
|
|
850
|
-
(typeof MaxDisplayResolution)[keyof typeof MaxDisplayResolution];
|
|
851
|
-
export declare const ToolbarType: {
|
|
852
|
-
readonly DOCKED: "Docked";
|
|
853
|
-
readonly FLOATING: "Floating";
|
|
854
|
-
};
|
|
855
|
-
export type ToolbarType = (typeof ToolbarType)[keyof typeof ToolbarType];
|
|
856
|
-
export declare const VisualMode: {
|
|
857
|
-
readonly DARK: "Dark";
|
|
858
|
-
readonly LIGHT: "Light";
|
|
859
|
-
};
|
|
860
|
-
export type VisualMode = (typeof VisualMode)[keyof typeof VisualMode];
|
|
861
789
|
export interface ToolbarConfiguration {
|
|
862
790
|
toolbarType?: ToolbarType | undefined;
|
|
863
791
|
visualMode?: VisualMode | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-workspaces-web",
|
|
3
3
|
"description": "AWS SDK for JavaScript Workspaces Web Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.939.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-workspaces-web",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.939.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
+
"@aws-sdk/types": "3.936.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.936.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
35
|
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|