@aws-sdk/client-workspaces-web 3.686.0 → 3.691.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-types/models/models_0.d.ts +250 -250
- package/dist-types/ts3.4/models/models_0.d.ts +258 -250
- package/package.json +7 -7
|
@@ -18,14 +18,14 @@ export interface AssociateBrowserSettingsResponse {
|
|
|
18
18
|
export declare class ConflictException extends __BaseException {
|
|
19
19
|
readonly name: "ConflictException";
|
|
20
20
|
readonly $fault: "client";
|
|
21
|
-
resourceId?: string;
|
|
22
|
-
resourceType?: string;
|
|
21
|
+
resourceId?: string | undefined;
|
|
22
|
+
resourceType?: string | undefined;
|
|
23
23
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
24
24
|
}
|
|
25
25
|
export declare class InternalServerException extends __BaseException {
|
|
26
26
|
readonly name: "InternalServerException";
|
|
27
27
|
readonly $fault: "server";
|
|
28
|
-
retryAfterSeconds?: number;
|
|
28
|
+
retryAfterSeconds?: number | undefined;
|
|
29
29
|
constructor(
|
|
30
30
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
31
31
|
);
|
|
@@ -33,8 +33,8 @@ export declare class InternalServerException extends __BaseException {
|
|
|
33
33
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
34
34
|
readonly name: "ResourceNotFoundException";
|
|
35
35
|
readonly $fault: "client";
|
|
36
|
-
resourceId?: string;
|
|
37
|
-
resourceType?: string;
|
|
36
|
+
resourceId?: string | undefined;
|
|
37
|
+
resourceType?: string | undefined;
|
|
38
38
|
constructor(
|
|
39
39
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
40
40
|
);
|
|
@@ -42,9 +42,9 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
42
42
|
export declare class ThrottlingException extends __BaseException {
|
|
43
43
|
readonly name: "ThrottlingException";
|
|
44
44
|
readonly $fault: "client";
|
|
45
|
-
serviceCode?: string;
|
|
46
|
-
quotaCode?: string;
|
|
47
|
-
retryAfterSeconds?: number;
|
|
45
|
+
serviceCode?: string | undefined;
|
|
46
|
+
quotaCode?: string | undefined;
|
|
47
|
+
retryAfterSeconds?: number | undefined;
|
|
48
48
|
constructor(
|
|
49
49
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
50
50
|
);
|
|
@@ -64,8 +64,8 @@ export type ValidationExceptionReason =
|
|
|
64
64
|
export declare class ValidationException extends __BaseException {
|
|
65
65
|
readonly name: "ValidationException";
|
|
66
66
|
readonly $fault: "client";
|
|
67
|
-
reason?: ValidationExceptionReason;
|
|
68
|
-
fieldList?: ValidationExceptionField[];
|
|
67
|
+
reason?: ValidationExceptionReason | undefined;
|
|
68
|
+
fieldList?: ValidationExceptionField[] | undefined;
|
|
69
69
|
constructor(
|
|
70
70
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
71
71
|
);
|
|
@@ -121,11 +121,11 @@ export interface Tag {
|
|
|
121
121
|
Value: string | undefined;
|
|
122
122
|
}
|
|
123
123
|
export interface CreateBrowserSettingsRequest {
|
|
124
|
-
tags?: Tag[];
|
|
125
|
-
customerManagedKey?: string;
|
|
126
|
-
additionalEncryptionContext?: Record<string, string
|
|
124
|
+
tags?: Tag[] | undefined;
|
|
125
|
+
customerManagedKey?: string | undefined;
|
|
126
|
+
additionalEncryptionContext?: Record<string, string> | undefined;
|
|
127
127
|
browserPolicy: string | undefined;
|
|
128
|
-
clientToken?: string;
|
|
128
|
+
clientToken?: string | undefined;
|
|
129
129
|
}
|
|
130
130
|
export interface CreateBrowserSettingsResponse {
|
|
131
131
|
browserSettingsArn: string | undefined;
|
|
@@ -133,10 +133,10 @@ export interface CreateBrowserSettingsResponse {
|
|
|
133
133
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
134
134
|
readonly name: "ServiceQuotaExceededException";
|
|
135
135
|
readonly $fault: "client";
|
|
136
|
-
resourceId?: string;
|
|
137
|
-
resourceType?: string;
|
|
138
|
-
serviceCode?: string;
|
|
139
|
-
quotaCode?: string;
|
|
136
|
+
resourceId?: string | undefined;
|
|
137
|
+
resourceType?: string | undefined;
|
|
138
|
+
serviceCode?: string | undefined;
|
|
139
|
+
quotaCode?: string | undefined;
|
|
140
140
|
constructor(
|
|
141
141
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
142
142
|
);
|
|
@@ -150,29 +150,29 @@ export interface GetBrowserSettingsRequest {
|
|
|
150
150
|
}
|
|
151
151
|
export interface BrowserSettings {
|
|
152
152
|
browserSettingsArn: string | undefined;
|
|
153
|
-
associatedPortalArns?: string[];
|
|
154
|
-
browserPolicy?: string;
|
|
155
|
-
customerManagedKey?: string;
|
|
156
|
-
additionalEncryptionContext?: Record<string, string
|
|
153
|
+
associatedPortalArns?: string[] | undefined;
|
|
154
|
+
browserPolicy?: string | undefined;
|
|
155
|
+
customerManagedKey?: string | undefined;
|
|
156
|
+
additionalEncryptionContext?: Record<string, string> | undefined;
|
|
157
157
|
}
|
|
158
158
|
export interface GetBrowserSettingsResponse {
|
|
159
|
-
browserSettings?: BrowserSettings;
|
|
159
|
+
browserSettings?: BrowserSettings | undefined;
|
|
160
160
|
}
|
|
161
161
|
export interface ListBrowserSettingsRequest {
|
|
162
|
-
nextToken?: string;
|
|
163
|
-
maxResults?: number;
|
|
162
|
+
nextToken?: string | undefined;
|
|
163
|
+
maxResults?: number | undefined;
|
|
164
164
|
}
|
|
165
165
|
export interface BrowserSettingsSummary {
|
|
166
166
|
browserSettingsArn: string | undefined;
|
|
167
167
|
}
|
|
168
168
|
export interface ListBrowserSettingsResponse {
|
|
169
|
-
browserSettings?: BrowserSettingsSummary[];
|
|
170
|
-
nextToken?: string;
|
|
169
|
+
browserSettings?: BrowserSettingsSummary[] | undefined;
|
|
170
|
+
nextToken?: string | undefined;
|
|
171
171
|
}
|
|
172
172
|
export interface UpdateBrowserSettingsRequest {
|
|
173
173
|
browserSettingsArn: string | undefined;
|
|
174
|
-
browserPolicy?: string;
|
|
175
|
-
clientToken?: string;
|
|
174
|
+
browserPolicy?: string | undefined;
|
|
175
|
+
clientToken?: string | undefined;
|
|
176
176
|
}
|
|
177
177
|
export interface UpdateBrowserSettingsResponse {
|
|
178
178
|
browserSettings: BrowserSettings | undefined;
|
|
@@ -192,16 +192,16 @@ export declare const SessionStatus: {
|
|
|
192
192
|
};
|
|
193
193
|
export type SessionStatus = (typeof SessionStatus)[keyof typeof SessionStatus];
|
|
194
194
|
export interface Session {
|
|
195
|
-
portalArn?: string;
|
|
196
|
-
sessionId?: string;
|
|
197
|
-
username?: string;
|
|
198
|
-
clientIpAddresses?: string[];
|
|
199
|
-
status?: SessionStatus;
|
|
200
|
-
startTime?: Date;
|
|
201
|
-
endTime?: Date;
|
|
195
|
+
portalArn?: string | undefined;
|
|
196
|
+
sessionId?: string | undefined;
|
|
197
|
+
username?: string | undefined;
|
|
198
|
+
clientIpAddresses?: string[] | undefined;
|
|
199
|
+
status?: SessionStatus | undefined;
|
|
200
|
+
startTime?: Date | undefined;
|
|
201
|
+
endTime?: Date | undefined;
|
|
202
202
|
}
|
|
203
203
|
export interface GetSessionResponse {
|
|
204
|
-
session?: Session;
|
|
204
|
+
session?: Session | undefined;
|
|
205
205
|
}
|
|
206
206
|
export declare const IdentityProviderType: {
|
|
207
207
|
readonly Facebook: "Facebook";
|
|
@@ -218,8 +218,8 @@ export interface CreateIdentityProviderRequest {
|
|
|
218
218
|
identityProviderName: string | undefined;
|
|
219
219
|
identityProviderType: IdentityProviderType | undefined;
|
|
220
220
|
identityProviderDetails: Record<string, string> | undefined;
|
|
221
|
-
clientToken?: string;
|
|
222
|
-
tags?: Tag[];
|
|
221
|
+
clientToken?: string | undefined;
|
|
222
|
+
tags?: Tag[] | undefined;
|
|
223
223
|
}
|
|
224
224
|
export interface CreateIdentityProviderResponse {
|
|
225
225
|
identityProviderArn: string | undefined;
|
|
@@ -233,49 +233,49 @@ export interface GetIdentityProviderRequest {
|
|
|
233
233
|
}
|
|
234
234
|
export interface IdentityProvider {
|
|
235
235
|
identityProviderArn: string | undefined;
|
|
236
|
-
identityProviderName?: string;
|
|
237
|
-
identityProviderType?: IdentityProviderType;
|
|
238
|
-
identityProviderDetails?: Record<string, string
|
|
236
|
+
identityProviderName?: string | undefined;
|
|
237
|
+
identityProviderType?: IdentityProviderType | undefined;
|
|
238
|
+
identityProviderDetails?: Record<string, string> | undefined;
|
|
239
239
|
}
|
|
240
240
|
export interface GetIdentityProviderResponse {
|
|
241
|
-
identityProvider?: IdentityProvider;
|
|
241
|
+
identityProvider?: IdentityProvider | undefined;
|
|
242
242
|
}
|
|
243
243
|
export interface ListIdentityProvidersRequest {
|
|
244
|
-
nextToken?: string;
|
|
245
|
-
maxResults?: number;
|
|
244
|
+
nextToken?: string | undefined;
|
|
245
|
+
maxResults?: number | undefined;
|
|
246
246
|
portalArn: string | undefined;
|
|
247
247
|
}
|
|
248
248
|
export interface IdentityProviderSummary {
|
|
249
249
|
identityProviderArn: string | undefined;
|
|
250
|
-
identityProviderName?: string;
|
|
251
|
-
identityProviderType?: IdentityProviderType;
|
|
250
|
+
identityProviderName?: string | undefined;
|
|
251
|
+
identityProviderType?: IdentityProviderType | undefined;
|
|
252
252
|
}
|
|
253
253
|
export interface ListIdentityProvidersResponse {
|
|
254
|
-
nextToken?: string;
|
|
255
|
-
identityProviders?: IdentityProviderSummary[];
|
|
254
|
+
nextToken?: string | undefined;
|
|
255
|
+
identityProviders?: IdentityProviderSummary[] | undefined;
|
|
256
256
|
}
|
|
257
257
|
export interface UpdateIdentityProviderRequest {
|
|
258
258
|
identityProviderArn: string | undefined;
|
|
259
|
-
identityProviderName?: string;
|
|
260
|
-
identityProviderType?: IdentityProviderType;
|
|
261
|
-
identityProviderDetails?: Record<string, string
|
|
262
|
-
clientToken?: string;
|
|
259
|
+
identityProviderName?: string | undefined;
|
|
260
|
+
identityProviderType?: IdentityProviderType | undefined;
|
|
261
|
+
identityProviderDetails?: Record<string, string> | undefined;
|
|
262
|
+
clientToken?: string | undefined;
|
|
263
263
|
}
|
|
264
264
|
export interface UpdateIdentityProviderResponse {
|
|
265
265
|
identityProvider: IdentityProvider | undefined;
|
|
266
266
|
}
|
|
267
267
|
export interface IpRule {
|
|
268
268
|
ipRange: string | undefined;
|
|
269
|
-
description?: string;
|
|
269
|
+
description?: string | undefined;
|
|
270
270
|
}
|
|
271
271
|
export interface CreateIpAccessSettingsRequest {
|
|
272
|
-
displayName?: string;
|
|
273
|
-
description?: string;
|
|
274
|
-
tags?: Tag[];
|
|
275
|
-
customerManagedKey?: string;
|
|
276
|
-
additionalEncryptionContext?: Record<string, string
|
|
272
|
+
displayName?: string | undefined;
|
|
273
|
+
description?: string | undefined;
|
|
274
|
+
tags?: Tag[] | undefined;
|
|
275
|
+
customerManagedKey?: string | undefined;
|
|
276
|
+
additionalEncryptionContext?: Record<string, string> | undefined;
|
|
277
277
|
ipRules: IpRule[] | undefined;
|
|
278
|
-
clientToken?: string;
|
|
278
|
+
clientToken?: string | undefined;
|
|
279
279
|
}
|
|
280
280
|
export interface CreateIpAccessSettingsResponse {
|
|
281
281
|
ipAccessSettingsArn: string | undefined;
|
|
@@ -289,37 +289,37 @@ export interface GetIpAccessSettingsRequest {
|
|
|
289
289
|
}
|
|
290
290
|
export interface IpAccessSettings {
|
|
291
291
|
ipAccessSettingsArn: string | undefined;
|
|
292
|
-
associatedPortalArns?: string[];
|
|
293
|
-
ipRules?: IpRule[];
|
|
294
|
-
displayName?: string;
|
|
295
|
-
description?: string;
|
|
296
|
-
creationDate?: Date;
|
|
297
|
-
customerManagedKey?: string;
|
|
298
|
-
additionalEncryptionContext?: Record<string, string
|
|
292
|
+
associatedPortalArns?: string[] | undefined;
|
|
293
|
+
ipRules?: IpRule[] | undefined;
|
|
294
|
+
displayName?: string | undefined;
|
|
295
|
+
description?: string | undefined;
|
|
296
|
+
creationDate?: Date | undefined;
|
|
297
|
+
customerManagedKey?: string | undefined;
|
|
298
|
+
additionalEncryptionContext?: Record<string, string> | undefined;
|
|
299
299
|
}
|
|
300
300
|
export interface GetIpAccessSettingsResponse {
|
|
301
|
-
ipAccessSettings?: IpAccessSettings;
|
|
301
|
+
ipAccessSettings?: IpAccessSettings | undefined;
|
|
302
302
|
}
|
|
303
303
|
export interface ListIpAccessSettingsRequest {
|
|
304
|
-
nextToken?: string;
|
|
305
|
-
maxResults?: number;
|
|
304
|
+
nextToken?: string | undefined;
|
|
305
|
+
maxResults?: number | undefined;
|
|
306
306
|
}
|
|
307
307
|
export interface IpAccessSettingsSummary {
|
|
308
308
|
ipAccessSettingsArn: string | undefined;
|
|
309
|
-
displayName?: string;
|
|
310
|
-
description?: string;
|
|
311
|
-
creationDate?: Date;
|
|
309
|
+
displayName?: string | undefined;
|
|
310
|
+
description?: string | undefined;
|
|
311
|
+
creationDate?: Date | undefined;
|
|
312
312
|
}
|
|
313
313
|
export interface ListIpAccessSettingsResponse {
|
|
314
|
-
ipAccessSettings?: IpAccessSettingsSummary[];
|
|
315
|
-
nextToken?: string;
|
|
314
|
+
ipAccessSettings?: IpAccessSettingsSummary[] | undefined;
|
|
315
|
+
nextToken?: string | undefined;
|
|
316
316
|
}
|
|
317
317
|
export interface UpdateIpAccessSettingsRequest {
|
|
318
318
|
ipAccessSettingsArn: string | undefined;
|
|
319
|
-
displayName?: string;
|
|
320
|
-
description?: string;
|
|
321
|
-
ipRules?: IpRule[];
|
|
322
|
-
clientToken?: string;
|
|
319
|
+
displayName?: string | undefined;
|
|
320
|
+
description?: string | undefined;
|
|
321
|
+
ipRules?: IpRule[] | undefined;
|
|
322
|
+
clientToken?: string | undefined;
|
|
323
323
|
}
|
|
324
324
|
export interface UpdateIpAccessSettingsResponse {
|
|
325
325
|
ipAccessSettings: IpAccessSettings | undefined;
|
|
@@ -331,37 +331,37 @@ export declare const SessionSortBy: {
|
|
|
331
331
|
export type SessionSortBy = (typeof SessionSortBy)[keyof typeof SessionSortBy];
|
|
332
332
|
export interface ListSessionsRequest {
|
|
333
333
|
portalId: string | undefined;
|
|
334
|
-
username?: string;
|
|
335
|
-
sessionId?: string;
|
|
336
|
-
sortBy?: SessionSortBy;
|
|
337
|
-
status?: SessionStatus;
|
|
338
|
-
maxResults?: number;
|
|
339
|
-
nextToken?: string;
|
|
334
|
+
username?: string | undefined;
|
|
335
|
+
sessionId?: string | undefined;
|
|
336
|
+
sortBy?: SessionSortBy | undefined;
|
|
337
|
+
status?: SessionStatus | undefined;
|
|
338
|
+
maxResults?: number | undefined;
|
|
339
|
+
nextToken?: string | undefined;
|
|
340
340
|
}
|
|
341
341
|
export interface SessionSummary {
|
|
342
|
-
portalArn?: string;
|
|
343
|
-
sessionId?: string;
|
|
344
|
-
username?: string;
|
|
345
|
-
status?: SessionStatus;
|
|
346
|
-
startTime?: Date;
|
|
347
|
-
endTime?: Date;
|
|
342
|
+
portalArn?: string | undefined;
|
|
343
|
+
sessionId?: string | undefined;
|
|
344
|
+
username?: string | undefined;
|
|
345
|
+
status?: SessionStatus | undefined;
|
|
346
|
+
startTime?: Date | undefined;
|
|
347
|
+
endTime?: Date | undefined;
|
|
348
348
|
}
|
|
349
349
|
export interface ListSessionsResponse {
|
|
350
350
|
sessions: SessionSummary[] | undefined;
|
|
351
|
-
nextToken?: string;
|
|
351
|
+
nextToken?: string | undefined;
|
|
352
352
|
}
|
|
353
353
|
export interface ListTagsForResourceRequest {
|
|
354
354
|
resourceArn: string | undefined;
|
|
355
355
|
}
|
|
356
356
|
export interface ListTagsForResourceResponse {
|
|
357
|
-
tags?: Tag[];
|
|
357
|
+
tags?: Tag[] | undefined;
|
|
358
358
|
}
|
|
359
359
|
export interface CreateNetworkSettingsRequest {
|
|
360
360
|
vpcId: string | undefined;
|
|
361
361
|
subnetIds: string[] | undefined;
|
|
362
362
|
securityGroupIds: string[] | undefined;
|
|
363
|
-
tags?: Tag[];
|
|
364
|
-
clientToken?: string;
|
|
363
|
+
tags?: Tag[] | undefined;
|
|
364
|
+
clientToken?: string | undefined;
|
|
365
365
|
}
|
|
366
366
|
export interface CreateNetworkSettingsResponse {
|
|
367
367
|
networkSettingsArn: string | undefined;
|
|
@@ -375,32 +375,32 @@ export interface GetNetworkSettingsRequest {
|
|
|
375
375
|
}
|
|
376
376
|
export interface NetworkSettings {
|
|
377
377
|
networkSettingsArn: string | undefined;
|
|
378
|
-
associatedPortalArns?: string[];
|
|
379
|
-
vpcId?: string;
|
|
380
|
-
subnetIds?: string[];
|
|
381
|
-
securityGroupIds?: string[];
|
|
378
|
+
associatedPortalArns?: string[] | undefined;
|
|
379
|
+
vpcId?: string | undefined;
|
|
380
|
+
subnetIds?: string[] | undefined;
|
|
381
|
+
securityGroupIds?: string[] | undefined;
|
|
382
382
|
}
|
|
383
383
|
export interface GetNetworkSettingsResponse {
|
|
384
|
-
networkSettings?: NetworkSettings;
|
|
384
|
+
networkSettings?: NetworkSettings | undefined;
|
|
385
385
|
}
|
|
386
386
|
export interface ListNetworkSettingsRequest {
|
|
387
|
-
nextToken?: string;
|
|
388
|
-
maxResults?: number;
|
|
387
|
+
nextToken?: string | undefined;
|
|
388
|
+
maxResults?: number | undefined;
|
|
389
389
|
}
|
|
390
390
|
export interface NetworkSettingsSummary {
|
|
391
391
|
networkSettingsArn: string | undefined;
|
|
392
|
-
vpcId?: string;
|
|
392
|
+
vpcId?: string | undefined;
|
|
393
393
|
}
|
|
394
394
|
export interface ListNetworkSettingsResponse {
|
|
395
|
-
networkSettings?: NetworkSettingsSummary[];
|
|
396
|
-
nextToken?: string;
|
|
395
|
+
networkSettings?: NetworkSettingsSummary[] | undefined;
|
|
396
|
+
nextToken?: string | undefined;
|
|
397
397
|
}
|
|
398
398
|
export interface UpdateNetworkSettingsRequest {
|
|
399
399
|
networkSettingsArn: string | undefined;
|
|
400
|
-
vpcId?: string;
|
|
401
|
-
subnetIds?: string[];
|
|
402
|
-
securityGroupIds?: string[];
|
|
403
|
-
clientToken?: string;
|
|
400
|
+
vpcId?: string | undefined;
|
|
401
|
+
subnetIds?: string[] | undefined;
|
|
402
|
+
securityGroupIds?: string[] | undefined;
|
|
403
|
+
clientToken?: string | undefined;
|
|
404
404
|
}
|
|
405
405
|
export interface UpdateNetworkSettingsResponse {
|
|
406
406
|
networkSettings: NetworkSettings | undefined;
|
|
@@ -416,14 +416,14 @@ export declare const _InstanceType: {
|
|
|
416
416
|
};
|
|
417
417
|
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
418
418
|
export interface CreatePortalRequest {
|
|
419
|
-
displayName?: string;
|
|
420
|
-
tags?: Tag[];
|
|
421
|
-
customerManagedKey?: string;
|
|
422
|
-
additionalEncryptionContext?: Record<string, string
|
|
423
|
-
clientToken?: string;
|
|
424
|
-
authenticationType?: AuthenticationType;
|
|
425
|
-
instanceType?: _InstanceType;
|
|
426
|
-
maxConcurrentSessions?: number;
|
|
419
|
+
displayName?: string | undefined;
|
|
420
|
+
tags?: Tag[] | undefined;
|
|
421
|
+
customerManagedKey?: string | undefined;
|
|
422
|
+
additionalEncryptionContext?: Record<string, string> | undefined;
|
|
423
|
+
clientToken?: string | undefined;
|
|
424
|
+
authenticationType?: AuthenticationType | undefined;
|
|
425
|
+
instanceType?: _InstanceType | undefined;
|
|
426
|
+
maxConcurrentSessions?: number | undefined;
|
|
427
427
|
}
|
|
428
428
|
export interface CreatePortalResponse {
|
|
429
429
|
portalArn: string | undefined;
|
|
@@ -472,96 +472,96 @@ export declare const RendererType: {
|
|
|
472
472
|
export type RendererType = (typeof RendererType)[keyof typeof RendererType];
|
|
473
473
|
export interface Portal {
|
|
474
474
|
portalArn: string | undefined;
|
|
475
|
-
rendererType?: RendererType;
|
|
476
|
-
browserType?: BrowserType;
|
|
477
|
-
portalStatus?: PortalStatus;
|
|
478
|
-
portalEndpoint?: string;
|
|
479
|
-
displayName?: string;
|
|
480
|
-
creationDate?: Date;
|
|
481
|
-
browserSettingsArn?: string;
|
|
482
|
-
userSettingsArn?: string;
|
|
483
|
-
networkSettingsArn?: string;
|
|
484
|
-
trustStoreArn?: string;
|
|
485
|
-
statusReason?: string;
|
|
486
|
-
userAccessLoggingSettingsArn?: string;
|
|
487
|
-
authenticationType?: AuthenticationType;
|
|
488
|
-
ipAccessSettingsArn?: string;
|
|
489
|
-
customerManagedKey?: string;
|
|
490
|
-
additionalEncryptionContext?: Record<string, string
|
|
491
|
-
instanceType?: _InstanceType;
|
|
492
|
-
maxConcurrentSessions?: number;
|
|
475
|
+
rendererType?: RendererType | undefined;
|
|
476
|
+
browserType?: BrowserType | undefined;
|
|
477
|
+
portalStatus?: PortalStatus | undefined;
|
|
478
|
+
portalEndpoint?: string | undefined;
|
|
479
|
+
displayName?: string | undefined;
|
|
480
|
+
creationDate?: Date | undefined;
|
|
481
|
+
browserSettingsArn?: string | undefined;
|
|
482
|
+
userSettingsArn?: string | undefined;
|
|
483
|
+
networkSettingsArn?: string | undefined;
|
|
484
|
+
trustStoreArn?: string | undefined;
|
|
485
|
+
statusReason?: string | undefined;
|
|
486
|
+
userAccessLoggingSettingsArn?: string | undefined;
|
|
487
|
+
authenticationType?: AuthenticationType | undefined;
|
|
488
|
+
ipAccessSettingsArn?: string | undefined;
|
|
489
|
+
customerManagedKey?: string | undefined;
|
|
490
|
+
additionalEncryptionContext?: Record<string, string> | undefined;
|
|
491
|
+
instanceType?: _InstanceType | undefined;
|
|
492
|
+
maxConcurrentSessions?: number | undefined;
|
|
493
493
|
}
|
|
494
494
|
export interface GetPortalResponse {
|
|
495
|
-
portal?: Portal;
|
|
495
|
+
portal?: Portal | undefined;
|
|
496
496
|
}
|
|
497
497
|
export interface GetPortalServiceProviderMetadataRequest {
|
|
498
498
|
portalArn: string | undefined;
|
|
499
499
|
}
|
|
500
500
|
export interface GetPortalServiceProviderMetadataResponse {
|
|
501
501
|
portalArn: string | undefined;
|
|
502
|
-
serviceProviderSamlMetadata?: string;
|
|
502
|
+
serviceProviderSamlMetadata?: string | undefined;
|
|
503
503
|
}
|
|
504
504
|
export interface ListPortalsRequest {
|
|
505
|
-
nextToken?: string;
|
|
506
|
-
maxResults?: number;
|
|
505
|
+
nextToken?: string | undefined;
|
|
506
|
+
maxResults?: number | undefined;
|
|
507
507
|
}
|
|
508
508
|
export interface PortalSummary {
|
|
509
509
|
portalArn: string | undefined;
|
|
510
|
-
rendererType?: RendererType;
|
|
511
|
-
browserType?: BrowserType;
|
|
512
|
-
portalStatus?: PortalStatus;
|
|
513
|
-
portalEndpoint?: string;
|
|
514
|
-
displayName?: string;
|
|
515
|
-
creationDate?: Date;
|
|
516
|
-
browserSettingsArn?: string;
|
|
517
|
-
userSettingsArn?: string;
|
|
518
|
-
networkSettingsArn?: string;
|
|
519
|
-
trustStoreArn?: string;
|
|
520
|
-
userAccessLoggingSettingsArn?: string;
|
|
521
|
-
authenticationType?: AuthenticationType;
|
|
522
|
-
ipAccessSettingsArn?: string;
|
|
523
|
-
instanceType?: _InstanceType;
|
|
524
|
-
maxConcurrentSessions?: number;
|
|
510
|
+
rendererType?: RendererType | undefined;
|
|
511
|
+
browserType?: BrowserType | undefined;
|
|
512
|
+
portalStatus?: PortalStatus | undefined;
|
|
513
|
+
portalEndpoint?: string | undefined;
|
|
514
|
+
displayName?: string | undefined;
|
|
515
|
+
creationDate?: Date | undefined;
|
|
516
|
+
browserSettingsArn?: string | undefined;
|
|
517
|
+
userSettingsArn?: string | undefined;
|
|
518
|
+
networkSettingsArn?: string | undefined;
|
|
519
|
+
trustStoreArn?: string | undefined;
|
|
520
|
+
userAccessLoggingSettingsArn?: string | undefined;
|
|
521
|
+
authenticationType?: AuthenticationType | undefined;
|
|
522
|
+
ipAccessSettingsArn?: string | undefined;
|
|
523
|
+
instanceType?: _InstanceType | undefined;
|
|
524
|
+
maxConcurrentSessions?: number | undefined;
|
|
525
525
|
}
|
|
526
526
|
export interface ListPortalsResponse {
|
|
527
|
-
portals?: PortalSummary[];
|
|
528
|
-
nextToken?: string;
|
|
527
|
+
portals?: PortalSummary[] | undefined;
|
|
528
|
+
nextToken?: string | undefined;
|
|
529
529
|
}
|
|
530
530
|
export interface UpdatePortalRequest {
|
|
531
531
|
portalArn: string | undefined;
|
|
532
|
-
displayName?: string;
|
|
533
|
-
authenticationType?: AuthenticationType;
|
|
534
|
-
instanceType?: _InstanceType;
|
|
535
|
-
maxConcurrentSessions?: number;
|
|
532
|
+
displayName?: string | undefined;
|
|
533
|
+
authenticationType?: AuthenticationType | undefined;
|
|
534
|
+
instanceType?: _InstanceType | undefined;
|
|
535
|
+
maxConcurrentSessions?: number | undefined;
|
|
536
536
|
}
|
|
537
537
|
export interface UpdatePortalResponse {
|
|
538
|
-
portal?: Portal;
|
|
538
|
+
portal?: Portal | undefined;
|
|
539
539
|
}
|
|
540
540
|
export interface TagResourceRequest {
|
|
541
541
|
resourceArn: string | undefined;
|
|
542
542
|
tags: Tag[] | undefined;
|
|
543
|
-
clientToken?: string;
|
|
543
|
+
clientToken?: string | undefined;
|
|
544
544
|
}
|
|
545
545
|
export interface TagResourceResponse {}
|
|
546
546
|
export declare class TooManyTagsException extends __BaseException {
|
|
547
547
|
readonly name: "TooManyTagsException";
|
|
548
548
|
readonly $fault: "client";
|
|
549
|
-
resourceName?: string;
|
|
549
|
+
resourceName?: string | undefined;
|
|
550
550
|
constructor(
|
|
551
551
|
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
552
552
|
);
|
|
553
553
|
}
|
|
554
554
|
export interface CertificateSummary {
|
|
555
|
-
thumbprint?: string;
|
|
556
|
-
subject?: string;
|
|
557
|
-
issuer?: string;
|
|
558
|
-
notValidBefore?: Date;
|
|
559
|
-
notValidAfter?: Date;
|
|
555
|
+
thumbprint?: string | undefined;
|
|
556
|
+
subject?: string | undefined;
|
|
557
|
+
issuer?: string | undefined;
|
|
558
|
+
notValidBefore?: Date | undefined;
|
|
559
|
+
notValidAfter?: Date | undefined;
|
|
560
560
|
}
|
|
561
561
|
export interface CreateTrustStoreRequest {
|
|
562
562
|
certificateList: Uint8Array[] | undefined;
|
|
563
|
-
tags?: Tag[];
|
|
564
|
-
clientToken?: string;
|
|
563
|
+
tags?: Tag[] | undefined;
|
|
564
|
+
clientToken?: string | undefined;
|
|
565
565
|
}
|
|
566
566
|
export interface CreateTrustStoreResponse {
|
|
567
567
|
trustStoreArn: string | undefined;
|
|
@@ -574,54 +574,54 @@ export interface GetTrustStoreRequest {
|
|
|
574
574
|
trustStoreArn: string | undefined;
|
|
575
575
|
}
|
|
576
576
|
export interface TrustStore {
|
|
577
|
-
associatedPortalArns?: string[];
|
|
577
|
+
associatedPortalArns?: string[] | undefined;
|
|
578
578
|
trustStoreArn: string | undefined;
|
|
579
579
|
}
|
|
580
580
|
export interface GetTrustStoreResponse {
|
|
581
|
-
trustStore?: TrustStore;
|
|
581
|
+
trustStore?: TrustStore | undefined;
|
|
582
582
|
}
|
|
583
583
|
export interface GetTrustStoreCertificateRequest {
|
|
584
584
|
trustStoreArn: string | undefined;
|
|
585
585
|
thumbprint: string | undefined;
|
|
586
586
|
}
|
|
587
587
|
export interface Certificate {
|
|
588
|
-
thumbprint?: string;
|
|
589
|
-
subject?: string;
|
|
590
|
-
issuer?: string;
|
|
591
|
-
notValidBefore?: Date;
|
|
592
|
-
notValidAfter?: Date;
|
|
593
|
-
body?: Uint8Array;
|
|
588
|
+
thumbprint?: string | undefined;
|
|
589
|
+
subject?: string | undefined;
|
|
590
|
+
issuer?: string | undefined;
|
|
591
|
+
notValidBefore?: Date | undefined;
|
|
592
|
+
notValidAfter?: Date | undefined;
|
|
593
|
+
body?: Uint8Array | undefined;
|
|
594
594
|
}
|
|
595
595
|
export interface GetTrustStoreCertificateResponse {
|
|
596
596
|
trustStoreArn: string | undefined;
|
|
597
|
-
certificate?: Certificate;
|
|
597
|
+
certificate?: Certificate | undefined;
|
|
598
598
|
}
|
|
599
599
|
export interface ListTrustStoreCertificatesRequest {
|
|
600
600
|
trustStoreArn: string | undefined;
|
|
601
|
-
nextToken?: string;
|
|
602
|
-
maxResults?: number;
|
|
601
|
+
nextToken?: string | undefined;
|
|
602
|
+
maxResults?: number | undefined;
|
|
603
603
|
}
|
|
604
604
|
export interface ListTrustStoreCertificatesResponse {
|
|
605
|
-
certificateList?: CertificateSummary[];
|
|
605
|
+
certificateList?: CertificateSummary[] | undefined;
|
|
606
606
|
trustStoreArn: string | undefined;
|
|
607
|
-
nextToken?: string;
|
|
607
|
+
nextToken?: string | undefined;
|
|
608
608
|
}
|
|
609
609
|
export interface ListTrustStoresRequest {
|
|
610
|
-
nextToken?: string;
|
|
611
|
-
maxResults?: number;
|
|
610
|
+
nextToken?: string | undefined;
|
|
611
|
+
maxResults?: number | undefined;
|
|
612
612
|
}
|
|
613
613
|
export interface TrustStoreSummary {
|
|
614
|
-
trustStoreArn?: string;
|
|
614
|
+
trustStoreArn?: string | undefined;
|
|
615
615
|
}
|
|
616
616
|
export interface ListTrustStoresResponse {
|
|
617
|
-
trustStores?: TrustStoreSummary[];
|
|
618
|
-
nextToken?: string;
|
|
617
|
+
trustStores?: TrustStoreSummary[] | undefined;
|
|
618
|
+
nextToken?: string | undefined;
|
|
619
619
|
}
|
|
620
620
|
export interface UpdateTrustStoreRequest {
|
|
621
621
|
trustStoreArn: string | undefined;
|
|
622
|
-
certificatesToAdd?: Uint8Array[];
|
|
623
|
-
certificatesToDelete?: string[];
|
|
624
|
-
clientToken?: string;
|
|
622
|
+
certificatesToAdd?: Uint8Array[] | undefined;
|
|
623
|
+
certificatesToDelete?: string[] | undefined;
|
|
624
|
+
clientToken?: string | undefined;
|
|
625
625
|
}
|
|
626
626
|
export interface UpdateTrustStoreResponse {
|
|
627
627
|
trustStoreArn: string | undefined;
|
|
@@ -633,8 +633,8 @@ export interface UntagResourceRequest {
|
|
|
633
633
|
export interface UntagResourceResponse {}
|
|
634
634
|
export interface CreateUserAccessLoggingSettingsRequest {
|
|
635
635
|
kinesisStreamArn: string | undefined;
|
|
636
|
-
tags?: Tag[];
|
|
637
|
-
clientToken?: string;
|
|
636
|
+
tags?: Tag[] | undefined;
|
|
637
|
+
clientToken?: string | undefined;
|
|
638
638
|
}
|
|
639
639
|
export interface CreateUserAccessLoggingSettingsResponse {
|
|
640
640
|
userAccessLoggingSettingsArn: string | undefined;
|
|
@@ -648,40 +648,40 @@ export interface GetUserAccessLoggingSettingsRequest {
|
|
|
648
648
|
}
|
|
649
649
|
export interface UserAccessLoggingSettings {
|
|
650
650
|
userAccessLoggingSettingsArn: string | undefined;
|
|
651
|
-
associatedPortalArns?: string[];
|
|
652
|
-
kinesisStreamArn?: string;
|
|
651
|
+
associatedPortalArns?: string[] | undefined;
|
|
652
|
+
kinesisStreamArn?: string | undefined;
|
|
653
653
|
}
|
|
654
654
|
export interface GetUserAccessLoggingSettingsResponse {
|
|
655
|
-
userAccessLoggingSettings?: UserAccessLoggingSettings;
|
|
655
|
+
userAccessLoggingSettings?: UserAccessLoggingSettings | undefined;
|
|
656
656
|
}
|
|
657
657
|
export interface ListUserAccessLoggingSettingsRequest {
|
|
658
|
-
nextToken?: string;
|
|
659
|
-
maxResults?: number;
|
|
658
|
+
nextToken?: string | undefined;
|
|
659
|
+
maxResults?: number | undefined;
|
|
660
660
|
}
|
|
661
661
|
export interface UserAccessLoggingSettingsSummary {
|
|
662
662
|
userAccessLoggingSettingsArn: string | undefined;
|
|
663
|
-
kinesisStreamArn?: string;
|
|
663
|
+
kinesisStreamArn?: string | undefined;
|
|
664
664
|
}
|
|
665
665
|
export interface ListUserAccessLoggingSettingsResponse {
|
|
666
|
-
userAccessLoggingSettings?: UserAccessLoggingSettingsSummary[];
|
|
667
|
-
nextToken?: string;
|
|
666
|
+
userAccessLoggingSettings?: UserAccessLoggingSettingsSummary[] | undefined;
|
|
667
|
+
nextToken?: string | undefined;
|
|
668
668
|
}
|
|
669
669
|
export interface UpdateUserAccessLoggingSettingsRequest {
|
|
670
670
|
userAccessLoggingSettingsArn: string | undefined;
|
|
671
|
-
kinesisStreamArn?: string;
|
|
672
|
-
clientToken?: string;
|
|
671
|
+
kinesisStreamArn?: string | undefined;
|
|
672
|
+
clientToken?: string | undefined;
|
|
673
673
|
}
|
|
674
674
|
export interface UpdateUserAccessLoggingSettingsResponse {
|
|
675
675
|
userAccessLoggingSettings: UserAccessLoggingSettings | undefined;
|
|
676
676
|
}
|
|
677
677
|
export interface CookieSpecification {
|
|
678
678
|
domain: string | undefined;
|
|
679
|
-
name?: string;
|
|
680
|
-
path?: string;
|
|
679
|
+
name?: string | undefined;
|
|
680
|
+
path?: string | undefined;
|
|
681
681
|
}
|
|
682
682
|
export interface CookieSynchronizationConfiguration {
|
|
683
683
|
allowlist: CookieSpecification[] | undefined;
|
|
684
|
-
blocklist?: CookieSpecification[];
|
|
684
|
+
blocklist?: CookieSpecification[] | undefined;
|
|
685
685
|
}
|
|
686
686
|
export declare const EnabledType: {
|
|
687
687
|
readonly DISABLED: "Disabled";
|
|
@@ -694,14 +694,16 @@ export interface CreateUserSettingsRequest {
|
|
|
694
694
|
downloadAllowed: EnabledType | undefined;
|
|
695
695
|
uploadAllowed: EnabledType | undefined;
|
|
696
696
|
printAllowed: EnabledType | undefined;
|
|
697
|
-
tags?: Tag[];
|
|
698
|
-
disconnectTimeoutInMinutes?: number;
|
|
699
|
-
idleDisconnectTimeoutInMinutes?: number;
|
|
700
|
-
clientToken?: string;
|
|
701
|
-
cookieSynchronizationConfiguration?:
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
697
|
+
tags?: Tag[] | undefined;
|
|
698
|
+
disconnectTimeoutInMinutes?: number | undefined;
|
|
699
|
+
idleDisconnectTimeoutInMinutes?: number | undefined;
|
|
700
|
+
clientToken?: string | undefined;
|
|
701
|
+
cookieSynchronizationConfiguration?:
|
|
702
|
+
| CookieSynchronizationConfiguration
|
|
703
|
+
| undefined;
|
|
704
|
+
customerManagedKey?: string | undefined;
|
|
705
|
+
additionalEncryptionContext?: Record<string, string> | undefined;
|
|
706
|
+
deepLinkAllowed?: EnabledType | undefined;
|
|
705
707
|
}
|
|
706
708
|
export interface CreateUserSettingsResponse {
|
|
707
709
|
userSettingsArn: string | undefined;
|
|
@@ -715,54 +717,60 @@ export interface GetUserSettingsRequest {
|
|
|
715
717
|
}
|
|
716
718
|
export interface UserSettings {
|
|
717
719
|
userSettingsArn: string | undefined;
|
|
718
|
-
associatedPortalArns?: string[];
|
|
719
|
-
copyAllowed?: EnabledType;
|
|
720
|
-
pasteAllowed?: EnabledType;
|
|
721
|
-
downloadAllowed?: EnabledType;
|
|
722
|
-
uploadAllowed?: EnabledType;
|
|
723
|
-
printAllowed?: EnabledType;
|
|
724
|
-
disconnectTimeoutInMinutes?: number;
|
|
725
|
-
idleDisconnectTimeoutInMinutes?: number;
|
|
726
|
-
cookieSynchronizationConfiguration?:
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
720
|
+
associatedPortalArns?: string[] | undefined;
|
|
721
|
+
copyAllowed?: EnabledType | undefined;
|
|
722
|
+
pasteAllowed?: EnabledType | undefined;
|
|
723
|
+
downloadAllowed?: EnabledType | undefined;
|
|
724
|
+
uploadAllowed?: EnabledType | undefined;
|
|
725
|
+
printAllowed?: EnabledType | undefined;
|
|
726
|
+
disconnectTimeoutInMinutes?: number | undefined;
|
|
727
|
+
idleDisconnectTimeoutInMinutes?: number | undefined;
|
|
728
|
+
cookieSynchronizationConfiguration?:
|
|
729
|
+
| CookieSynchronizationConfiguration
|
|
730
|
+
| undefined;
|
|
731
|
+
customerManagedKey?: string | undefined;
|
|
732
|
+
additionalEncryptionContext?: Record<string, string> | undefined;
|
|
733
|
+
deepLinkAllowed?: EnabledType | undefined;
|
|
730
734
|
}
|
|
731
735
|
export interface GetUserSettingsResponse {
|
|
732
|
-
userSettings?: UserSettings;
|
|
736
|
+
userSettings?: UserSettings | undefined;
|
|
733
737
|
}
|
|
734
738
|
export interface ListUserSettingsRequest {
|
|
735
|
-
nextToken?: string;
|
|
736
|
-
maxResults?: number;
|
|
739
|
+
nextToken?: string | undefined;
|
|
740
|
+
maxResults?: number | undefined;
|
|
737
741
|
}
|
|
738
742
|
export interface UserSettingsSummary {
|
|
739
743
|
userSettingsArn: string | undefined;
|
|
740
|
-
copyAllowed?: EnabledType;
|
|
741
|
-
pasteAllowed?: EnabledType;
|
|
742
|
-
downloadAllowed?: EnabledType;
|
|
743
|
-
uploadAllowed?: EnabledType;
|
|
744
|
-
printAllowed?: EnabledType;
|
|
745
|
-
disconnectTimeoutInMinutes?: number;
|
|
746
|
-
idleDisconnectTimeoutInMinutes?: number;
|
|
747
|
-
cookieSynchronizationConfiguration?:
|
|
748
|
-
|
|
744
|
+
copyAllowed?: EnabledType | undefined;
|
|
745
|
+
pasteAllowed?: EnabledType | undefined;
|
|
746
|
+
downloadAllowed?: EnabledType | undefined;
|
|
747
|
+
uploadAllowed?: EnabledType | undefined;
|
|
748
|
+
printAllowed?: EnabledType | undefined;
|
|
749
|
+
disconnectTimeoutInMinutes?: number | undefined;
|
|
750
|
+
idleDisconnectTimeoutInMinutes?: number | undefined;
|
|
751
|
+
cookieSynchronizationConfiguration?:
|
|
752
|
+
| CookieSynchronizationConfiguration
|
|
753
|
+
| undefined;
|
|
754
|
+
deepLinkAllowed?: EnabledType | undefined;
|
|
749
755
|
}
|
|
750
756
|
export interface ListUserSettingsResponse {
|
|
751
|
-
userSettings?: UserSettingsSummary[];
|
|
752
|
-
nextToken?: string;
|
|
757
|
+
userSettings?: UserSettingsSummary[] | undefined;
|
|
758
|
+
nextToken?: string | undefined;
|
|
753
759
|
}
|
|
754
760
|
export interface UpdateUserSettingsRequest {
|
|
755
761
|
userSettingsArn: string | undefined;
|
|
756
|
-
copyAllowed?: EnabledType;
|
|
757
|
-
pasteAllowed?: EnabledType;
|
|
758
|
-
downloadAllowed?: EnabledType;
|
|
759
|
-
uploadAllowed?: EnabledType;
|
|
760
|
-
printAllowed?: EnabledType;
|
|
761
|
-
disconnectTimeoutInMinutes?: number;
|
|
762
|
-
idleDisconnectTimeoutInMinutes?: number;
|
|
763
|
-
clientToken?: string;
|
|
764
|
-
cookieSynchronizationConfiguration?:
|
|
765
|
-
|
|
762
|
+
copyAllowed?: EnabledType | undefined;
|
|
763
|
+
pasteAllowed?: EnabledType | undefined;
|
|
764
|
+
downloadAllowed?: EnabledType | undefined;
|
|
765
|
+
uploadAllowed?: EnabledType | undefined;
|
|
766
|
+
printAllowed?: EnabledType | undefined;
|
|
767
|
+
disconnectTimeoutInMinutes?: number | undefined;
|
|
768
|
+
idleDisconnectTimeoutInMinutes?: number | undefined;
|
|
769
|
+
clientToken?: string | undefined;
|
|
770
|
+
cookieSynchronizationConfiguration?:
|
|
771
|
+
| CookieSynchronizationConfiguration
|
|
772
|
+
| undefined;
|
|
773
|
+
deepLinkAllowed?: EnabledType | undefined;
|
|
766
774
|
}
|
|
767
775
|
export interface UpdateUserSettingsResponse {
|
|
768
776
|
userSettings: UserSettings | undefined;
|