@aws-sdk/client-workspaces-web 3.379.1 → 3.382.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 +318 -0
- package/package.json +5 -5
|
@@ -17,10 +17,12 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
17
17
|
*/
|
|
18
18
|
export interface AssociateBrowserSettingsRequest {
|
|
19
19
|
/**
|
|
20
|
+
* @public
|
|
20
21
|
* <p>The ARN of the web portal.</p>
|
|
21
22
|
*/
|
|
22
23
|
portalArn: string | undefined;
|
|
23
24
|
/**
|
|
25
|
+
* @public
|
|
24
26
|
* <p>The ARN of the browser settings.</p>
|
|
25
27
|
*/
|
|
26
28
|
browserSettingsArn: string | undefined;
|
|
@@ -30,10 +32,12 @@ export interface AssociateBrowserSettingsRequest {
|
|
|
30
32
|
*/
|
|
31
33
|
export interface AssociateBrowserSettingsResponse {
|
|
32
34
|
/**
|
|
35
|
+
* @public
|
|
33
36
|
* <p>The ARN of the web portal.</p>
|
|
34
37
|
*/
|
|
35
38
|
portalArn: string | undefined;
|
|
36
39
|
/**
|
|
40
|
+
* @public
|
|
37
41
|
* <p>The ARN of the browser settings.</p>
|
|
38
42
|
*/
|
|
39
43
|
browserSettingsArn: string | undefined;
|
|
@@ -46,10 +50,12 @@ export declare class ConflictException extends __BaseException {
|
|
|
46
50
|
readonly name: "ConflictException";
|
|
47
51
|
readonly $fault: "client";
|
|
48
52
|
/**
|
|
53
|
+
* @public
|
|
49
54
|
* <p>Identifier of the resource affected.</p>
|
|
50
55
|
*/
|
|
51
56
|
resourceId?: string;
|
|
52
57
|
/**
|
|
58
|
+
* @public
|
|
53
59
|
* <p>Type of the resource affected.</p>
|
|
54
60
|
*/
|
|
55
61
|
resourceType?: string;
|
|
@@ -66,6 +72,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
66
72
|
readonly name: "InternalServerException";
|
|
67
73
|
readonly $fault: "server";
|
|
68
74
|
/**
|
|
75
|
+
* @public
|
|
69
76
|
* <p>Advice to clients on when the call can be safely retried.</p>
|
|
70
77
|
*/
|
|
71
78
|
retryAfterSeconds?: number;
|
|
@@ -82,10 +89,12 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
82
89
|
readonly name: "ResourceNotFoundException";
|
|
83
90
|
readonly $fault: "client";
|
|
84
91
|
/**
|
|
92
|
+
* @public
|
|
85
93
|
* <p>Hypothetical identifier of the resource affected.</p>
|
|
86
94
|
*/
|
|
87
95
|
resourceId?: string;
|
|
88
96
|
/**
|
|
97
|
+
* @public
|
|
89
98
|
* <p>Hypothetical type of the resource affected.</p>
|
|
90
99
|
*/
|
|
91
100
|
resourceType?: string;
|
|
@@ -102,14 +111,17 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
102
111
|
readonly name: "ThrottlingException";
|
|
103
112
|
readonly $fault: "client";
|
|
104
113
|
/**
|
|
114
|
+
* @public
|
|
105
115
|
* <p>The originating service.</p>
|
|
106
116
|
*/
|
|
107
117
|
serviceCode?: string;
|
|
108
118
|
/**
|
|
119
|
+
* @public
|
|
109
120
|
* <p>The originating quota.</p>
|
|
110
121
|
*/
|
|
111
122
|
quotaCode?: string;
|
|
112
123
|
/**
|
|
124
|
+
* @public
|
|
113
125
|
* <p>Advice to clients on when the call can be safely retried.</p>
|
|
114
126
|
*/
|
|
115
127
|
retryAfterSeconds?: number;
|
|
@@ -124,10 +136,12 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
124
136
|
*/
|
|
125
137
|
export interface ValidationExceptionField {
|
|
126
138
|
/**
|
|
139
|
+
* @public
|
|
127
140
|
* <p>The name of the field that failed validation.</p>
|
|
128
141
|
*/
|
|
129
142
|
name: string | undefined;
|
|
130
143
|
/**
|
|
144
|
+
* @public
|
|
131
145
|
* <p>The message describing why the field failed validation.</p>
|
|
132
146
|
*/
|
|
133
147
|
message: string | undefined;
|
|
@@ -154,10 +168,12 @@ export declare class ValidationException extends __BaseException {
|
|
|
154
168
|
readonly name: "ValidationException";
|
|
155
169
|
readonly $fault: "client";
|
|
156
170
|
/**
|
|
171
|
+
* @public
|
|
157
172
|
* <p>Reason the request failed validation</p>
|
|
158
173
|
*/
|
|
159
174
|
reason?: ValidationExceptionReason | string;
|
|
160
175
|
/**
|
|
176
|
+
* @public
|
|
161
177
|
* <p>The field that caused the error.</p>
|
|
162
178
|
*/
|
|
163
179
|
fieldList?: ValidationExceptionField[];
|
|
@@ -171,10 +187,12 @@ export declare class ValidationException extends __BaseException {
|
|
|
171
187
|
*/
|
|
172
188
|
export interface AssociateIpAccessSettingsRequest {
|
|
173
189
|
/**
|
|
190
|
+
* @public
|
|
174
191
|
* <p>The ARN of the web portal.</p>
|
|
175
192
|
*/
|
|
176
193
|
portalArn: string | undefined;
|
|
177
194
|
/**
|
|
195
|
+
* @public
|
|
178
196
|
* <p>The ARN of the IP access settings.</p>
|
|
179
197
|
*/
|
|
180
198
|
ipAccessSettingsArn: string | undefined;
|
|
@@ -184,10 +202,12 @@ export interface AssociateIpAccessSettingsRequest {
|
|
|
184
202
|
*/
|
|
185
203
|
export interface AssociateIpAccessSettingsResponse {
|
|
186
204
|
/**
|
|
205
|
+
* @public
|
|
187
206
|
* <p>The ARN of the web portal.</p>
|
|
188
207
|
*/
|
|
189
208
|
portalArn: string | undefined;
|
|
190
209
|
/**
|
|
210
|
+
* @public
|
|
191
211
|
* <p>The ARN of the IP access settings resource.</p>
|
|
192
212
|
*/
|
|
193
213
|
ipAccessSettingsArn: string | undefined;
|
|
@@ -197,10 +217,12 @@ export interface AssociateIpAccessSettingsResponse {
|
|
|
197
217
|
*/
|
|
198
218
|
export interface AssociateNetworkSettingsRequest {
|
|
199
219
|
/**
|
|
220
|
+
* @public
|
|
200
221
|
* <p>The ARN of the web portal.</p>
|
|
201
222
|
*/
|
|
202
223
|
portalArn: string | undefined;
|
|
203
224
|
/**
|
|
225
|
+
* @public
|
|
204
226
|
* <p>The ARN of the network settings.</p>
|
|
205
227
|
*/
|
|
206
228
|
networkSettingsArn: string | undefined;
|
|
@@ -210,10 +232,12 @@ export interface AssociateNetworkSettingsRequest {
|
|
|
210
232
|
*/
|
|
211
233
|
export interface AssociateNetworkSettingsResponse {
|
|
212
234
|
/**
|
|
235
|
+
* @public
|
|
213
236
|
* <p>The ARN of the web portal.</p>
|
|
214
237
|
*/
|
|
215
238
|
portalArn: string | undefined;
|
|
216
239
|
/**
|
|
240
|
+
* @public
|
|
217
241
|
* <p>The ARN of the network settings.</p>
|
|
218
242
|
*/
|
|
219
243
|
networkSettingsArn: string | undefined;
|
|
@@ -223,10 +247,12 @@ export interface AssociateNetworkSettingsResponse {
|
|
|
223
247
|
*/
|
|
224
248
|
export interface AssociateTrustStoreRequest {
|
|
225
249
|
/**
|
|
250
|
+
* @public
|
|
226
251
|
* <p>The ARN of the web portal.</p>
|
|
227
252
|
*/
|
|
228
253
|
portalArn: string | undefined;
|
|
229
254
|
/**
|
|
255
|
+
* @public
|
|
230
256
|
* <p>The ARN of the trust store.</p>
|
|
231
257
|
*/
|
|
232
258
|
trustStoreArn: string | undefined;
|
|
@@ -236,10 +262,12 @@ export interface AssociateTrustStoreRequest {
|
|
|
236
262
|
*/
|
|
237
263
|
export interface AssociateTrustStoreResponse {
|
|
238
264
|
/**
|
|
265
|
+
* @public
|
|
239
266
|
* <p>The ARN of the web portal.</p>
|
|
240
267
|
*/
|
|
241
268
|
portalArn: string | undefined;
|
|
242
269
|
/**
|
|
270
|
+
* @public
|
|
243
271
|
* <p>The ARN of the trust store.</p>
|
|
244
272
|
*/
|
|
245
273
|
trustStoreArn: string | undefined;
|
|
@@ -249,10 +277,12 @@ export interface AssociateTrustStoreResponse {
|
|
|
249
277
|
*/
|
|
250
278
|
export interface AssociateUserAccessLoggingSettingsRequest {
|
|
251
279
|
/**
|
|
280
|
+
* @public
|
|
252
281
|
* <p>The ARN of the web portal.</p>
|
|
253
282
|
*/
|
|
254
283
|
portalArn: string | undefined;
|
|
255
284
|
/**
|
|
285
|
+
* @public
|
|
256
286
|
* <p>The ARN of the user access logging settings.</p>
|
|
257
287
|
*/
|
|
258
288
|
userAccessLoggingSettingsArn: string | undefined;
|
|
@@ -262,10 +292,12 @@ export interface AssociateUserAccessLoggingSettingsRequest {
|
|
|
262
292
|
*/
|
|
263
293
|
export interface AssociateUserAccessLoggingSettingsResponse {
|
|
264
294
|
/**
|
|
295
|
+
* @public
|
|
265
296
|
* <p>The ARN of the web portal.</p>
|
|
266
297
|
*/
|
|
267
298
|
portalArn: string | undefined;
|
|
268
299
|
/**
|
|
300
|
+
* @public
|
|
269
301
|
* <p>The ARN of the user access logging settings.</p>
|
|
270
302
|
*/
|
|
271
303
|
userAccessLoggingSettingsArn: string | undefined;
|
|
@@ -275,10 +307,12 @@ export interface AssociateUserAccessLoggingSettingsResponse {
|
|
|
275
307
|
*/
|
|
276
308
|
export interface AssociateUserSettingsRequest {
|
|
277
309
|
/**
|
|
310
|
+
* @public
|
|
278
311
|
* <p>The ARN of the web portal.</p>
|
|
279
312
|
*/
|
|
280
313
|
portalArn: string | undefined;
|
|
281
314
|
/**
|
|
315
|
+
* @public
|
|
282
316
|
* <p>The ARN of the user settings.</p>
|
|
283
317
|
*/
|
|
284
318
|
userSettingsArn: string | undefined;
|
|
@@ -288,10 +322,12 @@ export interface AssociateUserSettingsRequest {
|
|
|
288
322
|
*/
|
|
289
323
|
export interface AssociateUserSettingsResponse {
|
|
290
324
|
/**
|
|
325
|
+
* @public
|
|
291
326
|
* <p>The ARN of the web portal.</p>
|
|
292
327
|
*/
|
|
293
328
|
portalArn: string | undefined;
|
|
294
329
|
/**
|
|
330
|
+
* @public
|
|
295
331
|
* <p>The ARN of the user settings.</p>
|
|
296
332
|
*/
|
|
297
333
|
userSettingsArn: string | undefined;
|
|
@@ -314,10 +350,12 @@ export type AuthenticationType = (typeof AuthenticationType)[keyof typeof Authen
|
|
|
314
350
|
*/
|
|
315
351
|
export interface Tag {
|
|
316
352
|
/**
|
|
353
|
+
* @public
|
|
317
354
|
* <p>The key of the tag.</p>
|
|
318
355
|
*/
|
|
319
356
|
Key: string | undefined;
|
|
320
357
|
/**
|
|
358
|
+
* @public
|
|
321
359
|
* <p>The value of the tag</p>
|
|
322
360
|
*/
|
|
323
361
|
Value: string | undefined;
|
|
@@ -327,23 +365,28 @@ export interface Tag {
|
|
|
327
365
|
*/
|
|
328
366
|
export interface CreateBrowserSettingsRequest {
|
|
329
367
|
/**
|
|
368
|
+
* @public
|
|
330
369
|
* <p>The tags to add to the browser settings resource. A tag is a key-value pair.</p>
|
|
331
370
|
*/
|
|
332
371
|
tags?: Tag[];
|
|
333
372
|
/**
|
|
373
|
+
* @public
|
|
334
374
|
* <p>The custom managed key of the browser settings.</p>
|
|
335
375
|
*/
|
|
336
376
|
customerManagedKey?: string;
|
|
337
377
|
/**
|
|
378
|
+
* @public
|
|
338
379
|
* <p>Additional encryption context of the browser settings.</p>
|
|
339
380
|
*/
|
|
340
381
|
additionalEncryptionContext?: Record<string, string>;
|
|
341
382
|
/**
|
|
383
|
+
* @public
|
|
342
384
|
* <p>A JSON string containing Chrome Enterprise policies that will be applied to all
|
|
343
385
|
* streaming sessions.</p>
|
|
344
386
|
*/
|
|
345
387
|
browserPolicy: string | undefined;
|
|
346
388
|
/**
|
|
389
|
+
* @public
|
|
347
390
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
348
391
|
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
349
392
|
* request, if the original request completes successfully, subsequent retries with the same
|
|
@@ -357,6 +400,7 @@ export interface CreateBrowserSettingsRequest {
|
|
|
357
400
|
*/
|
|
358
401
|
export interface CreateBrowserSettingsResponse {
|
|
359
402
|
/**
|
|
403
|
+
* @public
|
|
360
404
|
* <p>The ARN of the browser settings.</p>
|
|
361
405
|
*/
|
|
362
406
|
browserSettingsArn: string | undefined;
|
|
@@ -369,18 +413,22 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
369
413
|
readonly name: "ServiceQuotaExceededException";
|
|
370
414
|
readonly $fault: "client";
|
|
371
415
|
/**
|
|
416
|
+
* @public
|
|
372
417
|
* <p>Identifier of the resource affected.</p>
|
|
373
418
|
*/
|
|
374
419
|
resourceId?: string;
|
|
375
420
|
/**
|
|
421
|
+
* @public
|
|
376
422
|
* <p> Type of the resource affected.</p>
|
|
377
423
|
*/
|
|
378
424
|
resourceType?: string;
|
|
379
425
|
/**
|
|
426
|
+
* @public
|
|
380
427
|
* <p>The originating service.</p>
|
|
381
428
|
*/
|
|
382
429
|
serviceCode?: string;
|
|
383
430
|
/**
|
|
431
|
+
* @public
|
|
384
432
|
* <p>The originating quota.</p>
|
|
385
433
|
*/
|
|
386
434
|
quotaCode?: string;
|
|
@@ -410,18 +458,22 @@ export type IdentityProviderType = (typeof IdentityProviderType)[keyof typeof Id
|
|
|
410
458
|
*/
|
|
411
459
|
export interface CreateIdentityProviderRequest {
|
|
412
460
|
/**
|
|
461
|
+
* @public
|
|
413
462
|
* <p>The ARN of the web portal.</p>
|
|
414
463
|
*/
|
|
415
464
|
portalArn: string | undefined;
|
|
416
465
|
/**
|
|
466
|
+
* @public
|
|
417
467
|
* <p>The identity provider name.</p>
|
|
418
468
|
*/
|
|
419
469
|
identityProviderName: string | undefined;
|
|
420
470
|
/**
|
|
471
|
+
* @public
|
|
421
472
|
* <p>The identity provider type.</p>
|
|
422
473
|
*/
|
|
423
474
|
identityProviderType: IdentityProviderType | string | undefined;
|
|
424
475
|
/**
|
|
476
|
+
* @public
|
|
425
477
|
* <p>The identity provider details. The following list describes the provider detail keys for
|
|
426
478
|
* each identity provider type. </p>
|
|
427
479
|
* <ul>
|
|
@@ -578,6 +630,7 @@ export interface CreateIdentityProviderRequest {
|
|
|
578
630
|
*/
|
|
579
631
|
identityProviderDetails: Record<string, string> | undefined;
|
|
580
632
|
/**
|
|
633
|
+
* @public
|
|
581
634
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
582
635
|
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
583
636
|
* request, if the original request completes successfully, subsequent retries with the same
|
|
@@ -592,6 +645,7 @@ export interface CreateIdentityProviderRequest {
|
|
|
592
645
|
*/
|
|
593
646
|
export interface CreateIdentityProviderResponse {
|
|
594
647
|
/**
|
|
648
|
+
* @public
|
|
595
649
|
* <p>The ARN of the identity provider.</p>
|
|
596
650
|
*/
|
|
597
651
|
identityProviderArn: string | undefined;
|
|
@@ -602,10 +656,12 @@ export interface CreateIdentityProviderResponse {
|
|
|
602
656
|
*/
|
|
603
657
|
export interface IpRule {
|
|
604
658
|
/**
|
|
659
|
+
* @public
|
|
605
660
|
* <p>The IP range of the IP rule.</p>
|
|
606
661
|
*/
|
|
607
662
|
ipRange: string | undefined;
|
|
608
663
|
/**
|
|
664
|
+
* @public
|
|
609
665
|
* <p>The description of the IP rule.</p>
|
|
610
666
|
*/
|
|
611
667
|
description?: string;
|
|
@@ -615,30 +671,37 @@ export interface IpRule {
|
|
|
615
671
|
*/
|
|
616
672
|
export interface CreateIpAccessSettingsRequest {
|
|
617
673
|
/**
|
|
674
|
+
* @public
|
|
618
675
|
* <p>The display name of the IP access settings.</p>
|
|
619
676
|
*/
|
|
620
677
|
displayName?: string;
|
|
621
678
|
/**
|
|
679
|
+
* @public
|
|
622
680
|
* <p>The description of the IP access settings.</p>
|
|
623
681
|
*/
|
|
624
682
|
description?: string;
|
|
625
683
|
/**
|
|
684
|
+
* @public
|
|
626
685
|
* <p>The tags to add to the browser settings resource. A tag is a key-value pair.</p>
|
|
627
686
|
*/
|
|
628
687
|
tags?: Tag[];
|
|
629
688
|
/**
|
|
689
|
+
* @public
|
|
630
690
|
* <p>The custom managed key of the IP access settings.</p>
|
|
631
691
|
*/
|
|
632
692
|
customerManagedKey?: string;
|
|
633
693
|
/**
|
|
694
|
+
* @public
|
|
634
695
|
* <p>Additional encryption context of the IP access settings.</p>
|
|
635
696
|
*/
|
|
636
697
|
additionalEncryptionContext?: Record<string, string>;
|
|
637
698
|
/**
|
|
699
|
+
* @public
|
|
638
700
|
* <p>The IP rules of the IP access settings.</p>
|
|
639
701
|
*/
|
|
640
702
|
ipRules: IpRule[] | undefined;
|
|
641
703
|
/**
|
|
704
|
+
* @public
|
|
642
705
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
643
706
|
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
644
707
|
* request, if the original request completes successfully, subsequent retries with the same
|
|
@@ -653,6 +716,7 @@ export interface CreateIpAccessSettingsRequest {
|
|
|
653
716
|
*/
|
|
654
717
|
export interface CreateIpAccessSettingsResponse {
|
|
655
718
|
/**
|
|
719
|
+
* @public
|
|
656
720
|
* <p>The ARN of the IP access settings resource.</p>
|
|
657
721
|
*/
|
|
658
722
|
ipAccessSettingsArn: string | undefined;
|
|
@@ -662,22 +726,27 @@ export interface CreateIpAccessSettingsResponse {
|
|
|
662
726
|
*/
|
|
663
727
|
export interface CreateNetworkSettingsRequest {
|
|
664
728
|
/**
|
|
729
|
+
* @public
|
|
665
730
|
* <p>The VPC that streaming instances will connect to.</p>
|
|
666
731
|
*/
|
|
667
732
|
vpcId: string | undefined;
|
|
668
733
|
/**
|
|
734
|
+
* @public
|
|
669
735
|
* <p>The subnets in which network interfaces are created to connect streaming instances to your VPC. At least two of these subnets must be in different availability zones.</p>
|
|
670
736
|
*/
|
|
671
737
|
subnetIds: string[] | undefined;
|
|
672
738
|
/**
|
|
739
|
+
* @public
|
|
673
740
|
* <p>One or more security groups used to control access from streaming instances to your VPC.</p>
|
|
674
741
|
*/
|
|
675
742
|
securityGroupIds: string[] | undefined;
|
|
676
743
|
/**
|
|
744
|
+
* @public
|
|
677
745
|
* <p>The tags to add to the network settings resource. A tag is a key-value pair.</p>
|
|
678
746
|
*/
|
|
679
747
|
tags?: Tag[];
|
|
680
748
|
/**
|
|
749
|
+
* @public
|
|
681
750
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
682
751
|
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
683
752
|
* request, if the original request completes successfully, subsequent retries with the same
|
|
@@ -692,6 +761,7 @@ export interface CreateNetworkSettingsRequest {
|
|
|
692
761
|
*/
|
|
693
762
|
export interface CreateNetworkSettingsResponse {
|
|
694
763
|
/**
|
|
764
|
+
* @public
|
|
695
765
|
* <p>The ARN of the network settings.</p>
|
|
696
766
|
*/
|
|
697
767
|
networkSettingsArn: string | undefined;
|
|
@@ -701,22 +771,27 @@ export interface CreateNetworkSettingsResponse {
|
|
|
701
771
|
*/
|
|
702
772
|
export interface CreatePortalRequest {
|
|
703
773
|
/**
|
|
774
|
+
* @public
|
|
704
775
|
* <p>The name of the web portal. This is not visible to users who log into the web portal.</p>
|
|
705
776
|
*/
|
|
706
777
|
displayName?: string;
|
|
707
778
|
/**
|
|
779
|
+
* @public
|
|
708
780
|
* <p>The tags to add to the web portal. A tag is a key-value pair.</p>
|
|
709
781
|
*/
|
|
710
782
|
tags?: Tag[];
|
|
711
783
|
/**
|
|
784
|
+
* @public
|
|
712
785
|
* <p>The customer managed key of the web portal.</p>
|
|
713
786
|
*/
|
|
714
787
|
customerManagedKey?: string;
|
|
715
788
|
/**
|
|
789
|
+
* @public
|
|
716
790
|
* <p>The additional encryption context of the portal.</p>
|
|
717
791
|
*/
|
|
718
792
|
additionalEncryptionContext?: Record<string, string>;
|
|
719
793
|
/**
|
|
794
|
+
* @public
|
|
720
795
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
721
796
|
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
722
797
|
* request, if the original request completes successfully, subsequent retries with the same
|
|
@@ -726,6 +801,7 @@ export interface CreatePortalRequest {
|
|
|
726
801
|
*/
|
|
727
802
|
clientToken?: string;
|
|
728
803
|
/**
|
|
804
|
+
* @public
|
|
729
805
|
* <p>The type of authentication integration points used when signing into the web portal.
|
|
730
806
|
* Defaults to <code>Standard</code>.</p>
|
|
731
807
|
* <p>
|
|
@@ -747,10 +823,12 @@ export interface CreatePortalRequest {
|
|
|
747
823
|
*/
|
|
748
824
|
export interface CreatePortalResponse {
|
|
749
825
|
/**
|
|
826
|
+
* @public
|
|
750
827
|
* <p>The ARN of the web portal.</p>
|
|
751
828
|
*/
|
|
752
829
|
portalArn: string | undefined;
|
|
753
830
|
/**
|
|
831
|
+
* @public
|
|
754
832
|
* <p>The endpoint URL of the web portal that users access in order to start streaming sessions.</p>
|
|
755
833
|
*/
|
|
756
834
|
portalEndpoint: string | undefined;
|
|
@@ -760,14 +838,17 @@ export interface CreatePortalResponse {
|
|
|
760
838
|
*/
|
|
761
839
|
export interface CreateTrustStoreRequest {
|
|
762
840
|
/**
|
|
841
|
+
* @public
|
|
763
842
|
* <p>A list of CA certificates to be added to the trust store.</p>
|
|
764
843
|
*/
|
|
765
844
|
certificateList: Uint8Array[] | undefined;
|
|
766
845
|
/**
|
|
846
|
+
* @public
|
|
767
847
|
* <p>The tags to add to the trust store. A tag is a key-value pair.</p>
|
|
768
848
|
*/
|
|
769
849
|
tags?: Tag[];
|
|
770
850
|
/**
|
|
851
|
+
* @public
|
|
771
852
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
772
853
|
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
773
854
|
* request, if the original request completes successfully, subsequent retries with the same
|
|
@@ -782,6 +863,7 @@ export interface CreateTrustStoreRequest {
|
|
|
782
863
|
*/
|
|
783
864
|
export interface CreateTrustStoreResponse {
|
|
784
865
|
/**
|
|
866
|
+
* @public
|
|
785
867
|
* <p>The ARN of the trust store.</p>
|
|
786
868
|
*/
|
|
787
869
|
trustStoreArn: string | undefined;
|
|
@@ -791,14 +873,17 @@ export interface CreateTrustStoreResponse {
|
|
|
791
873
|
*/
|
|
792
874
|
export interface CreateUserAccessLoggingSettingsRequest {
|
|
793
875
|
/**
|
|
876
|
+
* @public
|
|
794
877
|
* <p>The ARN of the Kinesis stream.</p>
|
|
795
878
|
*/
|
|
796
879
|
kinesisStreamArn: string | undefined;
|
|
797
880
|
/**
|
|
881
|
+
* @public
|
|
798
882
|
* <p>The tags to add to the user settings resource. A tag is a key-value pair.</p>
|
|
799
883
|
*/
|
|
800
884
|
tags?: Tag[];
|
|
801
885
|
/**
|
|
886
|
+
* @public
|
|
802
887
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
803
888
|
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
804
889
|
* request, if the original request completes successfully, subsequent retries with the same
|
|
@@ -813,6 +898,7 @@ export interface CreateUserAccessLoggingSettingsRequest {
|
|
|
813
898
|
*/
|
|
814
899
|
export interface CreateUserAccessLoggingSettingsResponse {
|
|
815
900
|
/**
|
|
901
|
+
* @public
|
|
816
902
|
* <p>The ARN of the user access logging settings.</p>
|
|
817
903
|
*/
|
|
818
904
|
userAccessLoggingSettingsArn: string | undefined;
|
|
@@ -834,42 +920,51 @@ export type EnabledType = (typeof EnabledType)[keyof typeof EnabledType];
|
|
|
834
920
|
*/
|
|
835
921
|
export interface CreateUserSettingsRequest {
|
|
836
922
|
/**
|
|
923
|
+
* @public
|
|
837
924
|
* <p>Specifies whether the user can copy text from the streaming session to the local
|
|
838
925
|
* device.</p>
|
|
839
926
|
*/
|
|
840
927
|
copyAllowed: EnabledType | string | undefined;
|
|
841
928
|
/**
|
|
929
|
+
* @public
|
|
842
930
|
* <p>Specifies whether the user can paste text from the local device to the streaming
|
|
843
931
|
* session.</p>
|
|
844
932
|
*/
|
|
845
933
|
pasteAllowed: EnabledType | string | undefined;
|
|
846
934
|
/**
|
|
935
|
+
* @public
|
|
847
936
|
* <p>Specifies whether the user can download files from the streaming session to the local
|
|
848
937
|
* device.</p>
|
|
849
938
|
*/
|
|
850
939
|
downloadAllowed: EnabledType | string | undefined;
|
|
851
940
|
/**
|
|
941
|
+
* @public
|
|
852
942
|
* <p>Specifies whether the user can upload files from the local device to the streaming
|
|
853
943
|
* session.</p>
|
|
854
944
|
*/
|
|
855
945
|
uploadAllowed: EnabledType | string | undefined;
|
|
856
946
|
/**
|
|
947
|
+
* @public
|
|
857
948
|
* <p>Specifies whether the user can print to the local device.</p>
|
|
858
949
|
*/
|
|
859
950
|
printAllowed: EnabledType | string | undefined;
|
|
860
951
|
/**
|
|
952
|
+
* @public
|
|
861
953
|
* <p>The tags to add to the user settings resource. A tag is a key-value pair.</p>
|
|
862
954
|
*/
|
|
863
955
|
tags?: Tag[];
|
|
864
956
|
/**
|
|
957
|
+
* @public
|
|
865
958
|
* <p>The amount of time that a streaming session remains active after users disconnect.</p>
|
|
866
959
|
*/
|
|
867
960
|
disconnectTimeoutInMinutes?: number;
|
|
868
961
|
/**
|
|
962
|
+
* @public
|
|
869
963
|
* <p>The amount of time that users can be idle (inactive) before they are disconnected from their streaming session and the disconnect timeout interval begins.</p>
|
|
870
964
|
*/
|
|
871
965
|
idleDisconnectTimeoutInMinutes?: number;
|
|
872
966
|
/**
|
|
967
|
+
* @public
|
|
873
968
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
874
969
|
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
875
970
|
* request, if the original request completes successfully, subsequent retries with the same
|
|
@@ -884,6 +979,7 @@ export interface CreateUserSettingsRequest {
|
|
|
884
979
|
*/
|
|
885
980
|
export interface CreateUserSettingsResponse {
|
|
886
981
|
/**
|
|
982
|
+
* @public
|
|
887
983
|
* <p>The ARN of the user settings.</p>
|
|
888
984
|
*/
|
|
889
985
|
userSettingsArn: string | undefined;
|
|
@@ -893,6 +989,7 @@ export interface CreateUserSettingsResponse {
|
|
|
893
989
|
*/
|
|
894
990
|
export interface DeleteBrowserSettingsRequest {
|
|
895
991
|
/**
|
|
992
|
+
* @public
|
|
896
993
|
* <p>The ARN of the browser settings.</p>
|
|
897
994
|
*/
|
|
898
995
|
browserSettingsArn: string | undefined;
|
|
@@ -907,6 +1004,7 @@ export interface DeleteBrowserSettingsResponse {
|
|
|
907
1004
|
*/
|
|
908
1005
|
export interface DeleteIdentityProviderRequest {
|
|
909
1006
|
/**
|
|
1007
|
+
* @public
|
|
910
1008
|
* <p>The ARN of the identity provider.</p>
|
|
911
1009
|
*/
|
|
912
1010
|
identityProviderArn: string | undefined;
|
|
@@ -921,6 +1019,7 @@ export interface DeleteIdentityProviderResponse {
|
|
|
921
1019
|
*/
|
|
922
1020
|
export interface DeleteIpAccessSettingsRequest {
|
|
923
1021
|
/**
|
|
1022
|
+
* @public
|
|
924
1023
|
* <p>The ARN of the IP access settings.</p>
|
|
925
1024
|
*/
|
|
926
1025
|
ipAccessSettingsArn: string | undefined;
|
|
@@ -935,6 +1034,7 @@ export interface DeleteIpAccessSettingsResponse {
|
|
|
935
1034
|
*/
|
|
936
1035
|
export interface DeleteNetworkSettingsRequest {
|
|
937
1036
|
/**
|
|
1037
|
+
* @public
|
|
938
1038
|
* <p>The ARN of the network settings.</p>
|
|
939
1039
|
*/
|
|
940
1040
|
networkSettingsArn: string | undefined;
|
|
@@ -949,6 +1049,7 @@ export interface DeleteNetworkSettingsResponse {
|
|
|
949
1049
|
*/
|
|
950
1050
|
export interface DeletePortalRequest {
|
|
951
1051
|
/**
|
|
1052
|
+
* @public
|
|
952
1053
|
* <p>The ARN of the web portal.</p>
|
|
953
1054
|
*/
|
|
954
1055
|
portalArn: string | undefined;
|
|
@@ -963,6 +1064,7 @@ export interface DeletePortalResponse {
|
|
|
963
1064
|
*/
|
|
964
1065
|
export interface DeleteTrustStoreRequest {
|
|
965
1066
|
/**
|
|
1067
|
+
* @public
|
|
966
1068
|
* <p>The ARN of the trust store.</p>
|
|
967
1069
|
*/
|
|
968
1070
|
trustStoreArn: string | undefined;
|
|
@@ -977,6 +1079,7 @@ export interface DeleteTrustStoreResponse {
|
|
|
977
1079
|
*/
|
|
978
1080
|
export interface DeleteUserAccessLoggingSettingsRequest {
|
|
979
1081
|
/**
|
|
1082
|
+
* @public
|
|
980
1083
|
* <p>The ARN of the user access logging settings.</p>
|
|
981
1084
|
*/
|
|
982
1085
|
userAccessLoggingSettingsArn: string | undefined;
|
|
@@ -991,6 +1094,7 @@ export interface DeleteUserAccessLoggingSettingsResponse {
|
|
|
991
1094
|
*/
|
|
992
1095
|
export interface DeleteUserSettingsRequest {
|
|
993
1096
|
/**
|
|
1097
|
+
* @public
|
|
994
1098
|
* <p>The ARN of the user settings.</p>
|
|
995
1099
|
*/
|
|
996
1100
|
userSettingsArn: string | undefined;
|
|
@@ -1005,6 +1109,7 @@ export interface DeleteUserSettingsResponse {
|
|
|
1005
1109
|
*/
|
|
1006
1110
|
export interface DisassociateBrowserSettingsRequest {
|
|
1007
1111
|
/**
|
|
1112
|
+
* @public
|
|
1008
1113
|
* <p>The ARN of the web portal.</p>
|
|
1009
1114
|
*/
|
|
1010
1115
|
portalArn: string | undefined;
|
|
@@ -1019,6 +1124,7 @@ export interface DisassociateBrowserSettingsResponse {
|
|
|
1019
1124
|
*/
|
|
1020
1125
|
export interface DisassociateIpAccessSettingsRequest {
|
|
1021
1126
|
/**
|
|
1127
|
+
* @public
|
|
1022
1128
|
* <p>The ARN of the web portal.</p>
|
|
1023
1129
|
*/
|
|
1024
1130
|
portalArn: string | undefined;
|
|
@@ -1033,6 +1139,7 @@ export interface DisassociateIpAccessSettingsResponse {
|
|
|
1033
1139
|
*/
|
|
1034
1140
|
export interface DisassociateNetworkSettingsRequest {
|
|
1035
1141
|
/**
|
|
1142
|
+
* @public
|
|
1036
1143
|
* <p>The ARN of the web portal.</p>
|
|
1037
1144
|
*/
|
|
1038
1145
|
portalArn: string | undefined;
|
|
@@ -1047,6 +1154,7 @@ export interface DisassociateNetworkSettingsResponse {
|
|
|
1047
1154
|
*/
|
|
1048
1155
|
export interface DisassociateTrustStoreRequest {
|
|
1049
1156
|
/**
|
|
1157
|
+
* @public
|
|
1050
1158
|
* <p>The ARN of the web portal.</p>
|
|
1051
1159
|
*/
|
|
1052
1160
|
portalArn: string | undefined;
|
|
@@ -1061,6 +1169,7 @@ export interface DisassociateTrustStoreResponse {
|
|
|
1061
1169
|
*/
|
|
1062
1170
|
export interface DisassociateUserAccessLoggingSettingsRequest {
|
|
1063
1171
|
/**
|
|
1172
|
+
* @public
|
|
1064
1173
|
* <p>The ARN of the web portal.</p>
|
|
1065
1174
|
*/
|
|
1066
1175
|
portalArn: string | undefined;
|
|
@@ -1075,6 +1184,7 @@ export interface DisassociateUserAccessLoggingSettingsResponse {
|
|
|
1075
1184
|
*/
|
|
1076
1185
|
export interface DisassociateUserSettingsRequest {
|
|
1077
1186
|
/**
|
|
1187
|
+
* @public
|
|
1078
1188
|
* <p>The ARN of the web portal.</p>
|
|
1079
1189
|
*/
|
|
1080
1190
|
portalArn: string | undefined;
|
|
@@ -1089,6 +1199,7 @@ export interface DisassociateUserSettingsResponse {
|
|
|
1089
1199
|
*/
|
|
1090
1200
|
export interface GetBrowserSettingsRequest {
|
|
1091
1201
|
/**
|
|
1202
|
+
* @public
|
|
1092
1203
|
* <p>The ARN of the browser settings.</p>
|
|
1093
1204
|
*/
|
|
1094
1205
|
browserSettingsArn: string | undefined;
|
|
@@ -1101,14 +1212,17 @@ export interface GetBrowserSettingsRequest {
|
|
|
1101
1212
|
*/
|
|
1102
1213
|
export interface BrowserSettings {
|
|
1103
1214
|
/**
|
|
1215
|
+
* @public
|
|
1104
1216
|
* <p>The ARN of the browser settings.</p>
|
|
1105
1217
|
*/
|
|
1106
1218
|
browserSettingsArn: string | undefined;
|
|
1107
1219
|
/**
|
|
1220
|
+
* @public
|
|
1108
1221
|
* <p>A list of web portal ARNs that this browser settings is associated with.</p>
|
|
1109
1222
|
*/
|
|
1110
1223
|
associatedPortalArns?: string[];
|
|
1111
1224
|
/**
|
|
1225
|
+
* @public
|
|
1112
1226
|
* <p>A JSON string containing Chrome Enterprise policies that will be applied to all
|
|
1113
1227
|
* streaming sessions.</p>
|
|
1114
1228
|
*/
|
|
@@ -1119,6 +1233,7 @@ export interface BrowserSettings {
|
|
|
1119
1233
|
*/
|
|
1120
1234
|
export interface GetBrowserSettingsResponse {
|
|
1121
1235
|
/**
|
|
1236
|
+
* @public
|
|
1122
1237
|
* <p>The browser settings.</p>
|
|
1123
1238
|
*/
|
|
1124
1239
|
browserSettings?: BrowserSettings;
|
|
@@ -1128,6 +1243,7 @@ export interface GetBrowserSettingsResponse {
|
|
|
1128
1243
|
*/
|
|
1129
1244
|
export interface GetIdentityProviderRequest {
|
|
1130
1245
|
/**
|
|
1246
|
+
* @public
|
|
1131
1247
|
* <p>The ARN of the identity provider.</p>
|
|
1132
1248
|
*/
|
|
1133
1249
|
identityProviderArn: string | undefined;
|
|
@@ -1138,18 +1254,22 @@ export interface GetIdentityProviderRequest {
|
|
|
1138
1254
|
*/
|
|
1139
1255
|
export interface IdentityProvider {
|
|
1140
1256
|
/**
|
|
1257
|
+
* @public
|
|
1141
1258
|
* <p>The ARN of the identity provider.</p>
|
|
1142
1259
|
*/
|
|
1143
1260
|
identityProviderArn: string | undefined;
|
|
1144
1261
|
/**
|
|
1262
|
+
* @public
|
|
1145
1263
|
* <p>The identity provider name.</p>
|
|
1146
1264
|
*/
|
|
1147
1265
|
identityProviderName?: string;
|
|
1148
1266
|
/**
|
|
1267
|
+
* @public
|
|
1149
1268
|
* <p>The identity provider type.</p>
|
|
1150
1269
|
*/
|
|
1151
1270
|
identityProviderType?: IdentityProviderType | string;
|
|
1152
1271
|
/**
|
|
1272
|
+
* @public
|
|
1153
1273
|
* <p>The identity provider details. The following list describes the provider detail keys for
|
|
1154
1274
|
* each identity provider type. </p>
|
|
1155
1275
|
* <ul>
|
|
@@ -1311,6 +1431,7 @@ export interface IdentityProvider {
|
|
|
1311
1431
|
*/
|
|
1312
1432
|
export interface GetIdentityProviderResponse {
|
|
1313
1433
|
/**
|
|
1434
|
+
* @public
|
|
1314
1435
|
* <p>The identity provider.</p>
|
|
1315
1436
|
*/
|
|
1316
1437
|
identityProvider?: IdentityProvider;
|
|
@@ -1320,6 +1441,7 @@ export interface GetIdentityProviderResponse {
|
|
|
1320
1441
|
*/
|
|
1321
1442
|
export interface GetIpAccessSettingsRequest {
|
|
1322
1443
|
/**
|
|
1444
|
+
* @public
|
|
1323
1445
|
* <p>The ARN of the IP access settings.</p>
|
|
1324
1446
|
*/
|
|
1325
1447
|
ipAccessSettingsArn: string | undefined;
|
|
@@ -1330,26 +1452,32 @@ export interface GetIpAccessSettingsRequest {
|
|
|
1330
1452
|
*/
|
|
1331
1453
|
export interface IpAccessSettings {
|
|
1332
1454
|
/**
|
|
1455
|
+
* @public
|
|
1333
1456
|
* <p>The ARN of the IP access settings resource.</p>
|
|
1334
1457
|
*/
|
|
1335
1458
|
ipAccessSettingsArn: string | undefined;
|
|
1336
1459
|
/**
|
|
1460
|
+
* @public
|
|
1337
1461
|
* <p>A list of web portal ARNs that this IP access settings resource is associated with.</p>
|
|
1338
1462
|
*/
|
|
1339
1463
|
associatedPortalArns?: string[];
|
|
1340
1464
|
/**
|
|
1465
|
+
* @public
|
|
1341
1466
|
* <p>The IP rules of the IP access settings.</p>
|
|
1342
1467
|
*/
|
|
1343
1468
|
ipRules?: IpRule[];
|
|
1344
1469
|
/**
|
|
1470
|
+
* @public
|
|
1345
1471
|
* <p> The display name of the IP access settings.</p>
|
|
1346
1472
|
*/
|
|
1347
1473
|
displayName?: string;
|
|
1348
1474
|
/**
|
|
1475
|
+
* @public
|
|
1349
1476
|
* <p>The description of the IP access settings.</p>
|
|
1350
1477
|
*/
|
|
1351
1478
|
description?: string;
|
|
1352
1479
|
/**
|
|
1480
|
+
* @public
|
|
1353
1481
|
* <p>The creation date timestamp of the IP access settings.</p>
|
|
1354
1482
|
*/
|
|
1355
1483
|
creationDate?: Date;
|
|
@@ -1359,6 +1487,7 @@ export interface IpAccessSettings {
|
|
|
1359
1487
|
*/
|
|
1360
1488
|
export interface GetIpAccessSettingsResponse {
|
|
1361
1489
|
/**
|
|
1490
|
+
* @public
|
|
1362
1491
|
* <p>The IP access settings.</p>
|
|
1363
1492
|
*/
|
|
1364
1493
|
ipAccessSettings?: IpAccessSettings;
|
|
@@ -1368,6 +1497,7 @@ export interface GetIpAccessSettingsResponse {
|
|
|
1368
1497
|
*/
|
|
1369
1498
|
export interface GetNetworkSettingsRequest {
|
|
1370
1499
|
/**
|
|
1500
|
+
* @public
|
|
1371
1501
|
* <p>The ARN of the network settings.</p>
|
|
1372
1502
|
*/
|
|
1373
1503
|
networkSettingsArn: string | undefined;
|
|
@@ -1380,22 +1510,27 @@ export interface GetNetworkSettingsRequest {
|
|
|
1380
1510
|
*/
|
|
1381
1511
|
export interface NetworkSettings {
|
|
1382
1512
|
/**
|
|
1513
|
+
* @public
|
|
1383
1514
|
* <p>The ARN of the network settings.</p>
|
|
1384
1515
|
*/
|
|
1385
1516
|
networkSettingsArn: string | undefined;
|
|
1386
1517
|
/**
|
|
1518
|
+
* @public
|
|
1387
1519
|
* <p>A list of web portal ARNs that this network settings is associated with.</p>
|
|
1388
1520
|
*/
|
|
1389
1521
|
associatedPortalArns?: string[];
|
|
1390
1522
|
/**
|
|
1523
|
+
* @public
|
|
1391
1524
|
* <p>The VPC that streaming instances will connect to.</p>
|
|
1392
1525
|
*/
|
|
1393
1526
|
vpcId?: string;
|
|
1394
1527
|
/**
|
|
1528
|
+
* @public
|
|
1395
1529
|
* <p>The subnets in which network interfaces are created to connect streaming instances to your VPC. At least two of these subnets must be in different availability zones.</p>
|
|
1396
1530
|
*/
|
|
1397
1531
|
subnetIds?: string[];
|
|
1398
1532
|
/**
|
|
1533
|
+
* @public
|
|
1399
1534
|
* <p>One or more security groups used to control access from streaming instances to your VPC. </p>
|
|
1400
1535
|
*/
|
|
1401
1536
|
securityGroupIds?: string[];
|
|
@@ -1405,6 +1540,7 @@ export interface NetworkSettings {
|
|
|
1405
1540
|
*/
|
|
1406
1541
|
export interface GetNetworkSettingsResponse {
|
|
1407
1542
|
/**
|
|
1543
|
+
* @public
|
|
1408
1544
|
* <p>The network settings.</p>
|
|
1409
1545
|
*/
|
|
1410
1546
|
networkSettings?: NetworkSettings;
|
|
@@ -1414,6 +1550,7 @@ export interface GetNetworkSettingsResponse {
|
|
|
1414
1550
|
*/
|
|
1415
1551
|
export interface GetPortalRequest {
|
|
1416
1552
|
/**
|
|
1553
|
+
* @public
|
|
1417
1554
|
* <p>The ARN of the web portal.</p>
|
|
1418
1555
|
*/
|
|
1419
1556
|
portalArn: string | undefined;
|
|
@@ -1459,59 +1596,73 @@ export type RendererType = (typeof RendererType)[keyof typeof RendererType];
|
|
|
1459
1596
|
*/
|
|
1460
1597
|
export interface Portal {
|
|
1461
1598
|
/**
|
|
1599
|
+
* @public
|
|
1462
1600
|
* <p>The ARN of the web portal.</p>
|
|
1463
1601
|
*/
|
|
1464
1602
|
portalArn?: string;
|
|
1465
1603
|
/**
|
|
1604
|
+
* @public
|
|
1466
1605
|
* <p>The renderer that is used in streaming sessions.</p>
|
|
1467
1606
|
*/
|
|
1468
1607
|
rendererType?: RendererType | string;
|
|
1469
1608
|
/**
|
|
1609
|
+
* @public
|
|
1470
1610
|
* <p>The browser that users see when using a streaming session.</p>
|
|
1471
1611
|
*/
|
|
1472
1612
|
browserType?: BrowserType | string;
|
|
1473
1613
|
/**
|
|
1614
|
+
* @public
|
|
1474
1615
|
* <p>The status of the web portal.</p>
|
|
1475
1616
|
*/
|
|
1476
1617
|
portalStatus?: PortalStatus | string;
|
|
1477
1618
|
/**
|
|
1619
|
+
* @public
|
|
1478
1620
|
* <p>The endpoint URL of the web portal that users access in order to start streaming
|
|
1479
1621
|
* sessions.</p>
|
|
1480
1622
|
*/
|
|
1481
1623
|
portalEndpoint?: string;
|
|
1482
1624
|
/**
|
|
1625
|
+
* @public
|
|
1483
1626
|
* <p>The name of the web portal.</p>
|
|
1484
1627
|
*/
|
|
1485
1628
|
displayName?: string;
|
|
1486
1629
|
/**
|
|
1630
|
+
* @public
|
|
1487
1631
|
* <p>The creation date of the web portal.</p>
|
|
1488
1632
|
*/
|
|
1489
1633
|
creationDate?: Date;
|
|
1490
1634
|
/**
|
|
1635
|
+
* @public
|
|
1491
1636
|
* <p>The ARN of the browser settings that is associated with this web portal.</p>
|
|
1492
1637
|
*/
|
|
1493
1638
|
browserSettingsArn?: string;
|
|
1494
1639
|
/**
|
|
1640
|
+
* @public
|
|
1495
1641
|
* <p>The ARN of the user settings that is associated with the web portal.</p>
|
|
1496
1642
|
*/
|
|
1497
1643
|
userSettingsArn?: string;
|
|
1498
1644
|
/**
|
|
1645
|
+
* @public
|
|
1499
1646
|
* <p>The ARN of the network settings that is associated with the web portal.</p>
|
|
1500
1647
|
*/
|
|
1501
1648
|
networkSettingsArn?: string;
|
|
1502
1649
|
/**
|
|
1650
|
+
* @public
|
|
1503
1651
|
* <p>The ARN of the trust store that is associated with the web portal.</p>
|
|
1504
1652
|
*/
|
|
1505
1653
|
trustStoreArn?: string;
|
|
1506
1654
|
/**
|
|
1655
|
+
* @public
|
|
1507
1656
|
* <p>A message that explains why the web portal is in its current status.</p>
|
|
1508
1657
|
*/
|
|
1509
1658
|
statusReason?: string;
|
|
1510
1659
|
/**
|
|
1660
|
+
* @public
|
|
1511
1661
|
* <p>The ARN of the user access logging settings that is associated with the web portal.</p>
|
|
1512
1662
|
*/
|
|
1513
1663
|
userAccessLoggingSettingsArn?: string;
|
|
1514
1664
|
/**
|
|
1665
|
+
* @public
|
|
1515
1666
|
* <p>The type of authentication integration points used when signing into the web portal.
|
|
1516
1667
|
* Defaults to <code>Standard</code>.</p>
|
|
1517
1668
|
* <p>
|
|
@@ -1528,6 +1679,7 @@ export interface Portal {
|
|
|
1528
1679
|
*/
|
|
1529
1680
|
authenticationType?: AuthenticationType | string;
|
|
1530
1681
|
/**
|
|
1682
|
+
* @public
|
|
1531
1683
|
* <p>The ARN of the IP access settings.</p>
|
|
1532
1684
|
*/
|
|
1533
1685
|
ipAccessSettingsArn?: string;
|
|
@@ -1537,6 +1689,7 @@ export interface Portal {
|
|
|
1537
1689
|
*/
|
|
1538
1690
|
export interface GetPortalResponse {
|
|
1539
1691
|
/**
|
|
1692
|
+
* @public
|
|
1540
1693
|
* <p>The web portal.</p>
|
|
1541
1694
|
*/
|
|
1542
1695
|
portal?: Portal;
|
|
@@ -1546,6 +1699,7 @@ export interface GetPortalResponse {
|
|
|
1546
1699
|
*/
|
|
1547
1700
|
export interface GetPortalServiceProviderMetadataRequest {
|
|
1548
1701
|
/**
|
|
1702
|
+
* @public
|
|
1549
1703
|
* <p>The ARN of the web portal.</p>
|
|
1550
1704
|
*/
|
|
1551
1705
|
portalArn: string | undefined;
|
|
@@ -1555,10 +1709,12 @@ export interface GetPortalServiceProviderMetadataRequest {
|
|
|
1555
1709
|
*/
|
|
1556
1710
|
export interface GetPortalServiceProviderMetadataResponse {
|
|
1557
1711
|
/**
|
|
1712
|
+
* @public
|
|
1558
1713
|
* <p>The ARN of the web portal.</p>
|
|
1559
1714
|
*/
|
|
1560
1715
|
portalArn: string | undefined;
|
|
1561
1716
|
/**
|
|
1717
|
+
* @public
|
|
1562
1718
|
* <p>The service provider SAML metadata.</p>
|
|
1563
1719
|
*/
|
|
1564
1720
|
serviceProviderSamlMetadata?: string;
|
|
@@ -1568,6 +1724,7 @@ export interface GetPortalServiceProviderMetadataResponse {
|
|
|
1568
1724
|
*/
|
|
1569
1725
|
export interface GetTrustStoreRequest {
|
|
1570
1726
|
/**
|
|
1727
|
+
* @public
|
|
1571
1728
|
* <p>The ARN of the trust store.</p>
|
|
1572
1729
|
*/
|
|
1573
1730
|
trustStoreArn: string | undefined;
|
|
@@ -1582,10 +1739,12 @@ export interface GetTrustStoreRequest {
|
|
|
1582
1739
|
*/
|
|
1583
1740
|
export interface TrustStore {
|
|
1584
1741
|
/**
|
|
1742
|
+
* @public
|
|
1585
1743
|
* <p>A list of web portal ARNs that this trust store is associated with.</p>
|
|
1586
1744
|
*/
|
|
1587
1745
|
associatedPortalArns?: string[];
|
|
1588
1746
|
/**
|
|
1747
|
+
* @public
|
|
1589
1748
|
* <p>The ARN of the trust store.</p>
|
|
1590
1749
|
*/
|
|
1591
1750
|
trustStoreArn?: string;
|
|
@@ -1595,6 +1754,7 @@ export interface TrustStore {
|
|
|
1595
1754
|
*/
|
|
1596
1755
|
export interface GetTrustStoreResponse {
|
|
1597
1756
|
/**
|
|
1757
|
+
* @public
|
|
1598
1758
|
* <p>The trust store.</p>
|
|
1599
1759
|
*/
|
|
1600
1760
|
trustStore?: TrustStore;
|
|
@@ -1604,10 +1764,12 @@ export interface GetTrustStoreResponse {
|
|
|
1604
1764
|
*/
|
|
1605
1765
|
export interface GetTrustStoreCertificateRequest {
|
|
1606
1766
|
/**
|
|
1767
|
+
* @public
|
|
1607
1768
|
* <p>The ARN of the trust store certificate.</p>
|
|
1608
1769
|
*/
|
|
1609
1770
|
trustStoreArn: string | undefined;
|
|
1610
1771
|
/**
|
|
1772
|
+
* @public
|
|
1611
1773
|
* <p>The thumbprint of the trust store certificate.</p>
|
|
1612
1774
|
*/
|
|
1613
1775
|
thumbprint: string | undefined;
|
|
@@ -1618,26 +1780,32 @@ export interface GetTrustStoreCertificateRequest {
|
|
|
1618
1780
|
*/
|
|
1619
1781
|
export interface Certificate {
|
|
1620
1782
|
/**
|
|
1783
|
+
* @public
|
|
1621
1784
|
* <p>A hexadecimal identifier for the certificate.</p>
|
|
1622
1785
|
*/
|
|
1623
1786
|
thumbprint?: string;
|
|
1624
1787
|
/**
|
|
1788
|
+
* @public
|
|
1625
1789
|
* <p>The entity the certificate belongs to.</p>
|
|
1626
1790
|
*/
|
|
1627
1791
|
subject?: string;
|
|
1628
1792
|
/**
|
|
1793
|
+
* @public
|
|
1629
1794
|
* <p>The entity that issued the certificate.</p>
|
|
1630
1795
|
*/
|
|
1631
1796
|
issuer?: string;
|
|
1632
1797
|
/**
|
|
1798
|
+
* @public
|
|
1633
1799
|
* <p>The certificate is not valid before this date.</p>
|
|
1634
1800
|
*/
|
|
1635
1801
|
notValidBefore?: Date;
|
|
1636
1802
|
/**
|
|
1803
|
+
* @public
|
|
1637
1804
|
* <p>The certificate is not valid after this date.</p>
|
|
1638
1805
|
*/
|
|
1639
1806
|
notValidAfter?: Date;
|
|
1640
1807
|
/**
|
|
1808
|
+
* @public
|
|
1641
1809
|
* <p>The body of the certificate.</p>
|
|
1642
1810
|
*/
|
|
1643
1811
|
body?: Uint8Array;
|
|
@@ -1647,10 +1815,12 @@ export interface Certificate {
|
|
|
1647
1815
|
*/
|
|
1648
1816
|
export interface GetTrustStoreCertificateResponse {
|
|
1649
1817
|
/**
|
|
1818
|
+
* @public
|
|
1650
1819
|
* <p>The ARN of the trust store certificate.</p>
|
|
1651
1820
|
*/
|
|
1652
1821
|
trustStoreArn?: string;
|
|
1653
1822
|
/**
|
|
1823
|
+
* @public
|
|
1654
1824
|
* <p>The certificate of the trust store certificate.</p>
|
|
1655
1825
|
*/
|
|
1656
1826
|
certificate?: Certificate;
|
|
@@ -1660,6 +1830,7 @@ export interface GetTrustStoreCertificateResponse {
|
|
|
1660
1830
|
*/
|
|
1661
1831
|
export interface GetUserAccessLoggingSettingsRequest {
|
|
1662
1832
|
/**
|
|
1833
|
+
* @public
|
|
1663
1834
|
* <p>The ARN of the user access logging settings.</p>
|
|
1664
1835
|
*/
|
|
1665
1836
|
userAccessLoggingSettingsArn: string | undefined;
|
|
@@ -1670,14 +1841,17 @@ export interface GetUserAccessLoggingSettingsRequest {
|
|
|
1670
1841
|
*/
|
|
1671
1842
|
export interface UserAccessLoggingSettings {
|
|
1672
1843
|
/**
|
|
1844
|
+
* @public
|
|
1673
1845
|
* <p>The ARN of the user access logging settings.</p>
|
|
1674
1846
|
*/
|
|
1675
1847
|
userAccessLoggingSettingsArn: string | undefined;
|
|
1676
1848
|
/**
|
|
1849
|
+
* @public
|
|
1677
1850
|
* <p>A list of web portal ARNs that this user access logging settings is associated with.</p>
|
|
1678
1851
|
*/
|
|
1679
1852
|
associatedPortalArns?: string[];
|
|
1680
1853
|
/**
|
|
1854
|
+
* @public
|
|
1681
1855
|
* <p>The ARN of the Kinesis stream.</p>
|
|
1682
1856
|
*/
|
|
1683
1857
|
kinesisStreamArn?: string;
|
|
@@ -1687,6 +1861,7 @@ export interface UserAccessLoggingSettings {
|
|
|
1687
1861
|
*/
|
|
1688
1862
|
export interface GetUserAccessLoggingSettingsResponse {
|
|
1689
1863
|
/**
|
|
1864
|
+
* @public
|
|
1690
1865
|
* <p>The user access logging settings.</p>
|
|
1691
1866
|
*/
|
|
1692
1867
|
userAccessLoggingSettings?: UserAccessLoggingSettings;
|
|
@@ -1696,6 +1871,7 @@ export interface GetUserAccessLoggingSettingsResponse {
|
|
|
1696
1871
|
*/
|
|
1697
1872
|
export interface GetUserSettingsRequest {
|
|
1698
1873
|
/**
|
|
1874
|
+
* @public
|
|
1699
1875
|
* <p>The ARN of the user settings.</p>
|
|
1700
1876
|
*/
|
|
1701
1877
|
userSettingsArn: string | undefined;
|
|
@@ -1708,42 +1884,51 @@ export interface GetUserSettingsRequest {
|
|
|
1708
1884
|
*/
|
|
1709
1885
|
export interface UserSettings {
|
|
1710
1886
|
/**
|
|
1887
|
+
* @public
|
|
1711
1888
|
* <p>The ARN of the user settings.</p>
|
|
1712
1889
|
*/
|
|
1713
1890
|
userSettingsArn: string | undefined;
|
|
1714
1891
|
/**
|
|
1892
|
+
* @public
|
|
1715
1893
|
* <p>A list of web portal ARNs that this user settings is associated with.</p>
|
|
1716
1894
|
*/
|
|
1717
1895
|
associatedPortalArns?: string[];
|
|
1718
1896
|
/**
|
|
1897
|
+
* @public
|
|
1719
1898
|
* <p>Specifies whether the user can copy text from the streaming session to the local
|
|
1720
1899
|
* device.</p>
|
|
1721
1900
|
*/
|
|
1722
1901
|
copyAllowed?: EnabledType | string;
|
|
1723
1902
|
/**
|
|
1903
|
+
* @public
|
|
1724
1904
|
* <p>Specifies whether the user can paste text from the local device to the streaming
|
|
1725
1905
|
* session.</p>
|
|
1726
1906
|
*/
|
|
1727
1907
|
pasteAllowed?: EnabledType | string;
|
|
1728
1908
|
/**
|
|
1909
|
+
* @public
|
|
1729
1910
|
* <p>Specifies whether the user can download files from the streaming session to the local
|
|
1730
1911
|
* device.</p>
|
|
1731
1912
|
*/
|
|
1732
1913
|
downloadAllowed?: EnabledType | string;
|
|
1733
1914
|
/**
|
|
1915
|
+
* @public
|
|
1734
1916
|
* <p>Specifies whether the user can upload files from the local device to the streaming
|
|
1735
1917
|
* session.</p>
|
|
1736
1918
|
*/
|
|
1737
1919
|
uploadAllowed?: EnabledType | string;
|
|
1738
1920
|
/**
|
|
1921
|
+
* @public
|
|
1739
1922
|
* <p>Specifies whether the user can print to the local device.</p>
|
|
1740
1923
|
*/
|
|
1741
1924
|
printAllowed?: EnabledType | string;
|
|
1742
1925
|
/**
|
|
1926
|
+
* @public
|
|
1743
1927
|
* <p>The amount of time that a streaming session remains active after users disconnect.</p>
|
|
1744
1928
|
*/
|
|
1745
1929
|
disconnectTimeoutInMinutes?: number;
|
|
1746
1930
|
/**
|
|
1931
|
+
* @public
|
|
1747
1932
|
* <p>The amount of time that users can be idle (inactive) before they are disconnected from their streaming session and the disconnect timeout interval begins.</p>
|
|
1748
1933
|
*/
|
|
1749
1934
|
idleDisconnectTimeoutInMinutes?: number;
|
|
@@ -1753,6 +1938,7 @@ export interface UserSettings {
|
|
|
1753
1938
|
*/
|
|
1754
1939
|
export interface GetUserSettingsResponse {
|
|
1755
1940
|
/**
|
|
1941
|
+
* @public
|
|
1756
1942
|
* <p>The user settings.</p>
|
|
1757
1943
|
*/
|
|
1758
1944
|
userSettings?: UserSettings;
|
|
@@ -1762,10 +1948,12 @@ export interface GetUserSettingsResponse {
|
|
|
1762
1948
|
*/
|
|
1763
1949
|
export interface ListBrowserSettingsRequest {
|
|
1764
1950
|
/**
|
|
1951
|
+
* @public
|
|
1765
1952
|
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
1766
1953
|
*/
|
|
1767
1954
|
nextToken?: string;
|
|
1768
1955
|
/**
|
|
1956
|
+
* @public
|
|
1769
1957
|
* <p>The maximum number of results to be included in the next page.</p>
|
|
1770
1958
|
*/
|
|
1771
1959
|
maxResults?: number;
|
|
@@ -1776,6 +1964,7 @@ export interface ListBrowserSettingsRequest {
|
|
|
1776
1964
|
*/
|
|
1777
1965
|
export interface BrowserSettingsSummary {
|
|
1778
1966
|
/**
|
|
1967
|
+
* @public
|
|
1779
1968
|
* <p>The ARN of the browser settings.</p>
|
|
1780
1969
|
*/
|
|
1781
1970
|
browserSettingsArn?: string;
|
|
@@ -1785,10 +1974,12 @@ export interface BrowserSettingsSummary {
|
|
|
1785
1974
|
*/
|
|
1786
1975
|
export interface ListBrowserSettingsResponse {
|
|
1787
1976
|
/**
|
|
1977
|
+
* @public
|
|
1788
1978
|
* <p>The browser settings.</p>
|
|
1789
1979
|
*/
|
|
1790
1980
|
browserSettings?: BrowserSettingsSummary[];
|
|
1791
1981
|
/**
|
|
1982
|
+
* @public
|
|
1792
1983
|
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
1793
1984
|
*/
|
|
1794
1985
|
nextToken?: string;
|
|
@@ -1798,14 +1989,17 @@ export interface ListBrowserSettingsResponse {
|
|
|
1798
1989
|
*/
|
|
1799
1990
|
export interface ListIdentityProvidersRequest {
|
|
1800
1991
|
/**
|
|
1992
|
+
* @public
|
|
1801
1993
|
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
1802
1994
|
*/
|
|
1803
1995
|
nextToken?: string;
|
|
1804
1996
|
/**
|
|
1997
|
+
* @public
|
|
1805
1998
|
* <p>The maximum number of results to be included in the next page.</p>
|
|
1806
1999
|
*/
|
|
1807
2000
|
maxResults?: number;
|
|
1808
2001
|
/**
|
|
2002
|
+
* @public
|
|
1809
2003
|
* <p>The ARN of the web portal.</p>
|
|
1810
2004
|
*/
|
|
1811
2005
|
portalArn: string | undefined;
|
|
@@ -1816,14 +2010,17 @@ export interface ListIdentityProvidersRequest {
|
|
|
1816
2010
|
*/
|
|
1817
2011
|
export interface IdentityProviderSummary {
|
|
1818
2012
|
/**
|
|
2013
|
+
* @public
|
|
1819
2014
|
* <p>The ARN of the identity provider.</p>
|
|
1820
2015
|
*/
|
|
1821
2016
|
identityProviderArn?: string;
|
|
1822
2017
|
/**
|
|
2018
|
+
* @public
|
|
1823
2019
|
* <p>The identity provider name.</p>
|
|
1824
2020
|
*/
|
|
1825
2021
|
identityProviderName?: string;
|
|
1826
2022
|
/**
|
|
2023
|
+
* @public
|
|
1827
2024
|
* <p>The identity provider type.</p>
|
|
1828
2025
|
*/
|
|
1829
2026
|
identityProviderType?: IdentityProviderType | string;
|
|
@@ -1833,10 +2030,12 @@ export interface IdentityProviderSummary {
|
|
|
1833
2030
|
*/
|
|
1834
2031
|
export interface ListIdentityProvidersResponse {
|
|
1835
2032
|
/**
|
|
2033
|
+
* @public
|
|
1836
2034
|
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
1837
2035
|
*/
|
|
1838
2036
|
nextToken?: string;
|
|
1839
2037
|
/**
|
|
2038
|
+
* @public
|
|
1840
2039
|
* <p>The identity providers.</p>
|
|
1841
2040
|
*/
|
|
1842
2041
|
identityProviders?: IdentityProviderSummary[];
|
|
@@ -1846,10 +2045,12 @@ export interface ListIdentityProvidersResponse {
|
|
|
1846
2045
|
*/
|
|
1847
2046
|
export interface ListIpAccessSettingsRequest {
|
|
1848
2047
|
/**
|
|
2048
|
+
* @public
|
|
1849
2049
|
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
1850
2050
|
*/
|
|
1851
2051
|
nextToken?: string;
|
|
1852
2052
|
/**
|
|
2053
|
+
* @public
|
|
1853
2054
|
* <p>The maximum number of results to be included in the next page.</p>
|
|
1854
2055
|
*/
|
|
1855
2056
|
maxResults?: number;
|
|
@@ -1860,18 +2061,22 @@ export interface ListIpAccessSettingsRequest {
|
|
|
1860
2061
|
*/
|
|
1861
2062
|
export interface IpAccessSettingsSummary {
|
|
1862
2063
|
/**
|
|
2064
|
+
* @public
|
|
1863
2065
|
* <p>The ARN of IP access settings.</p>
|
|
1864
2066
|
*/
|
|
1865
2067
|
ipAccessSettingsArn?: string;
|
|
1866
2068
|
/**
|
|
2069
|
+
* @public
|
|
1867
2070
|
* <p>The display name of the IP access settings.</p>
|
|
1868
2071
|
*/
|
|
1869
2072
|
displayName?: string;
|
|
1870
2073
|
/**
|
|
2074
|
+
* @public
|
|
1871
2075
|
* <p>The description of the IP access settings.</p>
|
|
1872
2076
|
*/
|
|
1873
2077
|
description?: string;
|
|
1874
2078
|
/**
|
|
2079
|
+
* @public
|
|
1875
2080
|
* <p>The creation date timestamp of the IP access settings.</p>
|
|
1876
2081
|
*/
|
|
1877
2082
|
creationDate?: Date;
|
|
@@ -1881,10 +2086,12 @@ export interface IpAccessSettingsSummary {
|
|
|
1881
2086
|
*/
|
|
1882
2087
|
export interface ListIpAccessSettingsResponse {
|
|
1883
2088
|
/**
|
|
2089
|
+
* @public
|
|
1884
2090
|
* <p>The IP access settings.</p>
|
|
1885
2091
|
*/
|
|
1886
2092
|
ipAccessSettings?: IpAccessSettingsSummary[];
|
|
1887
2093
|
/**
|
|
2094
|
+
* @public
|
|
1888
2095
|
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
1889
2096
|
*/
|
|
1890
2097
|
nextToken?: string;
|
|
@@ -1894,10 +2101,12 @@ export interface ListIpAccessSettingsResponse {
|
|
|
1894
2101
|
*/
|
|
1895
2102
|
export interface ListNetworkSettingsRequest {
|
|
1896
2103
|
/**
|
|
2104
|
+
* @public
|
|
1897
2105
|
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
1898
2106
|
*/
|
|
1899
2107
|
nextToken?: string;
|
|
1900
2108
|
/**
|
|
2109
|
+
* @public
|
|
1901
2110
|
* <p>The maximum number of results to be included in the next page.</p>
|
|
1902
2111
|
*/
|
|
1903
2112
|
maxResults?: number;
|
|
@@ -1908,10 +2117,12 @@ export interface ListNetworkSettingsRequest {
|
|
|
1908
2117
|
*/
|
|
1909
2118
|
export interface NetworkSettingsSummary {
|
|
1910
2119
|
/**
|
|
2120
|
+
* @public
|
|
1911
2121
|
* <p>The ARN of the network settings.</p>
|
|
1912
2122
|
*/
|
|
1913
2123
|
networkSettingsArn?: string;
|
|
1914
2124
|
/**
|
|
2125
|
+
* @public
|
|
1915
2126
|
* <p>The VPC ID of the network settings.</p>
|
|
1916
2127
|
*/
|
|
1917
2128
|
vpcId?: string;
|
|
@@ -1921,10 +2132,12 @@ export interface NetworkSettingsSummary {
|
|
|
1921
2132
|
*/
|
|
1922
2133
|
export interface ListNetworkSettingsResponse {
|
|
1923
2134
|
/**
|
|
2135
|
+
* @public
|
|
1924
2136
|
* <p>The network settings.</p>
|
|
1925
2137
|
*/
|
|
1926
2138
|
networkSettings?: NetworkSettingsSummary[];
|
|
1927
2139
|
/**
|
|
2140
|
+
* @public
|
|
1928
2141
|
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
1929
2142
|
*/
|
|
1930
2143
|
nextToken?: string;
|
|
@@ -1934,10 +2147,12 @@ export interface ListNetworkSettingsResponse {
|
|
|
1934
2147
|
*/
|
|
1935
2148
|
export interface ListPortalsRequest {
|
|
1936
2149
|
/**
|
|
2150
|
+
* @public
|
|
1937
2151
|
* <p>The pagination token used to retrieve the next page of results for this operation. </p>
|
|
1938
2152
|
*/
|
|
1939
2153
|
nextToken?: string;
|
|
1940
2154
|
/**
|
|
2155
|
+
* @public
|
|
1941
2156
|
* <p>The maximum number of results to be included in the next page.</p>
|
|
1942
2157
|
*/
|
|
1943
2158
|
maxResults?: number;
|
|
@@ -1948,55 +2163,68 @@ export interface ListPortalsRequest {
|
|
|
1948
2163
|
*/
|
|
1949
2164
|
export interface PortalSummary {
|
|
1950
2165
|
/**
|
|
2166
|
+
* @public
|
|
1951
2167
|
* <p>The ARN of the web portal.</p>
|
|
1952
2168
|
*/
|
|
1953
2169
|
portalArn?: string;
|
|
1954
2170
|
/**
|
|
2171
|
+
* @public
|
|
1955
2172
|
* <p>The renderer that is used in streaming sessions.</p>
|
|
1956
2173
|
*/
|
|
1957
2174
|
rendererType?: RendererType | string;
|
|
1958
2175
|
/**
|
|
2176
|
+
* @public
|
|
1959
2177
|
* <p>The browser type of the web portal.</p>
|
|
1960
2178
|
*/
|
|
1961
2179
|
browserType?: BrowserType | string;
|
|
1962
2180
|
/**
|
|
2181
|
+
* @public
|
|
1963
2182
|
* <p>The status of the web portal.</p>
|
|
1964
2183
|
*/
|
|
1965
2184
|
portalStatus?: PortalStatus | string;
|
|
1966
2185
|
/**
|
|
2186
|
+
* @public
|
|
1967
2187
|
* <p>The endpoint URL of the web portal that users access in order to start streaming
|
|
1968
2188
|
* sessions.</p>
|
|
1969
2189
|
*/
|
|
1970
2190
|
portalEndpoint?: string;
|
|
1971
2191
|
/**
|
|
2192
|
+
* @public
|
|
1972
2193
|
* <p>The name of the web portal.</p>
|
|
1973
2194
|
*/
|
|
1974
2195
|
displayName?: string;
|
|
1975
2196
|
/**
|
|
2197
|
+
* @public
|
|
1976
2198
|
* <p>The creation date of the web portal.</p>
|
|
1977
2199
|
*/
|
|
1978
2200
|
creationDate?: Date;
|
|
1979
2201
|
/**
|
|
2202
|
+
* @public
|
|
1980
2203
|
* <p>The ARN of the browser settings that is associated with the web portal.</p>
|
|
1981
2204
|
*/
|
|
1982
2205
|
browserSettingsArn?: string;
|
|
1983
2206
|
/**
|
|
2207
|
+
* @public
|
|
1984
2208
|
* <p>The ARN of the user settings that is associated with the web portal.</p>
|
|
1985
2209
|
*/
|
|
1986
2210
|
userSettingsArn?: string;
|
|
1987
2211
|
/**
|
|
2212
|
+
* @public
|
|
1988
2213
|
* <p>The ARN of the network settings that is associated with the web portal.</p>
|
|
1989
2214
|
*/
|
|
1990
2215
|
networkSettingsArn?: string;
|
|
1991
2216
|
/**
|
|
2217
|
+
* @public
|
|
1992
2218
|
* <p>The ARN of the trust that is associated with this web portal.</p>
|
|
1993
2219
|
*/
|
|
1994
2220
|
trustStoreArn?: string;
|
|
1995
2221
|
/**
|
|
2222
|
+
* @public
|
|
1996
2223
|
* <p>The ARN of the user access logging settings that is associated with the web portal.</p>
|
|
1997
2224
|
*/
|
|
1998
2225
|
userAccessLoggingSettingsArn?: string;
|
|
1999
2226
|
/**
|
|
2227
|
+
* @public
|
|
2000
2228
|
* <p>The type of authentication integration points used when signing into the web portal.
|
|
2001
2229
|
* Defaults to <code>Standard</code>.</p>
|
|
2002
2230
|
* <p>
|
|
@@ -2013,6 +2241,7 @@ export interface PortalSummary {
|
|
|
2013
2241
|
*/
|
|
2014
2242
|
authenticationType?: AuthenticationType | string;
|
|
2015
2243
|
/**
|
|
2244
|
+
* @public
|
|
2016
2245
|
* <p>The ARN of the IP access settings.</p>
|
|
2017
2246
|
*/
|
|
2018
2247
|
ipAccessSettingsArn?: string;
|
|
@@ -2022,10 +2251,12 @@ export interface PortalSummary {
|
|
|
2022
2251
|
*/
|
|
2023
2252
|
export interface ListPortalsResponse {
|
|
2024
2253
|
/**
|
|
2254
|
+
* @public
|
|
2025
2255
|
* <p>The portals in the list.</p>
|
|
2026
2256
|
*/
|
|
2027
2257
|
portals?: PortalSummary[];
|
|
2028
2258
|
/**
|
|
2259
|
+
* @public
|
|
2029
2260
|
* <p>The pagination token used to retrieve the next page of results for this operation. </p>
|
|
2030
2261
|
*/
|
|
2031
2262
|
nextToken?: string;
|
|
@@ -2035,6 +2266,7 @@ export interface ListPortalsResponse {
|
|
|
2035
2266
|
*/
|
|
2036
2267
|
export interface ListTagsForResourceRequest {
|
|
2037
2268
|
/**
|
|
2269
|
+
* @public
|
|
2038
2270
|
* <p>The ARN of the resource.</p>
|
|
2039
2271
|
*/
|
|
2040
2272
|
resourceArn: string | undefined;
|
|
@@ -2044,6 +2276,7 @@ export interface ListTagsForResourceRequest {
|
|
|
2044
2276
|
*/
|
|
2045
2277
|
export interface ListTagsForResourceResponse {
|
|
2046
2278
|
/**
|
|
2279
|
+
* @public
|
|
2047
2280
|
* <p>The tags of the resource.</p>
|
|
2048
2281
|
*/
|
|
2049
2282
|
tags?: Tag[];
|
|
@@ -2053,14 +2286,17 @@ export interface ListTagsForResourceResponse {
|
|
|
2053
2286
|
*/
|
|
2054
2287
|
export interface ListTrustStoreCertificatesRequest {
|
|
2055
2288
|
/**
|
|
2289
|
+
* @public
|
|
2056
2290
|
* <p>The ARN of the trust store</p>
|
|
2057
2291
|
*/
|
|
2058
2292
|
trustStoreArn: string | undefined;
|
|
2059
2293
|
/**
|
|
2294
|
+
* @public
|
|
2060
2295
|
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
2061
2296
|
*/
|
|
2062
2297
|
nextToken?: string;
|
|
2063
2298
|
/**
|
|
2299
|
+
* @public
|
|
2064
2300
|
* <p>The maximum number of results to be included in the next page.</p>
|
|
2065
2301
|
*/
|
|
2066
2302
|
maxResults?: number;
|
|
@@ -2071,22 +2307,27 @@ export interface ListTrustStoreCertificatesRequest {
|
|
|
2071
2307
|
*/
|
|
2072
2308
|
export interface CertificateSummary {
|
|
2073
2309
|
/**
|
|
2310
|
+
* @public
|
|
2074
2311
|
* <p>A hexadecimal identifier for the certificate.</p>
|
|
2075
2312
|
*/
|
|
2076
2313
|
thumbprint?: string;
|
|
2077
2314
|
/**
|
|
2315
|
+
* @public
|
|
2078
2316
|
* <p>The entity the certificate belongs to.</p>
|
|
2079
2317
|
*/
|
|
2080
2318
|
subject?: string;
|
|
2081
2319
|
/**
|
|
2320
|
+
* @public
|
|
2082
2321
|
* <p>The entity that issued the certificate.</p>
|
|
2083
2322
|
*/
|
|
2084
2323
|
issuer?: string;
|
|
2085
2324
|
/**
|
|
2325
|
+
* @public
|
|
2086
2326
|
* <p>The certificate is not valid before this date.</p>
|
|
2087
2327
|
*/
|
|
2088
2328
|
notValidBefore?: Date;
|
|
2089
2329
|
/**
|
|
2330
|
+
* @public
|
|
2090
2331
|
* <p>The certificate is not valid after this date.</p>
|
|
2091
2332
|
*/
|
|
2092
2333
|
notValidAfter?: Date;
|
|
@@ -2096,14 +2337,17 @@ export interface CertificateSummary {
|
|
|
2096
2337
|
*/
|
|
2097
2338
|
export interface ListTrustStoreCertificatesResponse {
|
|
2098
2339
|
/**
|
|
2340
|
+
* @public
|
|
2099
2341
|
* <p>The certificate list.</p>
|
|
2100
2342
|
*/
|
|
2101
2343
|
certificateList?: CertificateSummary[];
|
|
2102
2344
|
/**
|
|
2345
|
+
* @public
|
|
2103
2346
|
* <p>The ARN of the trust store.</p>
|
|
2104
2347
|
*/
|
|
2105
2348
|
trustStoreArn?: string;
|
|
2106
2349
|
/**
|
|
2350
|
+
* @public
|
|
2107
2351
|
* <p>The pagination token used to retrieve the next page of results for this operation.></p>
|
|
2108
2352
|
*/
|
|
2109
2353
|
nextToken?: string;
|
|
@@ -2113,10 +2357,12 @@ export interface ListTrustStoreCertificatesResponse {
|
|
|
2113
2357
|
*/
|
|
2114
2358
|
export interface ListTrustStoresRequest {
|
|
2115
2359
|
/**
|
|
2360
|
+
* @public
|
|
2116
2361
|
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
2117
2362
|
*/
|
|
2118
2363
|
nextToken?: string;
|
|
2119
2364
|
/**
|
|
2365
|
+
* @public
|
|
2120
2366
|
* <p>The maximum number of results to be included in the next page.</p>
|
|
2121
2367
|
*/
|
|
2122
2368
|
maxResults?: number;
|
|
@@ -2127,6 +2373,7 @@ export interface ListTrustStoresRequest {
|
|
|
2127
2373
|
*/
|
|
2128
2374
|
export interface TrustStoreSummary {
|
|
2129
2375
|
/**
|
|
2376
|
+
* @public
|
|
2130
2377
|
* <p>The ARN of the trust store.</p>
|
|
2131
2378
|
*/
|
|
2132
2379
|
trustStoreArn?: string;
|
|
@@ -2136,10 +2383,12 @@ export interface TrustStoreSummary {
|
|
|
2136
2383
|
*/
|
|
2137
2384
|
export interface ListTrustStoresResponse {
|
|
2138
2385
|
/**
|
|
2386
|
+
* @public
|
|
2139
2387
|
* <p>The trust stores.</p>
|
|
2140
2388
|
*/
|
|
2141
2389
|
trustStores?: TrustStoreSummary[];
|
|
2142
2390
|
/**
|
|
2391
|
+
* @public
|
|
2143
2392
|
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
2144
2393
|
*/
|
|
2145
2394
|
nextToken?: string;
|
|
@@ -2149,10 +2398,12 @@ export interface ListTrustStoresResponse {
|
|
|
2149
2398
|
*/
|
|
2150
2399
|
export interface ListUserAccessLoggingSettingsRequest {
|
|
2151
2400
|
/**
|
|
2401
|
+
* @public
|
|
2152
2402
|
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
2153
2403
|
*/
|
|
2154
2404
|
nextToken?: string;
|
|
2155
2405
|
/**
|
|
2406
|
+
* @public
|
|
2156
2407
|
* <p>The maximum number of results to be included in the next page.</p>
|
|
2157
2408
|
*/
|
|
2158
2409
|
maxResults?: number;
|
|
@@ -2163,10 +2414,12 @@ export interface ListUserAccessLoggingSettingsRequest {
|
|
|
2163
2414
|
*/
|
|
2164
2415
|
export interface UserAccessLoggingSettingsSummary {
|
|
2165
2416
|
/**
|
|
2417
|
+
* @public
|
|
2166
2418
|
* <p>The ARN of the user access logging settings.</p>
|
|
2167
2419
|
*/
|
|
2168
2420
|
userAccessLoggingSettingsArn?: string;
|
|
2169
2421
|
/**
|
|
2422
|
+
* @public
|
|
2170
2423
|
* <p>The ARN of the Kinesis stream.</p>
|
|
2171
2424
|
*/
|
|
2172
2425
|
kinesisStreamArn?: string;
|
|
@@ -2176,10 +2429,12 @@ export interface UserAccessLoggingSettingsSummary {
|
|
|
2176
2429
|
*/
|
|
2177
2430
|
export interface ListUserAccessLoggingSettingsResponse {
|
|
2178
2431
|
/**
|
|
2432
|
+
* @public
|
|
2179
2433
|
* <p>The user access logging settings.</p>
|
|
2180
2434
|
*/
|
|
2181
2435
|
userAccessLoggingSettings?: UserAccessLoggingSettingsSummary[];
|
|
2182
2436
|
/**
|
|
2437
|
+
* @public
|
|
2183
2438
|
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
2184
2439
|
*/
|
|
2185
2440
|
nextToken?: string;
|
|
@@ -2189,10 +2444,12 @@ export interface ListUserAccessLoggingSettingsResponse {
|
|
|
2189
2444
|
*/
|
|
2190
2445
|
export interface ListUserSettingsRequest {
|
|
2191
2446
|
/**
|
|
2447
|
+
* @public
|
|
2192
2448
|
* <p>The pagination token used to retrieve the next page of results for this operation. </p>
|
|
2193
2449
|
*/
|
|
2194
2450
|
nextToken?: string;
|
|
2195
2451
|
/**
|
|
2452
|
+
* @public
|
|
2196
2453
|
* <p>The maximum number of results to be included in the next page.</p>
|
|
2197
2454
|
*/
|
|
2198
2455
|
maxResults?: number;
|
|
@@ -2203,38 +2460,46 @@ export interface ListUserSettingsRequest {
|
|
|
2203
2460
|
*/
|
|
2204
2461
|
export interface UserSettingsSummary {
|
|
2205
2462
|
/**
|
|
2463
|
+
* @public
|
|
2206
2464
|
* <p>The ARN of the user settings.</p>
|
|
2207
2465
|
*/
|
|
2208
2466
|
userSettingsArn?: string;
|
|
2209
2467
|
/**
|
|
2468
|
+
* @public
|
|
2210
2469
|
* <p>Specifies whether the user can copy text from the streaming session to the local
|
|
2211
2470
|
* device.</p>
|
|
2212
2471
|
*/
|
|
2213
2472
|
copyAllowed?: EnabledType | string;
|
|
2214
2473
|
/**
|
|
2474
|
+
* @public
|
|
2215
2475
|
* <p>Specifies whether the user can paste text from the local device to the streaming
|
|
2216
2476
|
* session.</p>
|
|
2217
2477
|
*/
|
|
2218
2478
|
pasteAllowed?: EnabledType | string;
|
|
2219
2479
|
/**
|
|
2480
|
+
* @public
|
|
2220
2481
|
* <p>Specifies whether the user can download files from the streaming session to the local
|
|
2221
2482
|
* device.</p>
|
|
2222
2483
|
*/
|
|
2223
2484
|
downloadAllowed?: EnabledType | string;
|
|
2224
2485
|
/**
|
|
2486
|
+
* @public
|
|
2225
2487
|
* <p>Specifies whether the user can upload files from the local device to the streaming
|
|
2226
2488
|
* session.</p>
|
|
2227
2489
|
*/
|
|
2228
2490
|
uploadAllowed?: EnabledType | string;
|
|
2229
2491
|
/**
|
|
2492
|
+
* @public
|
|
2230
2493
|
* <p>Specifies whether the user can print to the local device.</p>
|
|
2231
2494
|
*/
|
|
2232
2495
|
printAllowed?: EnabledType | string;
|
|
2233
2496
|
/**
|
|
2497
|
+
* @public
|
|
2234
2498
|
* <p>The amount of time that a streaming session remains active after users disconnect.</p>
|
|
2235
2499
|
*/
|
|
2236
2500
|
disconnectTimeoutInMinutes?: number;
|
|
2237
2501
|
/**
|
|
2502
|
+
* @public
|
|
2238
2503
|
* <p>The amount of time that users can be idle (inactive) before they are disconnected from their streaming session and the disconnect timeout interval begins.</p>
|
|
2239
2504
|
*/
|
|
2240
2505
|
idleDisconnectTimeoutInMinutes?: number;
|
|
@@ -2244,10 +2509,12 @@ export interface UserSettingsSummary {
|
|
|
2244
2509
|
*/
|
|
2245
2510
|
export interface ListUserSettingsResponse {
|
|
2246
2511
|
/**
|
|
2512
|
+
* @public
|
|
2247
2513
|
* <p>The user settings.</p>
|
|
2248
2514
|
*/
|
|
2249
2515
|
userSettings?: UserSettingsSummary[];
|
|
2250
2516
|
/**
|
|
2517
|
+
* @public
|
|
2251
2518
|
* <p>The pagination token used to retrieve the next page of results for this operation. </p>
|
|
2252
2519
|
*/
|
|
2253
2520
|
nextToken?: string;
|
|
@@ -2257,14 +2524,17 @@ export interface ListUserSettingsResponse {
|
|
|
2257
2524
|
*/
|
|
2258
2525
|
export interface TagResourceRequest {
|
|
2259
2526
|
/**
|
|
2527
|
+
* @public
|
|
2260
2528
|
* <p>The ARN of the resource.</p>
|
|
2261
2529
|
*/
|
|
2262
2530
|
resourceArn: string | undefined;
|
|
2263
2531
|
/**
|
|
2532
|
+
* @public
|
|
2264
2533
|
* <p>The tags of the resource.</p>
|
|
2265
2534
|
*/
|
|
2266
2535
|
tags: Tag[] | undefined;
|
|
2267
2536
|
/**
|
|
2537
|
+
* @public
|
|
2268
2538
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
2269
2539
|
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
2270
2540
|
* request, if the original request completes successfully, subsequent retries with the same
|
|
@@ -2287,6 +2557,7 @@ export declare class TooManyTagsException extends __BaseException {
|
|
|
2287
2557
|
readonly name: "TooManyTagsException";
|
|
2288
2558
|
readonly $fault: "client";
|
|
2289
2559
|
/**
|
|
2560
|
+
* @public
|
|
2290
2561
|
* <p>Name of the resource affected.</p>
|
|
2291
2562
|
*/
|
|
2292
2563
|
resourceName?: string;
|
|
@@ -2300,10 +2571,12 @@ export declare class TooManyTagsException extends __BaseException {
|
|
|
2300
2571
|
*/
|
|
2301
2572
|
export interface UntagResourceRequest {
|
|
2302
2573
|
/**
|
|
2574
|
+
* @public
|
|
2303
2575
|
* <p>The ARN of the resource.</p>
|
|
2304
2576
|
*/
|
|
2305
2577
|
resourceArn: string | undefined;
|
|
2306
2578
|
/**
|
|
2579
|
+
* @public
|
|
2307
2580
|
* <p>The list of tag keys to remove from the resource.</p>
|
|
2308
2581
|
*/
|
|
2309
2582
|
tagKeys: string[] | undefined;
|
|
@@ -2318,15 +2591,18 @@ export interface UntagResourceResponse {
|
|
|
2318
2591
|
*/
|
|
2319
2592
|
export interface UpdateBrowserSettingsRequest {
|
|
2320
2593
|
/**
|
|
2594
|
+
* @public
|
|
2321
2595
|
* <p>The ARN of the browser settings.</p>
|
|
2322
2596
|
*/
|
|
2323
2597
|
browserSettingsArn: string | undefined;
|
|
2324
2598
|
/**
|
|
2599
|
+
* @public
|
|
2325
2600
|
* <p>A JSON string containing Chrome Enterprise policies that will be applied to all
|
|
2326
2601
|
* streaming sessions. </p>
|
|
2327
2602
|
*/
|
|
2328
2603
|
browserPolicy?: string;
|
|
2329
2604
|
/**
|
|
2605
|
+
* @public
|
|
2330
2606
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
2331
2607
|
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
2332
2608
|
* request, if the original request completes successfully, subsequent retries with the same
|
|
@@ -2341,6 +2617,7 @@ export interface UpdateBrowserSettingsRequest {
|
|
|
2341
2617
|
*/
|
|
2342
2618
|
export interface UpdateBrowserSettingsResponse {
|
|
2343
2619
|
/**
|
|
2620
|
+
* @public
|
|
2344
2621
|
* <p>The browser settings.</p>
|
|
2345
2622
|
*/
|
|
2346
2623
|
browserSettings: BrowserSettings | undefined;
|
|
@@ -2350,18 +2627,22 @@ export interface UpdateBrowserSettingsResponse {
|
|
|
2350
2627
|
*/
|
|
2351
2628
|
export interface UpdateIdentityProviderRequest {
|
|
2352
2629
|
/**
|
|
2630
|
+
* @public
|
|
2353
2631
|
* <p>The ARN of the identity provider.</p>
|
|
2354
2632
|
*/
|
|
2355
2633
|
identityProviderArn: string | undefined;
|
|
2356
2634
|
/**
|
|
2635
|
+
* @public
|
|
2357
2636
|
* <p>The name of the identity provider.</p>
|
|
2358
2637
|
*/
|
|
2359
2638
|
identityProviderName?: string;
|
|
2360
2639
|
/**
|
|
2640
|
+
* @public
|
|
2361
2641
|
* <p>The type of the identity provider.</p>
|
|
2362
2642
|
*/
|
|
2363
2643
|
identityProviderType?: IdentityProviderType | string;
|
|
2364
2644
|
/**
|
|
2645
|
+
* @public
|
|
2365
2646
|
* <p>The details of the identity provider. The following list describes the provider detail keys for
|
|
2366
2647
|
* each identity provider type. </p>
|
|
2367
2648
|
* <ul>
|
|
@@ -2518,6 +2799,7 @@ export interface UpdateIdentityProviderRequest {
|
|
|
2518
2799
|
*/
|
|
2519
2800
|
identityProviderDetails?: Record<string, string>;
|
|
2520
2801
|
/**
|
|
2802
|
+
* @public
|
|
2521
2803
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
2522
2804
|
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
2523
2805
|
* request, if the original request completes successfully, subsequent retries with the same
|
|
@@ -2532,6 +2814,7 @@ export interface UpdateIdentityProviderRequest {
|
|
|
2532
2814
|
*/
|
|
2533
2815
|
export interface UpdateIdentityProviderResponse {
|
|
2534
2816
|
/**
|
|
2817
|
+
* @public
|
|
2535
2818
|
* <p>The identity provider.</p>
|
|
2536
2819
|
*/
|
|
2537
2820
|
identityProvider: IdentityProvider | undefined;
|
|
@@ -2541,22 +2824,27 @@ export interface UpdateIdentityProviderResponse {
|
|
|
2541
2824
|
*/
|
|
2542
2825
|
export interface UpdateIpAccessSettingsRequest {
|
|
2543
2826
|
/**
|
|
2827
|
+
* @public
|
|
2544
2828
|
* <p>The ARN of the IP access settings.</p>
|
|
2545
2829
|
*/
|
|
2546
2830
|
ipAccessSettingsArn: string | undefined;
|
|
2547
2831
|
/**
|
|
2832
|
+
* @public
|
|
2548
2833
|
* <p>The display name of the IP access settings.</p>
|
|
2549
2834
|
*/
|
|
2550
2835
|
displayName?: string;
|
|
2551
2836
|
/**
|
|
2837
|
+
* @public
|
|
2552
2838
|
* <p>The description of the IP access settings.</p>
|
|
2553
2839
|
*/
|
|
2554
2840
|
description?: string;
|
|
2555
2841
|
/**
|
|
2842
|
+
* @public
|
|
2556
2843
|
* <p>The updated IP rules of the IP access settings.</p>
|
|
2557
2844
|
*/
|
|
2558
2845
|
ipRules?: IpRule[];
|
|
2559
2846
|
/**
|
|
2847
|
+
* @public
|
|
2560
2848
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
2561
2849
|
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
2562
2850
|
* request, if the original request completes successfully, subsequent retries with the same
|
|
@@ -2571,6 +2859,7 @@ export interface UpdateIpAccessSettingsRequest {
|
|
|
2571
2859
|
*/
|
|
2572
2860
|
export interface UpdateIpAccessSettingsResponse {
|
|
2573
2861
|
/**
|
|
2862
|
+
* @public
|
|
2574
2863
|
* <p>The IP access settings.</p>
|
|
2575
2864
|
*/
|
|
2576
2865
|
ipAccessSettings: IpAccessSettings | undefined;
|
|
@@ -2580,22 +2869,27 @@ export interface UpdateIpAccessSettingsResponse {
|
|
|
2580
2869
|
*/
|
|
2581
2870
|
export interface UpdateNetworkSettingsRequest {
|
|
2582
2871
|
/**
|
|
2872
|
+
* @public
|
|
2583
2873
|
* <p>The ARN of the network settings.</p>
|
|
2584
2874
|
*/
|
|
2585
2875
|
networkSettingsArn: string | undefined;
|
|
2586
2876
|
/**
|
|
2877
|
+
* @public
|
|
2587
2878
|
* <p>The VPC that streaming instances will connect to.</p>
|
|
2588
2879
|
*/
|
|
2589
2880
|
vpcId?: string;
|
|
2590
2881
|
/**
|
|
2882
|
+
* @public
|
|
2591
2883
|
* <p>The subnets in which network interfaces are created to connect streaming instances to your VPC. At least two of these subnets must be in different availability zones.</p>
|
|
2592
2884
|
*/
|
|
2593
2885
|
subnetIds?: string[];
|
|
2594
2886
|
/**
|
|
2887
|
+
* @public
|
|
2595
2888
|
* <p>One or more security groups used to control access from streaming instances to your VPC.</p>
|
|
2596
2889
|
*/
|
|
2597
2890
|
securityGroupIds?: string[];
|
|
2598
2891
|
/**
|
|
2892
|
+
* @public
|
|
2599
2893
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
2600
2894
|
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
2601
2895
|
* request, if the original request completes successfully, subsequent retries with the same
|
|
@@ -2610,6 +2904,7 @@ export interface UpdateNetworkSettingsRequest {
|
|
|
2610
2904
|
*/
|
|
2611
2905
|
export interface UpdateNetworkSettingsResponse {
|
|
2612
2906
|
/**
|
|
2907
|
+
* @public
|
|
2613
2908
|
* <p>The network settings.</p>
|
|
2614
2909
|
*/
|
|
2615
2910
|
networkSettings: NetworkSettings | undefined;
|
|
@@ -2619,14 +2914,17 @@ export interface UpdateNetworkSettingsResponse {
|
|
|
2619
2914
|
*/
|
|
2620
2915
|
export interface UpdatePortalRequest {
|
|
2621
2916
|
/**
|
|
2917
|
+
* @public
|
|
2622
2918
|
* <p>The ARN of the web portal.</p>
|
|
2623
2919
|
*/
|
|
2624
2920
|
portalArn: string | undefined;
|
|
2625
2921
|
/**
|
|
2922
|
+
* @public
|
|
2626
2923
|
* <p>The name of the web portal. This is not visible to users who log into the web portal.</p>
|
|
2627
2924
|
*/
|
|
2628
2925
|
displayName?: string;
|
|
2629
2926
|
/**
|
|
2927
|
+
* @public
|
|
2630
2928
|
* <p>The type of authentication integration points used when signing into the web portal.
|
|
2631
2929
|
* Defaults to <code>Standard</code>.</p>
|
|
2632
2930
|
* <p>
|
|
@@ -2648,6 +2946,7 @@ export interface UpdatePortalRequest {
|
|
|
2648
2946
|
*/
|
|
2649
2947
|
export interface UpdatePortalResponse {
|
|
2650
2948
|
/**
|
|
2949
|
+
* @public
|
|
2651
2950
|
* <p>The web portal.</p>
|
|
2652
2951
|
*/
|
|
2653
2952
|
portal?: Portal;
|
|
@@ -2657,18 +2956,22 @@ export interface UpdatePortalResponse {
|
|
|
2657
2956
|
*/
|
|
2658
2957
|
export interface UpdateTrustStoreRequest {
|
|
2659
2958
|
/**
|
|
2959
|
+
* @public
|
|
2660
2960
|
* <p>The ARN of the trust store.</p>
|
|
2661
2961
|
*/
|
|
2662
2962
|
trustStoreArn: string | undefined;
|
|
2663
2963
|
/**
|
|
2964
|
+
* @public
|
|
2664
2965
|
* <p>A list of CA certificates to add to the trust store.</p>
|
|
2665
2966
|
*/
|
|
2666
2967
|
certificatesToAdd?: Uint8Array[];
|
|
2667
2968
|
/**
|
|
2969
|
+
* @public
|
|
2668
2970
|
* <p>A list of CA certificates to delete from a trust store.</p>
|
|
2669
2971
|
*/
|
|
2670
2972
|
certificatesToDelete?: string[];
|
|
2671
2973
|
/**
|
|
2974
|
+
* @public
|
|
2672
2975
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
2673
2976
|
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
2674
2977
|
* request, if the original request completes successfully, subsequent retries with the same
|
|
@@ -2683,6 +2986,7 @@ export interface UpdateTrustStoreRequest {
|
|
|
2683
2986
|
*/
|
|
2684
2987
|
export interface UpdateTrustStoreResponse {
|
|
2685
2988
|
/**
|
|
2989
|
+
* @public
|
|
2686
2990
|
* <p>The ARN of the trust store.</p>
|
|
2687
2991
|
*/
|
|
2688
2992
|
trustStoreArn: string | undefined;
|
|
@@ -2692,14 +2996,17 @@ export interface UpdateTrustStoreResponse {
|
|
|
2692
2996
|
*/
|
|
2693
2997
|
export interface UpdateUserAccessLoggingSettingsRequest {
|
|
2694
2998
|
/**
|
|
2999
|
+
* @public
|
|
2695
3000
|
* <p>The ARN of the user access logging settings.</p>
|
|
2696
3001
|
*/
|
|
2697
3002
|
userAccessLoggingSettingsArn: string | undefined;
|
|
2698
3003
|
/**
|
|
3004
|
+
* @public
|
|
2699
3005
|
* <p>The ARN of the Kinesis stream.</p>
|
|
2700
3006
|
*/
|
|
2701
3007
|
kinesisStreamArn?: string;
|
|
2702
3008
|
/**
|
|
3009
|
+
* @public
|
|
2703
3010
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
2704
3011
|
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
2705
3012
|
* request, if the original request completes successfully, subsequent retries with the same
|
|
@@ -2714,6 +3021,7 @@ export interface UpdateUserAccessLoggingSettingsRequest {
|
|
|
2714
3021
|
*/
|
|
2715
3022
|
export interface UpdateUserAccessLoggingSettingsResponse {
|
|
2716
3023
|
/**
|
|
3024
|
+
* @public
|
|
2717
3025
|
* <p>The user access logging settings.</p>
|
|
2718
3026
|
*/
|
|
2719
3027
|
userAccessLoggingSettings: UserAccessLoggingSettings | undefined;
|
|
@@ -2723,42 +3031,51 @@ export interface UpdateUserAccessLoggingSettingsResponse {
|
|
|
2723
3031
|
*/
|
|
2724
3032
|
export interface UpdateUserSettingsRequest {
|
|
2725
3033
|
/**
|
|
3034
|
+
* @public
|
|
2726
3035
|
* <p>The ARN of the user settings.</p>
|
|
2727
3036
|
*/
|
|
2728
3037
|
userSettingsArn: string | undefined;
|
|
2729
3038
|
/**
|
|
3039
|
+
* @public
|
|
2730
3040
|
* <p>Specifies whether the user can copy text from the streaming session to the local
|
|
2731
3041
|
* device.</p>
|
|
2732
3042
|
*/
|
|
2733
3043
|
copyAllowed?: EnabledType | string;
|
|
2734
3044
|
/**
|
|
3045
|
+
* @public
|
|
2735
3046
|
* <p>Specifies whether the user can paste text from the local device to the streaming
|
|
2736
3047
|
* session.</p>
|
|
2737
3048
|
*/
|
|
2738
3049
|
pasteAllowed?: EnabledType | string;
|
|
2739
3050
|
/**
|
|
3051
|
+
* @public
|
|
2740
3052
|
* <p>Specifies whether the user can download files from the streaming session to the local
|
|
2741
3053
|
* device.</p>
|
|
2742
3054
|
*/
|
|
2743
3055
|
downloadAllowed?: EnabledType | string;
|
|
2744
3056
|
/**
|
|
3057
|
+
* @public
|
|
2745
3058
|
* <p>Specifies whether the user can upload files from the local device to the streaming
|
|
2746
3059
|
* session.</p>
|
|
2747
3060
|
*/
|
|
2748
3061
|
uploadAllowed?: EnabledType | string;
|
|
2749
3062
|
/**
|
|
3063
|
+
* @public
|
|
2750
3064
|
* <p>Specifies whether the user can print to the local device.</p>
|
|
2751
3065
|
*/
|
|
2752
3066
|
printAllowed?: EnabledType | string;
|
|
2753
3067
|
/**
|
|
3068
|
+
* @public
|
|
2754
3069
|
* <p>The amount of time that a streaming session remains active after users disconnect.</p>
|
|
2755
3070
|
*/
|
|
2756
3071
|
disconnectTimeoutInMinutes?: number;
|
|
2757
3072
|
/**
|
|
3073
|
+
* @public
|
|
2758
3074
|
* <p>The amount of time that users can be idle (inactive) before they are disconnected from their streaming session and the disconnect timeout interval begins.</p>
|
|
2759
3075
|
*/
|
|
2760
3076
|
idleDisconnectTimeoutInMinutes?: number;
|
|
2761
3077
|
/**
|
|
3078
|
+
* @public
|
|
2762
3079
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
2763
3080
|
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
2764
3081
|
* request, if the original request completes successfully, subsequent retries with the same
|
|
@@ -2773,6 +3090,7 @@ export interface UpdateUserSettingsRequest {
|
|
|
2773
3090
|
*/
|
|
2774
3091
|
export interface UpdateUserSettingsResponse {
|
|
2775
3092
|
/**
|
|
3093
|
+
* @public
|
|
2776
3094
|
* <p>The user settings.</p>
|
|
2777
3095
|
*/
|
|
2778
3096
|
userSettings: UserSettings | undefined;
|