@aws-sdk/client-workspaces-web 3.948.0 → 3.952.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.
@@ -83,6 +83,37 @@ declare const GetUserSettingsCommand_base: {
83
83
  * // ],
84
84
  * // maxDisplayResolution: "STRING_VALUE",
85
85
  * // },
86
+ * // brandingConfiguration: { // BrandingConfiguration
87
+ * // logo: { // ImageMetadata
88
+ * // mimeType: "image/png" || "image/jpeg" || "image/x-icon", // required
89
+ * // fileExtension: "STRING_VALUE", // required
90
+ * // lastUploadTimestamp: new Date("TIMESTAMP"), // required
91
+ * // },
92
+ * // wallpaper: {
93
+ * // mimeType: "image/png" || "image/jpeg" || "image/x-icon", // required
94
+ * // fileExtension: "STRING_VALUE", // required
95
+ * // lastUploadTimestamp: new Date("TIMESTAMP"), // required
96
+ * // },
97
+ * // favicon: {
98
+ * // mimeType: "image/png" || "image/jpeg" || "image/x-icon", // required
99
+ * // fileExtension: "STRING_VALUE", // required
100
+ * // lastUploadTimestamp: new Date("TIMESTAMP"), // required
101
+ * // },
102
+ * // localizedStrings: { // LocalizedBrandingStringMap // required
103
+ * // "<keys>": { // LocalizedBrandingStrings
104
+ * // browserTabTitle: "STRING_VALUE", // required
105
+ * // welcomeText: "STRING_VALUE", // required
106
+ * // loginTitle: "STRING_VALUE",
107
+ * // loginDescription: "STRING_VALUE",
108
+ * // loginButtonText: "STRING_VALUE",
109
+ * // contactLink: "STRING_VALUE",
110
+ * // contactButtonText: "STRING_VALUE",
111
+ * // loadingText: "STRING_VALUE",
112
+ * // },
113
+ * // },
114
+ * // colorTheme: "Light" || "Dark", // required
115
+ * // termsOfService: "STRING_VALUE",
116
+ * // },
86
117
  * // },
87
118
  * // };
88
119
  *
@@ -78,6 +78,37 @@ declare const ListUserSettingsCommand_base: {
78
78
  * // ],
79
79
  * // maxDisplayResolution: "STRING_VALUE",
80
80
  * // },
81
+ * // brandingConfiguration: { // BrandingConfiguration
82
+ * // logo: { // ImageMetadata
83
+ * // mimeType: "image/png" || "image/jpeg" || "image/x-icon", // required
84
+ * // fileExtension: "STRING_VALUE", // required
85
+ * // lastUploadTimestamp: new Date("TIMESTAMP"), // required
86
+ * // },
87
+ * // wallpaper: {
88
+ * // mimeType: "image/png" || "image/jpeg" || "image/x-icon", // required
89
+ * // fileExtension: "STRING_VALUE", // required
90
+ * // lastUploadTimestamp: new Date("TIMESTAMP"), // required
91
+ * // },
92
+ * // favicon: {
93
+ * // mimeType: "image/png" || "image/jpeg" || "image/x-icon", // required
94
+ * // fileExtension: "STRING_VALUE", // required
95
+ * // lastUploadTimestamp: new Date("TIMESTAMP"), // required
96
+ * // },
97
+ * // localizedStrings: { // LocalizedBrandingStringMap // required
98
+ * // "<keys>": { // LocalizedBrandingStrings
99
+ * // browserTabTitle: "STRING_VALUE", // required
100
+ * // welcomeText: "STRING_VALUE", // required
101
+ * // loginTitle: "STRING_VALUE",
102
+ * // loginDescription: "STRING_VALUE",
103
+ * // loginButtonText: "STRING_VALUE",
104
+ * // contactLink: "STRING_VALUE",
105
+ * // contactButtonText: "STRING_VALUE",
106
+ * // loadingText: "STRING_VALUE",
107
+ * // },
108
+ * // },
109
+ * // colorTheme: "Light" || "Dark", // required
110
+ * // termsOfService: "STRING_VALUE",
111
+ * // },
81
112
  * // },
82
113
  * // ],
83
114
  * // nextToken: "STRING_VALUE",
@@ -71,6 +71,34 @@ declare const UpdateUserSettingsCommand_base: {
71
71
  * ],
72
72
  * maxDisplayResolution: "STRING_VALUE",
73
73
  * },
74
+ * brandingConfigurationInput: { // BrandingConfigurationUpdateInput
75
+ * logo: { // IconImageInput Union: only one key present
76
+ * blob: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
77
+ * s3Uri: "STRING_VALUE",
78
+ * },
79
+ * wallpaper: { // WallpaperImageInput Union: only one key present
80
+ * blob: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
81
+ * s3Uri: "STRING_VALUE",
82
+ * },
83
+ * favicon: {// Union: only one key present
84
+ * blob: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
85
+ * s3Uri: "STRING_VALUE",
86
+ * },
87
+ * localizedStrings: { // LocalizedBrandingStringMap
88
+ * "<keys>": { // LocalizedBrandingStrings
89
+ * browserTabTitle: "STRING_VALUE", // required
90
+ * welcomeText: "STRING_VALUE", // required
91
+ * loginTitle: "STRING_VALUE",
92
+ * loginDescription: "STRING_VALUE",
93
+ * loginButtonText: "STRING_VALUE",
94
+ * contactLink: "STRING_VALUE",
95
+ * contactButtonText: "STRING_VALUE",
96
+ * loadingText: "STRING_VALUE",
97
+ * },
98
+ * },
99
+ * colorTheme: "Light" || "Dark",
100
+ * termsOfService: "STRING_VALUE",
101
+ * },
74
102
  * };
