@aws-sdk/client-workspaces-web 3.398.0 → 3.405.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/commands/GetUserSettingsCommand.js +2 -1
- package/dist-cjs/commands/ListUserSettingsCommand.js +2 -1
- package/dist-cjs/commands/UpdateUserSettingsCommand.js +3 -2
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/models/models_0.js +136 -98
- package/dist-cjs/protocols/Aws_restJson1.js +4 -0
- package/dist-es/commands/GetUserSettingsCommand.js +2 -1
- package/dist-es/commands/ListUserSettingsCommand.js +2 -1
- package/dist-es/commands/UpdateUserSettingsCommand.js +3 -2
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +100 -70
- package/dist-es/protocols/Aws_restJson1.js +4 -0
- package/dist-types/commands/CreateUserSettingsCommand.d.ts +20 -0
- package/dist-types/commands/GetPortalCommand.d.ts +1 -1
- package/dist-types/commands/GetTrustStoreCertificateCommand.d.ts +1 -1
- package/dist-types/commands/GetTrustStoreCommand.d.ts +1 -1
- package/dist-types/commands/GetUserSettingsCommand.d.ts +16 -0
- package/dist-types/commands/ListBrowserSettingsCommand.d.ts +1 -1
- package/dist-types/commands/ListIdentityProvidersCommand.d.ts +1 -1
- package/dist-types/commands/ListIpAccessSettingsCommand.d.ts +1 -1
- package/dist-types/commands/ListNetworkSettingsCommand.d.ts +1 -1
- package/dist-types/commands/ListPortalsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrustStoreCertificatesCommand.d.ts +1 -1
- package/dist-types/commands/ListUserAccessLoggingSettingsCommand.d.ts +1 -1
- package/dist-types/commands/ListUserSettingsCommand.d.ts +17 -1
- package/dist-types/commands/UpdatePortalCommand.d.ts +1 -1
- package/dist-types/commands/UpdateUserSettingsCommand.d.ts +32 -0
- package/dist-types/models/models_0.d.ts +1375 -1279
- package/dist-types/ts3.4/models/models_0.d.ts +403 -369
- package/package.json +7 -7
|
@@ -141,6 +141,40 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
141
141
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
142
142
|
);
|
|
143
143
|
}
|
|
144
|
+
export interface DeleteBrowserSettingsRequest {
|
|
145
|
+
browserSettingsArn: string | undefined;
|
|
146
|
+
}
|
|
147
|
+
export interface DeleteBrowserSettingsResponse {}
|
|
148
|
+
export interface GetBrowserSettingsRequest {
|
|
149
|
+
browserSettingsArn: string | undefined;
|
|
150
|
+
}
|
|
151
|
+
export interface BrowserSettings {
|
|
152
|
+
browserSettingsArn: string | undefined;
|
|
153
|
+
associatedPortalArns?: string[];
|
|
154
|
+
browserPolicy?: string;
|
|
155
|
+
}
|
|
156
|
+
export interface GetBrowserSettingsResponse {
|
|
157
|
+
browserSettings?: BrowserSettings;
|
|
158
|
+
}
|
|
159
|
+
export interface ListBrowserSettingsRequest {
|
|
160
|
+
nextToken?: string;
|
|
161
|
+
maxResults?: number;
|
|
162
|
+
}
|
|
163
|
+
export interface BrowserSettingsSummary {
|
|
164
|
+
browserSettingsArn: string | undefined;
|
|
165
|
+
}
|
|
166
|
+
export interface ListBrowserSettingsResponse {
|
|
167
|
+
browserSettings?: BrowserSettingsSummary[];
|
|
168
|
+
nextToken?: string;
|
|
169
|
+
}
|
|
170
|
+
export interface UpdateBrowserSettingsRequest {
|
|
171
|
+
browserSettingsArn: string | undefined;
|
|
172
|
+
browserPolicy?: string;
|
|
173
|
+
clientToken?: string;
|
|
174
|
+
}
|
|
175
|
+
export interface UpdateBrowserSettingsResponse {
|
|
176
|
+
browserSettings: BrowserSettings | undefined;
|
|
177
|
+
}
|
|
144
178
|
export declare const IdentityProviderType: {
|
|
145
179
|
readonly Facebook: "Facebook";
|
|
146
180
|
readonly Google: "Google";
|
|
@@ -161,6 +195,46 @@ export interface CreateIdentityProviderRequest {
|
|
|
161
195
|
export interface CreateIdentityProviderResponse {
|
|
162
196
|
identityProviderArn: string | undefined;
|
|
163
197
|
}
|
|
198
|
+
export interface DeleteIdentityProviderRequest {
|
|
199
|
+
identityProviderArn: string | undefined;
|
|
200
|
+
}
|
|
201
|
+
export interface DeleteIdentityProviderResponse {}
|
|
202
|
+
export interface GetIdentityProviderRequest {
|
|
203
|
+
identityProviderArn: string | undefined;
|
|
204
|
+
}
|
|
205
|
+
export interface IdentityProvider {
|
|
206
|
+
identityProviderArn: string | undefined;
|
|
207
|
+
identityProviderName?: string;
|
|
208
|
+
identityProviderType?: IdentityProviderType | string;
|
|
209
|
+
identityProviderDetails?: Record<string, string>;
|
|
210
|
+
}
|
|
211
|
+
export interface GetIdentityProviderResponse {
|
|
212
|
+
identityProvider?: IdentityProvider;
|
|
213
|
+
}
|
|
214
|
+
export interface ListIdentityProvidersRequest {
|
|
215
|
+
nextToken?: string;
|
|
216
|
+
maxResults?: number;
|
|
217
|
+
portalArn: string | undefined;
|
|
218
|
+
}
|
|
219
|
+
export interface IdentityProviderSummary {
|
|
220
|
+
identityProviderArn: string | undefined;
|
|
221
|
+
identityProviderName?: string;
|
|
222
|
+
identityProviderType?: IdentityProviderType | string;
|
|
223
|
+
}
|
|
224
|
+
export interface ListIdentityProvidersResponse {
|
|
225
|
+
nextToken?: string;
|
|
226
|
+
identityProviders?: IdentityProviderSummary[];
|
|
227
|
+
}
|
|
228
|
+
export interface UpdateIdentityProviderRequest {
|
|
229
|
+
identityProviderArn: string | undefined;
|
|
230
|
+
identityProviderName?: string;
|
|
231
|
+
identityProviderType?: IdentityProviderType | string;
|
|
232
|
+
identityProviderDetails?: Record<string, string>;
|
|
233
|
+
clientToken?: string;
|
|
234
|
+
}
|
|
235
|
+
export interface UpdateIdentityProviderResponse {
|
|
236
|
+
identityProvider: IdentityProvider | undefined;
|
|
237
|
+
}
|
|
164
238
|
export interface IpRule {
|
|
165
239
|
ipRange: string | undefined;
|
|
166
240
|
description?: string;
|
|
@@ -177,6 +251,54 @@ export interface CreateIpAccessSettingsRequest {
|
|
|
177
251
|
export interface CreateIpAccessSettingsResponse {
|
|
178
252
|
ipAccessSettingsArn: string | undefined;
|
|
179
253
|
}
|
|
254
|
+
export interface DeleteIpAccessSettingsRequest {
|
|
255
|
+
ipAccessSettingsArn: string | undefined;
|
|
256
|
+
}
|
|
257
|
+
export interface DeleteIpAccessSettingsResponse {}
|
|
258
|
+
export interface GetIpAccessSettingsRequest {
|
|
259
|
+
ipAccessSettingsArn: string | undefined;
|
|
260
|
+
}
|
|
261
|
+
export interface IpAccessSettings {
|
|
262
|
+
ipAccessSettingsArn: string | undefined;
|
|
263
|
+
associatedPortalArns?: string[];
|
|
264
|
+
ipRules?: IpRule[];
|
|
265
|
+
displayName?: string;
|
|
266
|
+
description?: string;
|
|
267
|
+
creationDate?: Date;
|
|
268
|
+
}
|
|
269
|
+
export interface GetIpAccessSettingsResponse {
|
|
270
|
+
ipAccessSettings?: IpAccessSettings;
|
|
271
|
+
}
|
|
272
|
+
export interface ListIpAccessSettingsRequest {
|
|
273
|
+
nextToken?: string;
|
|
274
|
+
maxResults?: number;
|
|
275
|
+
}
|
|
276
|
+
export interface IpAccessSettingsSummary {
|
|
277
|
+
ipAccessSettingsArn: string | undefined;
|
|
278
|
+
displayName?: string;
|
|
279
|
+
description?: string;
|
|
280
|
+
creationDate?: Date;
|
|
281
|
+
}
|
|
282
|
+
export interface ListIpAccessSettingsResponse {
|
|
283
|
+
ipAccessSettings?: IpAccessSettingsSummary[];
|
|
284
|
+
nextToken?: string;
|
|
285
|
+
}
|
|
286
|
+
export interface UpdateIpAccessSettingsRequest {
|
|
287
|
+
ipAccessSettingsArn: string | undefined;
|
|
288
|
+
displayName?: string;
|
|
289
|
+
description?: string;
|
|
290
|
+
ipRules?: IpRule[];
|
|
291
|
+
clientToken?: string;
|
|
292
|
+
}
|
|
293
|
+
export interface UpdateIpAccessSettingsResponse {
|
|
294
|
+
ipAccessSettings: IpAccessSettings | undefined;
|
|
295
|
+
}
|
|
296
|
+
export interface ListTagsForResourceRequest {
|
|
297
|
+
resourceArn: string | undefined;
|
|
298
|
+
}
|
|
299
|
+
export interface ListTagsForResourceResponse {
|
|
300
|
+
tags?: Tag[];
|
|
301
|
+
}
|
|
180
302
|
export interface CreateNetworkSettingsRequest {
|
|
181
303
|
vpcId: string | undefined;
|
|
182
304
|
subnetIds: string[] | undefined;
|
|
@@ -187,85 +309,65 @@ export interface CreateNetworkSettingsRequest {
|
|
|
187
309
|
export interface CreateNetworkSettingsResponse {
|
|
188
310
|
networkSettingsArn: string | undefined;
|
|
189
311
|
}
|
|
190
|
-
export interface
|
|
191
|
-
|
|
192
|
-
tags?: Tag[];
|
|
193
|
-
customerManagedKey?: string;
|
|
194
|
-
additionalEncryptionContext?: Record<string, string>;
|
|
195
|
-
clientToken?: string;
|
|
196
|
-
authenticationType?: AuthenticationType | string;
|
|
312
|
+
export interface DeleteNetworkSettingsRequest {
|
|
313
|
+
networkSettingsArn: string | undefined;
|
|
197
314
|
}
|
|
198
|
-
export interface
|
|
199
|
-
|
|
200
|
-
|
|
315
|
+
export interface DeleteNetworkSettingsResponse {}
|
|
316
|
+
export interface GetNetworkSettingsRequest {
|
|
317
|
+
networkSettingsArn: string | undefined;
|
|
201
318
|
}
|
|
202
|
-
export interface
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
319
|
+
export interface NetworkSettings {
|
|
320
|
+
networkSettingsArn: string | undefined;
|
|
321
|
+
associatedPortalArns?: string[];
|
|
322
|
+
vpcId?: string;
|
|
323
|
+
subnetIds?: string[];
|
|
324
|
+
securityGroupIds?: string[];
|
|
206
325
|
}
|
|
207
|
-
export interface
|
|
208
|
-
|
|
326
|
+
export interface GetNetworkSettingsResponse {
|
|
327
|
+
networkSettings?: NetworkSettings;
|
|
209
328
|
}
|
|
210
|
-
export interface
|
|
211
|
-
|
|
212
|
-
|
|
329
|
+
export interface ListNetworkSettingsRequest {
|
|
330
|
+
nextToken?: string;
|
|
331
|
+
maxResults?: number;
|
|
332
|
+
}
|
|
333
|
+
export interface NetworkSettingsSummary {
|
|
334
|
+
networkSettingsArn: string | undefined;
|
|
335
|
+
vpcId?: string;
|
|
336
|
+
}
|
|
337
|
+
export interface ListNetworkSettingsResponse {
|
|
338
|
+
networkSettings?: NetworkSettingsSummary[];
|
|
339
|
+
nextToken?: string;
|
|
340
|
+
}
|
|
341
|
+
export interface UpdateNetworkSettingsRequest {
|
|
342
|
+
networkSettingsArn: string | undefined;
|
|
343
|
+
vpcId?: string;
|
|
344
|
+
subnetIds?: string[];
|
|
345
|
+
securityGroupIds?: string[];
|
|
213
346
|
clientToken?: string;
|
|
214
347
|
}
|
|
215
|
-
export interface
|
|
216
|
-
|
|
348
|
+
export interface UpdateNetworkSettingsResponse {
|
|
349
|
+
networkSettings: NetworkSettings | undefined;
|
|
217
350
|
}
|
|
218
|
-
export declare const
|
|
219
|
-
readonly
|
|
220
|
-
readonly ENABLED: "Enabled";
|
|
351
|
+
export declare const BrowserType: {
|
|
352
|
+
readonly CHROME: "Chrome";
|
|
221
353
|
};
|
|
222
|
-
export type
|
|
223
|
-
export interface
|
|
224
|
-
|
|
225
|
-
pasteAllowed: EnabledType | string | undefined;
|
|
226
|
-
downloadAllowed: EnabledType | string | undefined;
|
|
227
|
-
uploadAllowed: EnabledType | string | undefined;
|
|
228
|
-
printAllowed: EnabledType | string | undefined;
|
|
354
|
+
export type BrowserType = (typeof BrowserType)[keyof typeof BrowserType];
|
|
355
|
+
export interface CreatePortalRequest {
|
|
356
|
+
displayName?: string;
|
|
229
357
|
tags?: Tag[];
|
|
230
|
-
|
|
231
|
-
|
|
358
|
+
customerManagedKey?: string;
|
|
359
|
+
additionalEncryptionContext?: Record<string, string>;
|
|
232
360
|
clientToken?: string;
|
|
361
|
+
authenticationType?: AuthenticationType | string;
|
|
233
362
|
}
|
|
234
|
-
export interface
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
export interface DeleteBrowserSettingsRequest {
|
|
238
|
-
browserSettingsArn: string | undefined;
|
|
239
|
-
}
|
|
240
|
-
export interface DeleteBrowserSettingsResponse {}
|
|
241
|
-
export interface DeleteIdentityProviderRequest {
|
|
242
|
-
identityProviderArn: string | undefined;
|
|
243
|
-
}
|
|
244
|
-
export interface DeleteIdentityProviderResponse {}
|
|
245
|
-
export interface DeleteIpAccessSettingsRequest {
|
|
246
|
-
ipAccessSettingsArn: string | undefined;
|
|
247
|
-
}
|
|
248
|
-
export interface DeleteIpAccessSettingsResponse {}
|
|
249
|
-
export interface DeleteNetworkSettingsRequest {
|
|
250
|
-
networkSettingsArn: string | undefined;
|
|
363
|
+
export interface CreatePortalResponse {
|
|
364
|
+
portalArn: string | undefined;
|
|
365
|
+
portalEndpoint: string | undefined;
|
|
251
366
|
}
|
|
252
|
-
export interface DeleteNetworkSettingsResponse {}
|
|
253
367
|
export interface DeletePortalRequest {
|
|
254
368
|
portalArn: string | undefined;
|
|
255
369
|
}
|
|
256
370
|
export interface DeletePortalResponse {}
|
|
257
|
-
export interface DeleteTrustStoreRequest {
|
|
258
|
-
trustStoreArn: string | undefined;
|
|
259
|
-
}
|
|
260
|
-
export interface DeleteTrustStoreResponse {}
|
|
261
|
-
export interface DeleteUserAccessLoggingSettingsRequest {
|
|
262
|
-
userAccessLoggingSettingsArn: string | undefined;
|
|
263
|
-
}
|
|
264
|
-
export interface DeleteUserAccessLoggingSettingsResponse {}
|
|
265
|
-
export interface DeleteUserSettingsRequest {
|
|
266
|
-
userSettingsArn: string | undefined;
|
|
267
|
-
}
|
|
268
|
-
export interface DeleteUserSettingsResponse {}
|
|
269
371
|
export interface DisassociateBrowserSettingsRequest {
|
|
270
372
|
portalArn: string | undefined;
|
|
271
373
|
}
|
|
@@ -290,63 +392,9 @@ export interface DisassociateUserSettingsRequest {
|
|
|
290
392
|
portalArn: string | undefined;
|
|
291
393
|
}
|
|
292
394
|
export interface DisassociateUserSettingsResponse {}
|
|
293
|
-
export interface GetBrowserSettingsRequest {
|
|
294
|
-
browserSettingsArn: string | undefined;
|
|
295
|
-
}
|
|
296
|
-
export interface BrowserSettings {
|
|
297
|
-
browserSettingsArn: string | undefined;
|
|
298
|
-
associatedPortalArns?: string[];
|
|
299
|
-
browserPolicy?: string;
|
|
300
|
-
}
|
|
301
|
-
export interface GetBrowserSettingsResponse {
|
|
302
|
-
browserSettings?: BrowserSettings;
|
|
303
|
-
}
|
|
304
|
-
export interface GetIdentityProviderRequest {
|
|
305
|
-
identityProviderArn: string | undefined;
|
|
306
|
-
}
|
|
307
|
-
export interface IdentityProvider {
|
|
308
|
-
identityProviderArn: string | undefined;
|
|
309
|
-
identityProviderName?: string;
|
|
310
|
-
identityProviderType?: IdentityProviderType | string;
|
|
311
|
-
identityProviderDetails?: Record<string, string>;
|
|
312
|
-
}
|
|
313
|
-
export interface GetIdentityProviderResponse {
|
|
314
|
-
identityProvider?: IdentityProvider;
|
|
315
|
-
}
|
|
316
|
-
export interface GetIpAccessSettingsRequest {
|
|
317
|
-
ipAccessSettingsArn: string | undefined;
|
|
318
|
-
}
|
|
319
|
-
export interface IpAccessSettings {
|
|
320
|
-
ipAccessSettingsArn: string | undefined;
|
|
321
|
-
associatedPortalArns?: string[];
|
|
322
|
-
ipRules?: IpRule[];
|
|
323
|
-
displayName?: string;
|
|
324
|
-
description?: string;
|
|
325
|
-
creationDate?: Date;
|
|
326
|
-
}
|
|
327
|
-
export interface GetIpAccessSettingsResponse {
|
|
328
|
-
ipAccessSettings?: IpAccessSettings;
|
|
329
|
-
}
|
|
330
|
-
export interface GetNetworkSettingsRequest {
|
|
331
|
-
networkSettingsArn: string | undefined;
|
|
332
|
-
}
|
|
333
|
-
export interface NetworkSettings {
|
|
334
|
-
networkSettingsArn: string | undefined;
|
|
335
|
-
associatedPortalArns?: string[];
|
|
336
|
-
vpcId?: string;
|
|
337
|
-
subnetIds?: string[];
|
|
338
|
-
securityGroupIds?: string[];
|
|
339
|
-
}
|
|
340
|
-
export interface GetNetworkSettingsResponse {
|
|
341
|
-
networkSettings?: NetworkSettings;
|
|
342
|
-
}
|
|
343
395
|
export interface GetPortalRequest {
|
|
344
396
|
portalArn: string | undefined;
|
|
345
397
|
}
|
|
346
|
-
export declare const BrowserType: {
|
|
347
|
-
readonly CHROME: "Chrome";
|
|
348
|
-
};
|
|
349
|
-
export type BrowserType = (typeof BrowserType)[keyof typeof BrowserType];
|
|
350
398
|
export declare const PortalStatus: {
|
|
351
399
|
readonly ACTIVE: "Active";
|
|
352
400
|
readonly INCOMPLETE: "Incomplete";
|
|
@@ -358,7 +406,7 @@ export declare const RendererType: {
|
|
|
358
406
|
};
|
|
359
407
|
export type RendererType = (typeof RendererType)[keyof typeof RendererType];
|
|
360
408
|
export interface Portal {
|
|
361
|
-
portalArn
|
|
409
|
+
portalArn: string | undefined;
|
|
362
410
|
rendererType?: RendererType | string;
|
|
363
411
|
browserType?: BrowserType | string;
|
|
364
412
|
portalStatus?: PortalStatus | string;
|
|
@@ -384,12 +432,77 @@ export interface GetPortalServiceProviderMetadataResponse {
|
|
|
384
432
|
portalArn: string | undefined;
|
|
385
433
|
serviceProviderSamlMetadata?: string;
|
|
386
434
|
}
|
|
435
|
+
export interface ListPortalsRequest {
|
|
436
|
+
nextToken?: string;
|
|
437
|
+
maxResults?: number;
|
|
438
|
+
}
|
|
439
|
+
export interface PortalSummary {
|
|
440
|
+
portalArn: string | undefined;
|
|
441
|
+
rendererType?: RendererType | string;
|
|
442
|
+
browserType?: BrowserType | string;
|
|
443
|
+
portalStatus?: PortalStatus | string;
|
|
444
|
+
portalEndpoint?: string;
|
|
445
|
+
displayName?: string;
|
|
446
|
+
creationDate?: Date;
|
|
447
|
+
browserSettingsArn?: string;
|
|
448
|
+
userSettingsArn?: string;
|
|
449
|
+
networkSettingsArn?: string;
|
|
450
|
+
trustStoreArn?: string;
|
|
451
|
+
userAccessLoggingSettingsArn?: string;
|
|
452
|
+
authenticationType?: AuthenticationType | string;
|
|
453
|
+
ipAccessSettingsArn?: string;
|
|
454
|
+
}
|
|
455
|
+
export interface ListPortalsResponse {
|
|
456
|
+
portals?: PortalSummary[];
|
|
457
|
+
nextToken?: string;
|
|
458
|
+
}
|
|
459
|
+
export interface UpdatePortalRequest {
|
|
460
|
+
portalArn: string | undefined;
|
|
461
|
+
displayName?: string;
|
|
462
|
+
authenticationType?: AuthenticationType | string;
|
|
463
|
+
}
|
|
464
|
+
export interface UpdatePortalResponse {
|
|
465
|
+
portal?: Portal;
|
|
466
|
+
}
|
|
467
|
+
export interface TagResourceRequest {
|
|
468
|
+
resourceArn: string | undefined;
|
|
469
|
+
tags: Tag[] | undefined;
|
|
470
|
+
clientToken?: string;
|
|
471
|
+
}
|
|
472
|
+
export interface TagResourceResponse {}
|
|
473
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
474
|
+
readonly name: "TooManyTagsException";
|
|
475
|
+
readonly $fault: "client";
|
|
476
|
+
resourceName?: string;
|
|
477
|
+
constructor(
|
|
478
|
+
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
479
|
+
);
|
|
480
|
+
}
|
|
481
|
+
export interface CertificateSummary {
|
|
482
|
+
thumbprint?: string;
|
|
483
|
+
subject?: string;
|
|
484
|
+
issuer?: string;
|
|
485
|
+
notValidBefore?: Date;
|
|
486
|
+
notValidAfter?: Date;
|
|
487
|
+
}
|
|
488
|
+
export interface CreateTrustStoreRequest {
|
|
489
|
+
certificateList: Uint8Array[] | undefined;
|
|
490
|
+
tags?: Tag[];
|
|
491
|
+
clientToken?: string;
|
|
492
|
+
}
|
|
493
|
+
export interface CreateTrustStoreResponse {
|
|
494
|
+
trustStoreArn: string | undefined;
|
|
495
|
+
}
|
|
496
|
+
export interface DeleteTrustStoreRequest {
|
|
497
|
+
trustStoreArn: string | undefined;
|
|
498
|
+
}
|
|
499
|
+
export interface DeleteTrustStoreResponse {}
|
|
387
500
|
export interface GetTrustStoreRequest {
|
|
388
501
|
trustStoreArn: string | undefined;
|
|
389
502
|
}
|
|
390
503
|
export interface TrustStore {
|
|
391
504
|
associatedPortalArns?: string[];
|
|
392
|
-
trustStoreArn
|
|
505
|
+
trustStoreArn: string | undefined;
|
|
393
506
|
}
|
|
394
507
|
export interface GetTrustStoreResponse {
|
|
395
508
|
trustStore?: TrustStore;
|
|
@@ -407,164 +520,146 @@ export interface Certificate {
|
|
|
407
520
|
body?: Uint8Array;
|
|
408
521
|
}
|
|
409
522
|
export interface GetTrustStoreCertificateResponse {
|
|
410
|
-
trustStoreArn
|
|
523
|
+
trustStoreArn: string | undefined;
|
|
411
524
|
certificate?: Certificate;
|
|
412
525
|
}
|
|
413
|
-
export interface
|
|
414
|
-
|
|
415
|
-
}
|
|
416
|
-
export interface UserAccessLoggingSettings {
|
|
417
|
-
userAccessLoggingSettingsArn: string | undefined;
|
|
418
|
-
associatedPortalArns?: string[];
|
|
419
|
-
kinesisStreamArn?: string;
|
|
420
|
-
}
|
|
421
|
-
export interface GetUserAccessLoggingSettingsResponse {
|
|
422
|
-
userAccessLoggingSettings?: UserAccessLoggingSettings;
|
|
423
|
-
}
|
|
424
|
-
export interface GetUserSettingsRequest {
|
|
425
|
-
userSettingsArn: string | undefined;
|
|
426
|
-
}
|
|
427
|
-
export interface UserSettings {
|
|
428
|
-
userSettingsArn: string | undefined;
|
|
429
|
-
associatedPortalArns?: string[];
|
|
430
|
-
copyAllowed?: EnabledType | string;
|
|
431
|
-
pasteAllowed?: EnabledType | string;
|
|
432
|
-
downloadAllowed?: EnabledType | string;
|
|
433
|
-
uploadAllowed?: EnabledType | string;
|
|
434
|
-
printAllowed?: EnabledType | string;
|
|
435
|
-
disconnectTimeoutInMinutes?: number;
|
|
436
|
-
idleDisconnectTimeoutInMinutes?: number;
|
|
437
|
-
}
|
|
438
|
-
export interface GetUserSettingsResponse {
|
|
439
|
-
userSettings?: UserSettings;
|
|
440
|
-
}
|
|
441
|
-
export interface ListBrowserSettingsRequest {
|
|
442
|
-
nextToken?: string;
|
|
443
|
-
maxResults?: number;
|
|
444
|
-
}
|
|
445
|
-
export interface BrowserSettingsSummary {
|
|
446
|
-
browserSettingsArn?: string;
|
|
447
|
-
}
|
|
448
|
-
export interface ListBrowserSettingsResponse {
|
|
449
|
-
browserSettings?: BrowserSettingsSummary[];
|
|
450
|
-
nextToken?: string;
|
|
451
|
-
}
|
|
452
|
-
export interface ListIdentityProvidersRequest {
|
|
453
|
-
nextToken?: string;
|
|
454
|
-
maxResults?: number;
|
|
455
|
-
portalArn: string | undefined;
|
|
456
|
-
}
|
|
457
|
-
export interface IdentityProviderSummary {
|
|
458
|
-
identityProviderArn?: string;
|
|
459
|
-
identityProviderName?: string;
|
|
460
|
-
identityProviderType?: IdentityProviderType | string;
|
|
461
|
-
}
|
|
462
|
-
export interface ListIdentityProvidersResponse {
|
|
463
|
-
nextToken?: string;
|
|
464
|
-
identityProviders?: IdentityProviderSummary[];
|
|
465
|
-
}
|
|
466
|
-
export interface ListIpAccessSettingsRequest {
|
|
526
|
+
export interface ListTrustStoreCertificatesRequest {
|
|
527
|
+
trustStoreArn: string | undefined;
|
|
467
528
|
nextToken?: string;
|
|
468
529
|
maxResults?: number;
|
|
469
530
|
}
|
|
470
|
-
export interface
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
description?: string;
|
|
474
|
-
creationDate?: Date;
|
|
475
|
-
}
|
|
476
|
-
export interface ListIpAccessSettingsResponse {
|
|
477
|
-
ipAccessSettings?: IpAccessSettingsSummary[];
|
|
531
|
+
export interface ListTrustStoreCertificatesResponse {
|
|
532
|
+
certificateList?: CertificateSummary[];
|
|
533
|
+
trustStoreArn: string | undefined;
|
|
478
534
|
nextToken?: string;
|
|
479
535
|
}
|
|
480
|
-
export interface
|
|
536
|
+
export interface ListTrustStoresRequest {
|
|
481
537
|
nextToken?: string;
|
|
482
538
|
maxResults?: number;
|
|
483
539
|
}
|
|
484
|
-
export interface
|
|
485
|
-
|
|
486
|
-
vpcId?: string;
|
|
487
|
-
}
|
|
488
|
-
export interface ListNetworkSettingsResponse {
|
|
489
|
-
networkSettings?: NetworkSettingsSummary[];
|
|
490
|
-
nextToken?: string;
|
|
540
|
+
export interface TrustStoreSummary {
|
|
541
|
+
trustStoreArn?: string;
|
|
491
542
|
}
|
|
492
|
-
export interface
|
|
543
|
+
export interface ListTrustStoresResponse {
|
|
544
|
+
trustStores?: TrustStoreSummary[];
|
|
493
545
|
nextToken?: string;
|
|
494
|
-
maxResults?: number;
|
|
495
546
|
}
|
|
496
|
-
export interface
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
portalEndpoint?: string;
|
|
502
|
-
displayName?: string;
|
|
503
|
-
creationDate?: Date;
|
|
504
|
-
browserSettingsArn?: string;
|
|
505
|
-
userSettingsArn?: string;
|
|
506
|
-
networkSettingsArn?: string;
|
|
507
|
-
trustStoreArn?: string;
|
|
508
|
-
userAccessLoggingSettingsArn?: string;
|
|
509
|
-
authenticationType?: AuthenticationType | string;
|
|
510
|
-
ipAccessSettingsArn?: string;
|
|
547
|
+
export interface UpdateTrustStoreRequest {
|
|
548
|
+
trustStoreArn: string | undefined;
|
|
549
|
+
certificatesToAdd?: Uint8Array[];
|
|
550
|
+
certificatesToDelete?: string[];
|
|
551
|
+
clientToken?: string;
|
|
511
552
|
}
|
|
512
|
-
export interface
|
|
513
|
-
|
|
514
|
-
nextToken?: string;
|
|
553
|
+
export interface UpdateTrustStoreResponse {
|
|
554
|
+
trustStoreArn: string | undefined;
|
|
515
555
|
}
|
|
516
|
-
export interface
|
|
556
|
+
export interface UntagResourceRequest {
|
|
517
557
|
resourceArn: string | undefined;
|
|
558
|
+
tagKeys: string[] | undefined;
|
|
518
559
|
}
|
|
519
|
-
export interface
|
|
560
|
+
export interface UntagResourceResponse {}
|
|
561
|
+
export interface CreateUserAccessLoggingSettingsRequest {
|
|
562
|
+
kinesisStreamArn: string | undefined;
|
|
520
563
|
tags?: Tag[];
|
|
564
|
+
clientToken?: string;
|
|
521
565
|
}
|
|
522
|
-
export interface
|
|
523
|
-
|
|
524
|
-
nextToken?: string;
|
|
525
|
-
maxResults?: number;
|
|
526
|
-
}
|
|
527
|
-
export interface CertificateSummary {
|
|
528
|
-
thumbprint?: string;
|
|
529
|
-
subject?: string;
|
|
530
|
-
issuer?: string;
|
|
531
|
-
notValidBefore?: Date;
|
|
532
|
-
notValidAfter?: Date;
|
|
566
|
+
export interface CreateUserAccessLoggingSettingsResponse {
|
|
567
|
+
userAccessLoggingSettingsArn: string | undefined;
|
|
533
568
|
}
|
|
534
|
-
export interface
|
|
535
|
-
|
|
536
|
-
trustStoreArn?: string;
|
|
537
|
-
nextToken?: string;
|
|
569
|
+
export interface DeleteUserAccessLoggingSettingsRequest {
|
|
570
|
+
userAccessLoggingSettingsArn: string | undefined;
|
|
538
571
|
}
|
|
539
|
-
export interface
|
|
540
|
-
|
|
541
|
-
|
|
572
|
+
export interface DeleteUserAccessLoggingSettingsResponse {}
|
|
573
|
+
export interface GetUserAccessLoggingSettingsRequest {
|
|
574
|
+
userAccessLoggingSettingsArn: string | undefined;
|
|
542
575
|
}
|
|
543
|
-
export interface
|
|
544
|
-
|
|
576
|
+
export interface UserAccessLoggingSettings {
|
|
577
|
+
userAccessLoggingSettingsArn: string | undefined;
|
|
578
|
+
associatedPortalArns?: string[];
|
|
579
|
+
kinesisStreamArn?: string;
|
|
545
580
|
}
|
|
546
|
-
export interface
|
|
547
|
-
|
|
548
|
-
nextToken?: string;
|
|
581
|
+
export interface GetUserAccessLoggingSettingsResponse {
|
|
582
|
+
userAccessLoggingSettings?: UserAccessLoggingSettings;
|
|
549
583
|
}
|
|
550
584
|
export interface ListUserAccessLoggingSettingsRequest {
|
|
551
585
|
nextToken?: string;
|
|
552
586
|
maxResults?: number;
|
|
553
587
|
}
|
|
554
588
|
export interface UserAccessLoggingSettingsSummary {
|
|
555
|
-
userAccessLoggingSettingsArn
|
|
589
|
+
userAccessLoggingSettingsArn: string | undefined;
|
|
556
590
|
kinesisStreamArn?: string;
|
|
557
591
|
}
|
|
558
592
|
export interface ListUserAccessLoggingSettingsResponse {
|
|
559
593
|
userAccessLoggingSettings?: UserAccessLoggingSettingsSummary[];
|
|
560
594
|
nextToken?: string;
|
|
561
595
|
}
|
|
596
|
+
export interface UpdateUserAccessLoggingSettingsRequest {
|
|
597
|
+
userAccessLoggingSettingsArn: string | undefined;
|
|
598
|
+
kinesisStreamArn?: string;
|
|
599
|
+
clientToken?: string;
|
|
600
|
+
}
|
|
601
|
+
export interface UpdateUserAccessLoggingSettingsResponse {
|
|
602
|
+
userAccessLoggingSettings: UserAccessLoggingSettings | undefined;
|
|
603
|
+
}
|
|
604
|
+
export interface CookieSpecification {
|
|
605
|
+
domain: string | undefined;
|
|
606
|
+
name?: string;
|
|
607
|
+
path?: string;
|
|
608
|
+
}
|
|
609
|
+
export interface CookieSynchronizationConfiguration {
|
|
610
|
+
allowlist: CookieSpecification[] | undefined;
|
|
611
|
+
blocklist?: CookieSpecification[];
|
|
612
|
+
}
|
|
613
|
+
export declare const EnabledType: {
|
|
614
|
+
readonly DISABLED: "Disabled";
|
|
615
|
+
readonly ENABLED: "Enabled";
|
|
616
|
+
};
|
|
617
|
+
export type EnabledType = (typeof EnabledType)[keyof typeof EnabledType];
|
|
618
|
+
export interface CreateUserSettingsRequest {
|
|
619
|
+
copyAllowed: EnabledType | string | undefined;
|
|
620
|
+
pasteAllowed: EnabledType | string | undefined;
|
|
621
|
+
downloadAllowed: EnabledType | string | undefined;
|
|
622
|
+
uploadAllowed: EnabledType | string | undefined;
|
|
623
|
+
printAllowed: EnabledType | string | undefined;
|
|
624
|
+
tags?: Tag[];
|
|
625
|
+
disconnectTimeoutInMinutes?: number;
|
|
626
|
+
idleDisconnectTimeoutInMinutes?: number;
|
|
627
|
+
clientToken?: string;
|
|
628
|
+
cookieSynchronizationConfiguration?: CookieSynchronizationConfiguration;
|
|
629
|
+
customerManagedKey?: string;
|
|
630
|
+
additionalEncryptionContext?: Record<string, string>;
|
|
631
|
+
}
|
|
632
|
+
export interface CreateUserSettingsResponse {
|
|
633
|
+
userSettingsArn: string | undefined;
|
|
634
|
+
}
|
|
635
|
+
export interface DeleteUserSettingsRequest {
|
|
636
|
+
userSettingsArn: string | undefined;
|
|
637
|
+
}
|
|
638
|
+
export interface DeleteUserSettingsResponse {}
|
|
639
|
+
export interface GetUserSettingsRequest {
|
|
640
|
+
userSettingsArn: string | undefined;
|
|
641
|
+
}
|
|
642
|
+
export interface UserSettings {
|
|
643
|
+
userSettingsArn: string | undefined;
|
|
644
|
+
associatedPortalArns?: string[];
|
|
645
|
+
copyAllowed?: EnabledType | string;
|
|
646
|
+
pasteAllowed?: EnabledType | string;
|
|
647
|
+
downloadAllowed?: EnabledType | string;
|
|
648
|
+
uploadAllowed?: EnabledType | string;
|
|
649
|
+
printAllowed?: EnabledType | string;
|
|
650
|
+
disconnectTimeoutInMinutes?: number;
|
|
651
|
+
idleDisconnectTimeoutInMinutes?: number;
|
|
652
|
+
cookieSynchronizationConfiguration?: CookieSynchronizationConfiguration;
|
|
653
|
+
}
|
|
654
|
+
export interface GetUserSettingsResponse {
|
|
655
|
+
userSettings?: UserSettings;
|
|
656
|
+
}
|
|
562
657
|
export interface ListUserSettingsRequest {
|
|
563
658
|
nextToken?: string;
|
|
564
659
|
maxResults?: number;
|
|
565
660
|
}
|
|
566
661
|
export interface UserSettingsSummary {
|
|
567
|
-
userSettingsArn
|
|
662
|
+
userSettingsArn: string | undefined;
|
|
568
663
|
copyAllowed?: EnabledType | string;
|
|
569
664
|
pasteAllowed?: EnabledType | string;
|
|
570
665
|
downloadAllowed?: EnabledType | string;
|
|
@@ -572,93 +667,12 @@ export interface UserSettingsSummary {
|
|
|
572
667
|
printAllowed?: EnabledType | string;
|
|
573
668
|
disconnectTimeoutInMinutes?: number;
|
|
574
669
|
idleDisconnectTimeoutInMinutes?: number;
|
|
670
|
+
cookieSynchronizationConfiguration?: CookieSynchronizationConfiguration;
|
|
575
671
|
}
|
|
576
672
|
export interface ListUserSettingsResponse {
|
|
577
673
|
userSettings?: UserSettingsSummary[];
|
|
578
674
|
nextToken?: string;
|
|
579
675
|
}
|
|
580
|
-
export interface TagResourceRequest {
|
|
581
|
-
resourceArn: string | undefined;
|
|
582
|
-
tags: Tag[] | undefined;
|
|
583
|
-
clientToken?: string;
|
|
584
|
-
}
|
|
585
|
-
export interface TagResourceResponse {}
|
|
586
|
-
export declare class TooManyTagsException extends __BaseException {
|
|
587
|
-
readonly name: "TooManyTagsException";
|
|
588
|
-
readonly $fault: "client";
|
|
589
|
-
resourceName?: string;
|
|
590
|
-
constructor(
|
|
591
|
-
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
592
|
-
);
|
|
593
|
-
}
|
|
594
|
-
export interface UntagResourceRequest {
|
|
595
|
-
resourceArn: string | undefined;
|
|
596
|
-
tagKeys: string[] | undefined;
|
|
597
|
-
}
|
|
598
|
-
export interface UntagResourceResponse {}
|
|
599
|
-
export interface UpdateBrowserSettingsRequest {
|
|
600
|
-
browserSettingsArn: string | undefined;
|
|
601
|
-
browserPolicy?: string;
|
|
602
|
-
clientToken?: string;
|
|
603
|
-
}
|
|
604
|
-
export interface UpdateBrowserSettingsResponse {
|
|
605
|
-
browserSettings: BrowserSettings | undefined;
|
|
606
|
-
}
|
|
607
|
-
export interface UpdateIdentityProviderRequest {
|
|
608
|
-
identityProviderArn: string | undefined;
|
|
609
|
-
identityProviderName?: string;
|
|
610
|
-
identityProviderType?: IdentityProviderType | string;
|
|
611
|
-
identityProviderDetails?: Record<string, string>;
|
|
612
|
-
clientToken?: string;
|
|
613
|
-
}
|
|
614
|
-
export interface UpdateIdentityProviderResponse {
|
|
615
|
-
identityProvider: IdentityProvider | undefined;
|
|
616
|
-
}
|
|
617
|
-
export interface UpdateIpAccessSettingsRequest {
|
|
618
|
-
ipAccessSettingsArn: string | undefined;
|
|
619
|
-
displayName?: string;
|
|
620
|
-
description?: string;
|
|
621
|
-
ipRules?: IpRule[];
|
|
622
|
-
clientToken?: string;
|
|
623
|
-
}
|
|
624
|
-
export interface UpdateIpAccessSettingsResponse {
|
|
625
|
-
ipAccessSettings: IpAccessSettings | undefined;
|
|
626
|
-
}
|
|
627
|
-
export interface UpdateNetworkSettingsRequest {
|
|
628
|
-
networkSettingsArn: string | undefined;
|
|
629
|
-
vpcId?: string;
|
|
630
|
-
subnetIds?: string[];
|
|
631
|
-
securityGroupIds?: string[];
|
|
632
|
-
clientToken?: string;
|
|
633
|
-
}
|
|
634
|
-
export interface UpdateNetworkSettingsResponse {
|
|
635
|
-
networkSettings: NetworkSettings | undefined;
|
|
636
|
-
}
|
|
637
|
-
export interface UpdatePortalRequest {
|
|
638
|
-
portalArn: string | undefined;
|
|
639
|
-
displayName?: string;
|
|
640
|
-
authenticationType?: AuthenticationType | string;
|
|
641
|
-
}
|
|
642
|
-
export interface UpdatePortalResponse {
|
|
643
|
-
portal?: Portal;
|
|
644
|
-
}
|
|
645
|
-
export interface UpdateTrustStoreRequest {
|
|
646
|
-
trustStoreArn: string | undefined;
|
|
647
|
-
certificatesToAdd?: Uint8Array[];
|
|
648
|
-
certificatesToDelete?: string[];
|
|
649
|
-
clientToken?: string;
|
|
650
|
-
}
|
|
651
|
-
export interface UpdateTrustStoreResponse {
|
|
652
|
-
trustStoreArn: string | undefined;
|
|
653
|
-
}
|
|
654
|
-
export interface UpdateUserAccessLoggingSettingsRequest {
|
|
655
|
-
userAccessLoggingSettingsArn: string | undefined;
|
|
656
|
-
kinesisStreamArn?: string;
|
|
657
|
-
clientToken?: string;
|
|
658
|
-
}
|
|
659
|
-
export interface UpdateUserAccessLoggingSettingsResponse {
|
|
660
|
-
userAccessLoggingSettings: UserAccessLoggingSettings | undefined;
|
|
661
|
-
}
|
|
662
676
|
export interface UpdateUserSettingsRequest {
|
|
663
677
|
userSettingsArn: string | undefined;
|
|
664
678
|
copyAllowed?: EnabledType | string;
|
|
@@ -669,6 +683,7 @@ export interface UpdateUserSettingsRequest {
|
|
|
669
683
|
disconnectTimeoutInMinutes?: number;
|
|
670
684
|
idleDisconnectTimeoutInMinutes?: number;
|
|
671
685
|
clientToken?: string;
|
|
686
|
+
cookieSynchronizationConfiguration?: CookieSynchronizationConfiguration;
|
|
672
687
|
}
|
|
673
688
|
export interface UpdateUserSettingsResponse {
|
|
674
689
|
userSettings: UserSettings | undefined;
|
|
@@ -677,98 +692,117 @@ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
|
677
692
|
export declare const CreateBrowserSettingsRequestFilterSensitiveLog: (
|
|
678
693
|
obj: CreateBrowserSettingsRequest
|
|
679
694
|
) => any;
|
|
680
|
-
export declare const CreateIdentityProviderRequestFilterSensitiveLog: (
|
|
681
|
-
obj: CreateIdentityProviderRequest
|
|
682
|
-
) => any;
|
|
683
|
-
export declare const IpRuleFilterSensitiveLog: (obj: IpRule) => any;
|
|
684
|
-
export declare const CreateIpAccessSettingsRequestFilterSensitiveLog: (
|
|
685
|
-
obj: CreateIpAccessSettingsRequest
|
|
686
|
-
) => any;
|
|
687
|
-
export declare const CreateNetworkSettingsRequestFilterSensitiveLog: (
|
|
688
|
-
obj: CreateNetworkSettingsRequest
|
|
689
|
-
) => any;
|
|
690
|
-
export declare const CreatePortalRequestFilterSensitiveLog: (
|
|
691
|
-
obj: CreatePortalRequest
|
|
692
|
-
) => any;
|
|
693
|
-
export declare const CreateTrustStoreRequestFilterSensitiveLog: (
|
|
694
|
-
obj: CreateTrustStoreRequest
|
|
695
|
-
) => any;
|
|
696
|
-
export declare const CreateUserAccessLoggingSettingsRequestFilterSensitiveLog: (
|
|
697
|
-
obj: CreateUserAccessLoggingSettingsRequest
|
|
698
|
-
) => any;
|
|
699
|
-
export declare const CreateUserSettingsRequestFilterSensitiveLog: (
|
|
700
|
-
obj: CreateUserSettingsRequest
|
|
701
|
-
) => any;
|
|
702
695
|
export declare const BrowserSettingsFilterSensitiveLog: (
|
|
703
696
|
obj: BrowserSettings
|
|
704
697
|
) => any;
|
|
705
698
|
export declare const GetBrowserSettingsResponseFilterSensitiveLog: (
|
|
706
699
|
obj: GetBrowserSettingsResponse
|
|
707
700
|
) => any;
|
|
701
|
+
export declare const UpdateBrowserSettingsRequestFilterSensitiveLog: (
|
|
702
|
+
obj: UpdateBrowserSettingsRequest
|
|
703
|
+
) => any;
|
|
704
|
+
export declare const UpdateBrowserSettingsResponseFilterSensitiveLog: (
|
|
705
|
+
obj: UpdateBrowserSettingsResponse
|
|
706
|
+
) => any;
|
|
707
|
+
export declare const CreateIdentityProviderRequestFilterSensitiveLog: (
|
|
708
|
+
obj: CreateIdentityProviderRequest
|
|
709
|
+
) => any;
|
|
708
710
|
export declare const IdentityProviderFilterSensitiveLog: (
|
|
709
711
|
obj: IdentityProvider
|
|
710
712
|
) => any;
|
|
711
713
|
export declare const GetIdentityProviderResponseFilterSensitiveLog: (
|
|
712
714
|
obj: GetIdentityProviderResponse
|
|
713
715
|
) => any;
|
|
714
|
-
export declare const IpAccessSettingsFilterSensitiveLog: (
|
|
715
|
-
obj: IpAccessSettings
|
|
716
|
-
) => any;
|
|
717
|
-
export declare const GetIpAccessSettingsResponseFilterSensitiveLog: (
|
|
718
|
-
obj: GetIpAccessSettingsResponse
|
|
719
|
-
) => any;
|
|
720
|
-
export declare const PortalFilterSensitiveLog: (obj: Portal) => any;
|
|
721
|
-
export declare const GetPortalResponseFilterSensitiveLog: (
|
|
722
|
-
obj: GetPortalResponse
|
|
723
|
-
) => any;
|
|
724
716
|
export declare const IdentityProviderSummaryFilterSensitiveLog: (
|
|
725
717
|
obj: IdentityProviderSummary
|
|
726
718
|
) => any;
|
|
727
719
|
export declare const ListIdentityProvidersResponseFilterSensitiveLog: (
|
|
728
720
|
obj: ListIdentityProvidersResponse
|
|
729
721
|
) => any;
|
|
722
|
+
export declare const UpdateIdentityProviderRequestFilterSensitiveLog: (
|
|
723
|
+
obj: UpdateIdentityProviderRequest
|
|
724
|
+
) => any;
|
|
725
|
+
export declare const UpdateIdentityProviderResponseFilterSensitiveLog: (
|
|
726
|
+
obj: UpdateIdentityProviderResponse
|
|
727
|
+
) => any;
|
|
728
|
+
export declare const IpRuleFilterSensitiveLog: (obj: IpRule) => any;
|
|
729
|
+
export declare const CreateIpAccessSettingsRequestFilterSensitiveLog: (
|
|
730
|
+
obj: CreateIpAccessSettingsRequest
|
|
731
|
+
) => any;
|
|
732
|
+
export declare const IpAccessSettingsFilterSensitiveLog: (
|
|
733
|
+
obj: IpAccessSettings
|
|
734
|
+
) => any;
|
|
735
|
+
export declare const GetIpAccessSettingsResponseFilterSensitiveLog: (
|
|
736
|
+
obj: GetIpAccessSettingsResponse
|
|
737
|
+
) => any;
|
|
730
738
|
export declare const IpAccessSettingsSummaryFilterSensitiveLog: (
|
|
731
739
|
obj: IpAccessSettingsSummary
|
|
732
740
|
) => any;
|
|
733
741
|
export declare const ListIpAccessSettingsResponseFilterSensitiveLog: (
|
|
734
742
|
obj: ListIpAccessSettingsResponse
|
|
735
743
|
) => any;
|
|
744
|
+
export declare const UpdateIpAccessSettingsRequestFilterSensitiveLog: (
|
|
745
|
+
obj: UpdateIpAccessSettingsRequest
|
|
746
|
+
) => any;
|
|
747
|
+
export declare const UpdateIpAccessSettingsResponseFilterSensitiveLog: (
|
|
748
|
+
obj: UpdateIpAccessSettingsResponse
|
|
749
|
+
) => any;
|
|
750
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
751
|
+
obj: ListTagsForResourceResponse
|
|
752
|
+
) => any;
|
|
753
|
+
export declare const CreateNetworkSettingsRequestFilterSensitiveLog: (
|
|
754
|
+
obj: CreateNetworkSettingsRequest
|
|
755
|
+
) => any;
|
|
756
|
+
export declare const CreatePortalRequestFilterSensitiveLog: (
|
|
757
|
+
obj: CreatePortalRequest
|
|
758
|
+
) => any;
|
|
759
|
+
export declare const PortalFilterSensitiveLog: (obj: Portal) => any;
|
|
760
|
+
export declare const GetPortalResponseFilterSensitiveLog: (
|
|
761
|
+
obj: GetPortalResponse
|
|
762
|
+
) => any;
|
|
736
763
|
export declare const PortalSummaryFilterSensitiveLog: (
|
|
737
764
|
obj: PortalSummary
|
|
738
765
|
) => any;
|
|
739
766
|
export declare const ListPortalsResponseFilterSensitiveLog: (
|
|
740
767
|
obj: ListPortalsResponse
|
|
741
768
|
) => any;
|
|
742
|
-
export declare const
|
|
743
|
-
obj:
|
|
769
|
+
export declare const UpdatePortalRequestFilterSensitiveLog: (
|
|
770
|
+
obj: UpdatePortalRequest
|
|
771
|
+
) => any;
|
|
772
|
+
export declare const UpdatePortalResponseFilterSensitiveLog: (
|
|
773
|
+
obj: UpdatePortalResponse
|
|
744
774
|
) => any;
|
|
745
775
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
746
776
|
obj: TagResourceRequest
|
|
747
777
|
) => any;
|
|
778
|
+
export declare const CreateTrustStoreRequestFilterSensitiveLog: (
|
|
779
|
+
obj: CreateTrustStoreRequest
|
|
780
|
+
) => any;
|
|
748
781
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
749
782
|
obj: UntagResourceRequest
|
|
750
783
|
) => any;
|
|
751
|
-
export declare const
|
|
752
|
-
obj:
|
|
784
|
+
export declare const CreateUserAccessLoggingSettingsRequestFilterSensitiveLog: (
|
|
785
|
+
obj: CreateUserAccessLoggingSettingsRequest
|
|
753
786
|
) => any;
|
|
754
|
-
export declare const
|
|
755
|
-
obj:
|
|
787
|
+
export declare const CookieSynchronizationConfigurationFilterSensitiveLog: (
|
|
788
|
+
obj: CookieSynchronizationConfiguration
|
|
756
789
|
) => any;
|
|
757
|
-
export declare const
|
|
758
|
-
obj:
|
|
790
|
+
export declare const CreateUserSettingsRequestFilterSensitiveLog: (
|
|
791
|
+
obj: CreateUserSettingsRequest
|
|
759
792
|
) => any;
|
|
760
|
-
export declare const
|
|
761
|
-
|
|
793
|
+
export declare const UserSettingsFilterSensitiveLog: (obj: UserSettings) => any;
|
|
794
|
+
export declare const GetUserSettingsResponseFilterSensitiveLog: (
|
|
795
|
+
obj: GetUserSettingsResponse
|
|
762
796
|
) => any;
|
|
763
|
-
export declare const
|
|
764
|
-
obj:
|
|
797
|
+
export declare const UserSettingsSummaryFilterSensitiveLog: (
|
|
798
|
+
obj: UserSettingsSummary
|
|
765
799
|
) => any;
|
|
766
|
-
export declare const
|
|
767
|
-
obj:
|
|
800
|
+
export declare const ListUserSettingsResponseFilterSensitiveLog: (
|
|
801
|
+
obj: ListUserSettingsResponse
|
|
768
802
|
) => any;
|
|
769
|
-
export declare const
|
|
770
|
-
obj:
|
|
803
|
+
export declare const UpdateUserSettingsRequestFilterSensitiveLog: (
|
|
804
|
+
obj: UpdateUserSettingsRequest
|
|
771
805
|
) => any;
|
|
772
|
-
export declare const
|
|
773
|
-
obj:
|
|
806
|
+
export declare const UpdateUserSettingsResponseFilterSensitiveLog: (
|
|
807
|
+
obj: UpdateUserSettingsResponse
|
|
774
808
|
) => any;
|