75
103
  * const command = new UpdateUserSettingsCommand(input);
76
104
  * const response = await client.send(command);
@@ -116,6 +144,37 @@ declare const UpdateUserSettingsCommand_base: {
116
144
  * // ],
117
145
  * // maxDisplayResolution: "STRING_VALUE",
118
146
  * // },
147
+ * // brandingConfiguration: { // BrandingConfiguration
148
+ * // logo: { // ImageMetadata
149
+ * // mimeType: "image/png" || "image/jpeg" || "image/x-icon", // required
150
+ * // fileExtension: "STRING_VALUE", // required
151
+ * // lastUploadTimestamp: new Date("TIMESTAMP"), // required
152
+ * // },
153
+ * // wallpaper: {
154
+ * // mimeType: "image/png" || "image/jpeg" || "image/x-icon", // required
155
+ * // fileExtension: "STRING_VALUE", // required
156
+ * // lastUploadTimestamp: new Date("TIMESTAMP"), // required
157
+ * // },
158
+ * // favicon: {
159
+ * // mimeType: "image/png" || "image/jpeg" || "image/x-icon", // required
160
+ * // fileExtension: "STRING_VALUE", // required
161
+ * // lastUploadTimestamp: new Date("TIMESTAMP"), // required
162
+ * // },
163
+ * // localizedStrings: { // LocalizedBrandingStringMap // required
164
+ * // "<keys>": { // LocalizedBrandingStrings
165
+ * // browserTabTitle: "STRING_VALUE", // required
166
+ * // welcomeText: "STRING_VALUE", // required
167
+ * // loginTitle: "STRING_VALUE",
168
+ * // loginDescription: "STRING_VALUE",
169
+ * // loginButtonText: "STRING_VALUE",
170
+ * // contactLink: "STRING_VALUE",
171
+ * // contactButtonText: "STRING_VALUE",
172
+ * // loadingText: "STRING_VALUE",
173
+ * // },
174
+ * // },
175
+ * // colorTheme: "Light" || "Dark", // required
176
+ * // termsOfService: "STRING_VALUE",
177
+ * // },
119
178
  * // },
120
179
  * // };
121
180
  *
@@ -1,11 +1,5 @@
1
1
  /**
2
- * <p>Amazon WorkSpaces Secure Browser is a low cost, fully managed WorkSpace built
3
- * specifically to facilitate secure, web-based workloads. WorkSpaces Secure Browser makes it
4
- * easy for customers to safely provide their employees with access to internal websites and
5
- * SaaS web applications without the administrative burden of appliances or specialized client
6
- * software. WorkSpaces Secure Browser provides simple policy tools tailored for user
7
- * interactions, while offloading common tasks like capacity management, scaling, and
8
- * maintaining browser images.</p>
2
+ * <p>Amazon WorkSpaces Secure Browser is a low cost, fully managed WorkSpace built specifically to facilitate secure, web-based workloads. WorkSpaces Secure Browser makes it easy for customers to safely provide their employees with access to internal websites and SaaS web applications without the administrative burden of appliances or specialized client software. WorkSpaces Secure Browser provides simple policy tools tailored for user interactions, while offloading common tasks like capacity management, scaling, and maintaining browser images.</p>
9
3
  *
10
4
  * @packageDocumentation
11
5
  */
@@ -211,6 +211,52 @@ export declare const LogFileFormat: {
211
211
  * @public
212
212
  */
213
213
  export type LogFileFormat = (typeof LogFileFormat)[keyof typeof LogFileFormat];
214
+ /**
215
+ * @public
216
+ * @enum
217
+ */
218
+ export declare const ColorTheme: {
219
+ readonly DARK: "Dark";
220
+ readonly LIGHT: "Light";
221
+ };
222
+ /**
223
+ * @public
224
+ */
225
+ export type ColorTheme = (typeof ColorTheme)[keyof typeof ColorTheme];
226
+ /**
227
+ * @public
228
+ * @enum
229
+ */
230
+ export declare const MimeType: {
231
+ readonly ICO: "image/x-icon";
232
+ readonly JPEG: "image/jpeg";
233
+ readonly PNG: "image/png";
234
+ };
235
+ /**
236
+ * @public
237
+ */
238
+ export type MimeType = (typeof MimeType)[keyof typeof MimeType];
239
+ /**
240
+ * @public
241
+ * @enum
242
+ */
243
+ export declare const Locale: {
244
+ readonly BR: "pt-BR";
245
+ readonly CN: "zh-CN";
246
+ readonly DE: "de-DE";
247
+ readonly EN: "en-US";
248
+ readonly ES: "es-ES";
249
+ readonly FR: "fr-FR";
250
+ readonly ID: "id-ID";
251
+ readonly IT: "it-IT";
252
+ readonly JP: "ja-JP";
253
+ readonly KR: "ko-KR";
254
+ readonly TW: "zh-TW";
255
+ };
256
+ /**
257
+ * @public
258
+ */
259
+ export type Locale = (typeof Locale)[keyof typeof Locale];
214
260
  /**
215
261
  * @public
216
262
  * @enum