@aws-sdk/client-workspaces-web 3.687.0 → 3.692.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.
@@ -53,12 +53,12 @@ export declare class ConflictException extends __BaseException {
53
53
  * <p>Identifier of the resource affected.</p>
54
54
  * @public
55
55
  */
56
- resourceId?: string;
56
+ resourceId?: string | undefined;
57
57
  /**
58
58
  * <p>Type of the resource affected.</p>
59
59
  * @public
60
60
  */
61
- resourceType?: string;
61
+ resourceType?: string | undefined;
62
62
  /**
63
63
  * @internal
64
64
  */
@@ -75,7 +75,7 @@ export declare class InternalServerException extends __BaseException {
75
75
  * <p>Advice to clients on when the call can be safely retried.</p>
76
76
  * @public
77
77
  */
78
- retryAfterSeconds?: number;
78
+ retryAfterSeconds?: number | undefined;
79
79
  /**
80
80
  * @internal
81
81
  */
@@ -92,12 +92,12 @@ export declare class ResourceNotFoundException extends __BaseException {
92
92
  * <p>Hypothetical identifier of the resource affected.</p>
93
93
  * @public
94
94
  */
95
- resourceId?: string;
95
+ resourceId?: string | undefined;
96
96
  /**
97
97
  * <p>Hypothetical type of the resource affected.</p>
98
98
  * @public
99
99
  */
100
- resourceType?: string;
100
+ resourceType?: string | undefined;
101
101
  /**
102
102
  * @internal
103
103
  */
@@ -114,17 +114,17 @@ export declare class ThrottlingException extends __BaseException {
114
114
  * <p>The originating service.</p>
115
115
  * @public
116
116
  */
117
- serviceCode?: string;
117
+ serviceCode?: string | undefined;
118
118
  /**
119
119
  * <p>The originating quota.</p>
120
120
  * @public
121
121
  */
122
- quotaCode?: string;
122
+ quotaCode?: string | undefined;
123
123
  /**
124
124
  * <p>Advice to clients on when the call can be safely retried.</p>
125
125
  * @public
126
126
  */
127
- retryAfterSeconds?: number;
127
+ retryAfterSeconds?: number | undefined;
128
128
  /**
129
129
  * @internal
130
130
  */
@@ -171,12 +171,12 @@ export declare class ValidationException extends __BaseException {
171
171
  * <p>Reason the request failed validation</p>
172
172
  * @public
173
173
  */
174
- reason?: ValidationExceptionReason;
174
+ reason?: ValidationExceptionReason | undefined;
175
175
  /**
176
176
  * <p>The field that caused the error.</p>
177
177
  * @public
178
178
  */
179
- fieldList?: ValidationExceptionField[];
179
+ fieldList?: ValidationExceptionField[] | undefined;
180
180
  /**
181
181
  * @internal
182
182
  */
@@ -368,17 +368,17 @@ export interface CreateBrowserSettingsRequest {
368
368
  * <p>The tags to add to the browser settings resource. A tag is a key-value pair.</p>
369
369
  * @public
370
370
  */
371
- tags?: Tag[];
371
+ tags?: Tag[] | undefined;
372
372
  /**
373
373
  * <p>The custom managed key of the browser settings.</p>
374
374
  * @public
375
375
  */
376
- customerManagedKey?: string;
376
+ customerManagedKey?: string | undefined;
377
377
  /**
378
378
  * <p>Additional encryption context of the browser settings.</p>
379
379
  * @public
380
380
  */
381
- additionalEncryptionContext?: Record<string, string>;
381
+ additionalEncryptionContext?: Record<string, string> | undefined;
382
382
  /**
383
383
  * <p>A JSON string containing Chrome Enterprise policies that will be applied to all
384
384
  * streaming sessions.</p>
@@ -394,7 +394,7 @@ export interface CreateBrowserSettingsRequest {
394
394
  * </p>
395
395
  * @public
396
396
  */
397
- clientToken?: string;
397
+ clientToken?: string | undefined;
398
398
  }
399
399
  /**
400
400
  * @public
@@ -417,22 +417,22 @@ export declare class ServiceQuotaExceededException extends __BaseException {
417
417
  * <p>Identifier of the resource affected.</p>
418
418
  * @public
419
419
  */
420
- resourceId?: string;
420
+ resourceId?: string | undefined;
421
421
  /**
422
422
  * <p> Type of the resource affected.</p>
423
423
  * @public
424
424
  */
425
- resourceType?: string;
425
+ resourceType?: string | undefined;
426
426
  /**
427
427
  * <p>The originating service.</p>
428
428
  * @public
429
429
  */
430
- serviceCode?: string;
430
+ serviceCode?: string | undefined;
431
431
  /**
432
432
  * <p>The originating quota.</p>
433
433
  * @public
434
434
  */
435
- quotaCode?: string;
435
+ quotaCode?: string | undefined;
436
436
  /**
437
437
  * @internal
438
438
  */
@@ -479,24 +479,24 @@ export interface BrowserSettings {
479
479
  * <p>A list of web portal ARNs that this browser settings is associated with.</p>
480
480
  * @public
481
481
  */
482
- associatedPortalArns?: string[];
482
+ associatedPortalArns?: string[] | undefined;
483
483
  /**
484
484
  * <p>A JSON string containing Chrome Enterprise policies that will be applied to all
485
485
  * streaming sessions.</p>
486
486
  * @public
487
487
  */
488
- browserPolicy?: string;
488
+ browserPolicy?: string | undefined;
489
489
  /**
490
490
  * <p>The customer managed key used to encrypt sensitive information in the browser
491
491
  * settings.</p>
492
492
  * @public
493
493
  */
494
- customerManagedKey?: string;
494
+ customerManagedKey?: string | undefined;
495
495
  /**
496
496
  * <p>The additional encryption context of the browser settings.</p>
497
497
  * @public
498
498
  */
499
- additionalEncryptionContext?: Record<string, string>;
499
+ additionalEncryptionContext?: Record<string, string> | undefined;
500
500
  }
501
501
  /**
502
502
  * @public
@@ -506,7 +506,7 @@ export interface GetBrowserSettingsResponse {
506
506
  * <p>The browser settings.</p>
507
507
  * @public
508
508
  */
509
- browserSettings?: BrowserSettings;
509
+ browserSettings?: BrowserSettings | undefined;
510
510
  }
511
511
  /**
512
512
  * @public
@@ -517,12 +517,12 @@ export interface ListBrowserSettingsRequest {
517
517
  * operation.</p>
518
518
  * @public
519
519
  */
520
- nextToken?: string;
520
+ nextToken?: string | undefined;
521
521
  /**
522
522
  * <p>The maximum number of results to be included in the next page.</p>
523
523
  * @public
524
524
  */
525
- maxResults?: number;
525
+ maxResults?: number | undefined;
526
526
  }
527
527
  /**
528
528
  * <p>The summary for browser settings.</p>
@@ -543,13 +543,13 @@ export interface ListBrowserSettingsResponse {
543
543
  * <p>The browser settings.</p>
544
544
  * @public
545
545
  */
546
- browserSettings?: BrowserSettingsSummary[];
546
+ browserSettings?: BrowserSettingsSummary[] | undefined;
547
547
  /**
548
548
  * <p>The pagination token used to retrieve the next page of results for this
549
549
  * operation.</p>
550
550
  * @public
551
551
  */
552
- nextToken?: string;
552
+ nextToken?: string | undefined;
553
553
  }
554
554
  /**
555
555
  * @public
@@ -565,7 +565,7 @@ export interface UpdateBrowserSettingsRequest {
565
565
  * streaming sessions. </p>
566
566
  * @public
567
567
  */
568
- browserPolicy?: string;
568
+ browserPolicy?: string | undefined;
569
569
  /**
570
570
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
571
571
  * request. Idempotency ensures that an API request completes only once. With an idempotent
@@ -575,7 +575,7 @@ export interface UpdateBrowserSettingsRequest {
575
575
  * SDK.</p>
576
576
  * @public
577
577
  */
578
- clientToken?: string;
578
+ clientToken?: string | undefined;
579
579
  }
580
580
  /**
581
581
  * @public
@@ -643,37 +643,37 @@ export interface Session {
643
643
  * <p>The ARN of the web portal.</p>
644
644
  * @public
645
645
  */
646
- portalArn?: string;
646
+ portalArn?: string | undefined;
647
647
  /**
648
648
  * <p>The ID of the session.</p>
649
649
  * @public
650
650
  */
651
- sessionId?: string;
651
+ sessionId?: string | undefined;
652
652
  /**
653
653
  * <p>The username of the session.</p>
654
654
  * @public
655
655
  */
656
- username?: string;
656
+ username?: string | undefined;
657
657
  /**
658
658
  * <p>The IP address of the client.</p>
659
659
  * @public
660
660
  */
661
- clientIpAddresses?: string[];
661
+ clientIpAddresses?: string[] | undefined;
662
662
  /**
663
663
  * <p>The status of the session.</p>
664
664
  * @public
665
665
  */
666
- status?: SessionStatus;
666
+ status?: SessionStatus | undefined;
667
667
  /**
668
668
  * <p>The start time of the session.</p>
669
669
  * @public
670
670
  */
671
- startTime?: Date;
671
+ startTime?: Date | undefined;
672
672
  /**
673
673
  * <p>The end time of the session.</p>
674
674
  * @public
675
675
  */
676
- endTime?: Date;
676
+ endTime?: Date | undefined;
677
677
  }
678
678
  /**
679
679
  * @public
@@ -683,7 +683,7 @@ export interface GetSessionResponse {
683
683
  * <p>The sessions in a list.</p>
684
684
  * @public
685
685
  */
686
- session?: Session;
686
+ session?: Session | undefined;
687
687
  }
688
688
  /**
689
689
  * @public
@@ -901,12 +901,12 @@ export interface CreateIdentityProviderRequest {
901
901
  * SDK.</p>
902
902
  * @public
903
903
  */
904
- clientToken?: string;
904
+ clientToken?: string | undefined;
905
905
  /**
906
906
  * <p>The tags to add to the identity provider resource. A tag is a key-value pair.</p>
907
907
  * @public
908
908
  */
909
- tags?: Tag[];
909
+ tags?: Tag[] | undefined;
910
910
  }
911
911
  /**
912
912
  * @public
@@ -957,12 +957,12 @@ export interface IdentityProvider {
957
957
  * <p>The identity provider name.</p>
958
958
  * @public
959
959
  */
960
- identityProviderName?: string;
960
+ identityProviderName?: string | undefined;
961
961
  /**
962
962
  * <p>The identity provider type.</p>
963
963
  * @public
964
964
  */
965
- identityProviderType?: IdentityProviderType;
965
+ identityProviderType?: IdentityProviderType | undefined;
966
966
  /**
967
967
  * <p>The identity provider details. The following list describes the provider detail keys for
968
968
  * each identity provider type. </p>
@@ -1134,7 +1134,7 @@ export interface IdentityProvider {
1134
1134
  * </ul>
1135
1135
  * @public
1136
1136
  */
1137
- identityProviderDetails?: Record<string, string>;
1137
+ identityProviderDetails?: Record<string, string> | undefined;
1138
1138
  }
1139
1139
  /**
1140
1140
  * @public
@@ -1144,7 +1144,7 @@ export interface GetIdentityProviderResponse {
1144
1144
  * <p>The identity provider.</p>
1145
1145
  * @public
1146
1146
  */
1147
- identityProvider?: IdentityProvider;
1147
+ identityProvider?: IdentityProvider | undefined;
1148
1148
  }
1149
1149
  /**
1150
1150
  * @public
@@ -1155,12 +1155,12 @@ export interface ListIdentityProvidersRequest {
1155
1155
  * operation.</p>
1156
1156
  * @public
1157
1157
  */
1158
- nextToken?: string;
1158
+ nextToken?: string | undefined;
1159
1159
  /**
1160
1160
  * <p>The maximum number of results to be included in the next page.</p>
1161
1161
  * @public
1162
1162
  */
1163
- maxResults?: number;
1163
+ maxResults?: number | undefined;
1164
1164
  /**
1165
1165
  * <p>The ARN of the web portal.</p>
1166
1166
  * @public
@@ -1181,12 +1181,12 @@ export interface IdentityProviderSummary {
1181
1181
  * <p>The identity provider name.</p>
1182
1182
  * @public
1183
1183
  */
1184
- identityProviderName?: string;
1184
+ identityProviderName?: string | undefined;
1185
1185
  /**
1186
1186
  * <p>The identity provider type.</p>
1187
1187
  * @public
1188
1188
  */
1189
- identityProviderType?: IdentityProviderType;
1189
+ identityProviderType?: IdentityProviderType | undefined;
1190
1190
  }
1191
1191
  /**
1192
1192
  * @public
@@ -1197,12 +1197,12 @@ export interface ListIdentityProvidersResponse {
1197
1197
  * operation.</p>
1198
1198
  * @public
1199
1199
  */
1200
- nextToken?: string;
1200
+ nextToken?: string | undefined;
1201
1201
  /**
1202
1202
  * <p>The identity providers.</p>
1203
1203
  * @public
1204
1204
  */
1205
- identityProviders?: IdentityProviderSummary[];
1205
+ identityProviders?: IdentityProviderSummary[] | undefined;
1206
1206
  }
1207
1207
  /**
1208
1208
  * @public
@@ -1217,12 +1217,12 @@ export interface UpdateIdentityProviderRequest {
1217
1217
  * <p>The name of the identity provider.</p>
1218
1218
  * @public
1219
1219
  */
1220
- identityProviderName?: string;
1220
+ identityProviderName?: string | undefined;
1221
1221
  /**
1222
1222
  * <p>The type of the identity provider.</p>
1223
1223
  * @public
1224
1224
  */
1225
- identityProviderType?: IdentityProviderType;
1225
+ identityProviderType?: IdentityProviderType | undefined;
1226
1226
  /**
1227
1227
  * <p>The details of the identity provider. The following list describes the provider detail
1228
1228
  * keys for each identity provider type. </p>
@@ -1394,7 +1394,7 @@ export interface UpdateIdentityProviderRequest {
1394
1394
  * </ul>
1395
1395
  * @public
1396
1396
  */
1397
- identityProviderDetails?: Record<string, string>;
1397
+ identityProviderDetails?: Record<string, string> | undefined;
1398
1398
  /**
1399
1399
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
1400
1400
  * request. Idempotency ensures that an API request completes only once. With an idempotent
@@ -1404,7 +1404,7 @@ export interface UpdateIdentityProviderRequest {
1404
1404
  * SDK.</p>
1405
1405
  * @public
1406
1406
  */
1407
- clientToken?: string;
1407
+ clientToken?: string | undefined;
1408
1408
  }
1409
1409
  /**
1410
1410
  * @public
@@ -1430,7 +1430,7 @@ export interface IpRule {
1430
1430
  * <p>The description of the IP rule.</p>
1431
1431
  * @public
1432
1432
  */
1433
- description?: string;
1433
+ description?: string | undefined;
1434
1434
  }
1435
1435
  /**
1436
1436
  * @public
@@ -1440,27 +1440,27 @@ export interface CreateIpAccessSettingsRequest {
1440
1440
  * <p>The display name of the IP access settings.</p>
1441
1441
  * @public
1442
1442
  */
1443
- displayName?: string;
1443
+ displayName?: string | undefined;
1444
1444
  /**
1445
1445
  * <p>The description of the IP access settings.</p>
1446
1446
  * @public
1447
1447
  */
1448
- description?: string;
1448
+ description?: string | undefined;
1449
1449
  /**
1450
1450
  * <p>The tags to add to the IP access settings resource. A tag is a key-value pair.</p>
1451
1451
  * @public
1452
1452
  */
1453
- tags?: Tag[];
1453
+ tags?: Tag[] | undefined;
1454
1454
  /**
1455
1455
  * <p>The custom managed key of the IP access settings.</p>
1456
1456
  * @public
1457
1457
  */
1458
- customerManagedKey?: string;
1458
+ customerManagedKey?: string | undefined;
1459
1459
  /**
1460
1460
  * <p>Additional encryption context of the IP access settings.</p>
1461
1461
  * @public
1462
1462
  */
1463
- additionalEncryptionContext?: Record<string, string>;
1463
+ additionalEncryptionContext?: Record<string, string> | undefined;
1464
1464
  /**
1465
1465
  * <p>The IP rules of the IP access settings.</p>
1466
1466
  * @public
@@ -1475,7 +1475,7 @@ export interface CreateIpAccessSettingsRequest {
1475
1475
  * SDK.</p>
1476
1476
  * @public
1477
1477
  */
1478
- clientToken?: string;
1478
+ clientToken?: string | undefined;
1479
1479
  }
1480
1480
  /**
1481
1481
  * @public
@@ -1527,38 +1527,38 @@ export interface IpAccessSettings {
1527
1527
  * with.</p>
1528
1528
  * @public
1529
1529
  */
1530
- associatedPortalArns?: string[];
1530
+ associatedPortalArns?: string[] | undefined;
1531
1531
  /**
1532
1532
  * <p>The IP rules of the IP access settings.</p>
1533
1533
  * @public
1534
1534
  */
1535
- ipRules?: IpRule[];
1535
+ ipRules?: IpRule[] | undefined;
1536
1536
  /**
1537
1537
  * <p> The display name of the IP access settings.</p>
1538
1538
  * @public
1539
1539
  */
1540
- displayName?: string;
1540
+ displayName?: string | undefined;
1541
1541
  /**
1542
1542
  * <p>The description of the IP access settings.</p>
1543
1543
  * @public
1544
1544
  */
1545
- description?: string;
1545
+ description?: string | undefined;
1546
1546
  /**
1547
1547
  * <p>The creation date timestamp of the IP access settings.</p>
1548
1548
  * @public
1549
1549
  */
1550
- creationDate?: Date;
1550
+ creationDate?: Date | undefined;
1551
1551
  /**
1552
1552
  * <p>The customer managed key used to encrypt sensitive information in the IP access
1553
1553
  * settings.</p>
1554
1554
  * @public
1555
1555
  */
1556
- customerManagedKey?: string;
1556
+ customerManagedKey?: string | undefined;
1557
1557
  /**
1558
1558
  * <p>The additional encryption context of the IP access settings.</p>
1559
1559
  * @public
1560
1560
  */
1561
- additionalEncryptionContext?: Record<string, string>;
1561
+ additionalEncryptionContext?: Record<string, string> | undefined;
1562
1562
  }
1563
1563
  /**
1564
1564
  * @public
@@ -1568,7 +1568,7 @@ export interface GetIpAccessSettingsResponse {
1568
1568
  * <p>The IP access settings.</p>
1569
1569
  * @public
1570
1570
  */
1571
- ipAccessSettings?: IpAccessSettings;
1571
+ ipAccessSettings?: IpAccessSettings | undefined;
1572
1572
  }
1573
1573
  /**
1574
1574
  * @public
@@ -1579,12 +1579,12 @@ export interface ListIpAccessSettingsRequest {
1579
1579
  * operation.</p>
1580
1580
  * @public
1581
1581
  */
1582
- nextToken?: string;
1582
+ nextToken?: string | undefined;
1583
1583
  /**
1584
1584
  * <p>The maximum number of results to be included in the next page.</p>
1585
1585
  * @public
1586
1586
  */
1587
- maxResults?: number;
1587
+ maxResults?: number | undefined;
1588
1588
  }
1589
1589
  /**
1590
1590
  * <p>The summary of IP access settings.</p>
@@ -1600,17 +1600,17 @@ export interface IpAccessSettingsSummary {
1600
1600
  * <p>The display name of the IP access settings.</p>
1601
1601
  * @public
1602
1602
  */
1603
- displayName?: string;
1603
+ displayName?: string | undefined;
1604
1604
  /**
1605
1605
  * <p>The description of the IP access settings.</p>
1606
1606
  * @public
1607
1607
  */
1608
- description?: string;
1608
+ description?: string | undefined;
1609
1609
  /**
1610
1610
  * <p>The creation date timestamp of the IP access settings.</p>
1611
1611
  * @public
1612
1612
  */
1613
- creationDate?: Date;
1613
+ creationDate?: Date | undefined;
1614
1614
  }
1615
1615
  /**
1616
1616
  * @public
@@ -1620,13 +1620,13 @@ export interface ListIpAccessSettingsResponse {
1620
1620
  * <p>The IP access settings.</p>
1621
1621
  * @public
1622
1622
  */
1623
- ipAccessSettings?: IpAccessSettingsSummary[];
1623
+ ipAccessSettings?: IpAccessSettingsSummary[] | undefined;
1624
1624
  /**
1625
1625
  * <p>The pagination token used to retrieve the next page of results for this
1626
1626
  * operation.</p>
1627
1627
  * @public
1628
1628
  */
1629
- nextToken?: string;
1629
+ nextToken?: string | undefined;
1630
1630
  }
1631
1631
  /**
1632
1632
  * @public
@@ -1641,17 +1641,17 @@ export interface UpdateIpAccessSettingsRequest {
1641
1641
  * <p>The display name of the IP access settings.</p>
1642
1642
  * @public
1643
1643
  */
1644
- displayName?: string;
1644
+ displayName?: string | undefined;
1645
1645
  /**
1646
1646
  * <p>The description of the IP access settings.</p>
1647
1647
  * @public
1648
1648
  */
1649
- description?: string;
1649
+ description?: string | undefined;
1650
1650
  /**
1651
1651
  * <p>The updated IP rules of the IP access settings.</p>
1652
1652
  * @public
1653
1653
  */
1654
- ipRules?: IpRule[];
1654
+ ipRules?: IpRule[] | undefined;
1655
1655
  /**
1656
1656
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
1657
1657
  * request. Idempotency ensures that an API request completes only once. With an idempotent
@@ -1661,7 +1661,7 @@ export interface UpdateIpAccessSettingsRequest {
1661
1661
  * SDK.</p>
1662
1662
  * @public
1663
1663
  */
1664
- clientToken?: string;
1664
+ clientToken?: string | undefined;
1665
1665
  }
1666
1666
  /**
1667
1667
  * @public
@@ -1698,33 +1698,33 @@ export interface ListSessionsRequest {
1698
1698
  * <p>The username of the session.</p>
1699
1699
  * @public
1700
1700
  */
1701
- username?: string;
1701
+ username?: string | undefined;
1702
1702
  /**
1703
1703
  * <p>The ID of the session.</p>
1704
1704
  * @public
1705
1705
  */
1706
- sessionId?: string;
1706
+ sessionId?: string | undefined;
1707
1707
  /**
1708
1708
  * <p>The method in which the returned sessions should be sorted.</p>
1709
1709
  * @public
1710
1710
  */
1711
- sortBy?: SessionSortBy;
1711
+ sortBy?: SessionSortBy | undefined;
1712
1712
  /**
1713
1713
  * <p>The status of the session.</p>
1714
1714
  * @public
1715
1715
  */
1716
- status?: SessionStatus;
1716
+ status?: SessionStatus | undefined;
1717
1717
  /**
1718
1718
  * <p>The maximum number of results to be included in the next page.</p>
1719
1719
  * @public
1720
1720
  */
1721
- maxResults?: number;
1721
+ maxResults?: number | undefined;
1722
1722
  /**
1723
1723
  * <p>The pagination token used to retrieve the next page of results for this
1724
1724
  * operation.</p>
1725
1725
  * @public
1726
1726
  */
1727
- nextToken?: string;
1727
+ nextToken?: string | undefined;
1728
1728
  }
1729
1729
  /**
1730
1730
  * <p>Summary information about a secure browser session.</p>
@@ -1735,32 +1735,32 @@ export interface SessionSummary {
1735
1735
  * <p>The ARN of the web portal.</p>
1736
1736
  * @public
1737
1737
  */
1738
- portalArn?: string;
1738
+ portalArn?: string | undefined;
1739
1739
  /**
1740
1740
  * <p>The ID of the session.</p>
1741
1741
  * @public
1742
1742
  */
1743
- sessionId?: string;
1743
+ sessionId?: string | undefined;
1744
1744
  /**
1745
1745
  * <p>The username of the session.</p>
1746
1746
  * @public
1747
1747
  */
1748
- username?: string;
1748
+ username?: string | undefined;
1749
1749
  /**
1750
1750
  * <p>The status of the session.</p>
1751
1751
  * @public
1752
1752
  */
1753
- status?: SessionStatus;
1753
+ status?: SessionStatus | undefined;
1754
1754
  /**
1755
1755
  * <p>The start time of the session.</p>
1756
1756
  * @public
1757
1757
  */
1758
- startTime?: Date;
1758
+ startTime?: Date | undefined;
1759
1759
  /**
1760
1760
  * <p>The end time of the session.</p>
1761
1761
  * @public
1762
1762
  */
1763
- endTime?: Date;
1763
+ endTime?: Date | undefined;
1764
1764
  }
1765
1765
  /**
1766
1766
  * @public
@@ -1776,7 +1776,7 @@ export interface ListSessionsResponse {
1776
1776
  * operation.</p>
1777
1777
  * @public
1778
1778
  */
1779
- nextToken?: string;
1779
+ nextToken?: string | undefined;
1780
1780
  }
1781
1781
  /**
1782
1782
  * @public
@@ -1796,7 +1796,7 @@ export interface ListTagsForResourceResponse {
1796
1796
  * <p>The tags of the resource.</p>
1797
1797
  * @public
1798
1798
  */
1799
- tags?: Tag[];
1799
+ tags?: Tag[] | undefined;
1800
1800
  }
1801
1801
  /**
1802
1802
  * @public
@@ -1823,7 +1823,7 @@ export interface CreateNetworkSettingsRequest {
1823
1823
  * <p>The tags to add to the network settings resource. A tag is a key-value pair.</p>
1824
1824
  * @public
1825
1825
  */
1826
- tags?: Tag[];
1826
+ tags?: Tag[] | undefined;
1827
1827
  /**
1828
1828
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
1829
1829
  * request. Idempotency ensures that an API request completes only once. With an idempotent
@@ -1833,7 +1833,7 @@ export interface CreateNetworkSettingsRequest {
1833
1833
  * SDK.</p>
1834
1834
  * @public
1835
1835
  */
1836
- clientToken?: string;
1836
+ clientToken?: string | undefined;
1837
1837
  }
1838
1838
  /**
1839
1839
  * @public
@@ -1886,24 +1886,24 @@ export interface NetworkSettings {
1886
1886
  * <p>A list of web portal ARNs that this network settings is associated with.</p>
1887
1887
  * @public
1888
1888
  */
1889
- associatedPortalArns?: string[];
1889
+ associatedPortalArns?: string[] | undefined;
1890
1890
  /**
1891
1891
  * <p>The VPC that streaming instances will connect to.</p>
1892
1892
  * @public
1893
1893
  */
1894
- vpcId?: string;
1894
+ vpcId?: string | undefined;
1895
1895
  /**
1896
1896
  * <p>The subnets in which network interfaces are created to connect streaming instances to
1897
1897
  * your VPC. At least two of these subnets must be in different availability zones.</p>
1898
1898
  * @public
1899
1899
  */
1900
- subnetIds?: string[];
1900
+ subnetIds?: string[] | undefined;
1901
1901
  /**
1902
1902
  * <p>One or more security groups used to control access from streaming instances to your VPC.
1903
1903
  * </p>
1904
1904
  * @public
1905
1905
  */
1906
- securityGroupIds?: string[];
1906
+ securityGroupIds?: string[] | undefined;
1907
1907
  }
1908
1908
  /**
1909
1909
  * @public
@@ -1913,7 +1913,7 @@ export interface GetNetworkSettingsResponse {
1913
1913
  * <p>The network settings.</p>
1914
1914
  * @public
1915
1915
  */
1916
- networkSettings?: NetworkSettings;
1916
+ networkSettings?: NetworkSettings | undefined;
1917
1917
  }
1918
1918
  /**
1919
1919
  * @public
@@ -1924,12 +1924,12 @@ export interface ListNetworkSettingsRequest {
1924
1924
  * operation.</p>
1925
1925
  * @public
1926
1926
  */
1927
- nextToken?: string;
1927
+ nextToken?: string | undefined;
1928
1928
  /**
1929
1929
  * <p>The maximum number of results to be included in the next page.</p>
1930
1930
  * @public
1931
1931
  */
1932
- maxResults?: number;
1932
+ maxResults?: number | undefined;
1933
1933
  }
1934
1934
  /**
1935
1935
  * <p>The summary of network settings.</p>
@@ -1945,7 +1945,7 @@ export interface NetworkSettingsSummary {
1945
1945
  * <p>The VPC ID of the network settings.</p>
1946
1946
  * @public
1947
1947
  */
1948
- vpcId?: string;
1948
+ vpcId?: string | undefined;
1949
1949
  }
1950
1950
  /**
1951
1951
  * @public
@@ -1955,13 +1955,13 @@ export interface ListNetworkSettingsResponse {
1955
1955
  * <p>The network settings.</p>
1956
1956
  * @public
1957
1957
  */
1958
- networkSettings?: NetworkSettingsSummary[];
1958
+ networkSettings?: NetworkSettingsSummary[] | undefined;
1959
1959
  /**
1960
1960
  * <p>The pagination token used to retrieve the next page of results for this
1961
1961
  * operation.</p>
1962
1962
  * @public
1963
1963
  */
1964
- nextToken?: string;
1964
+ nextToken?: string | undefined;
1965
1965
  }
1966
1966
  /**
1967
1967
  * @public
@@ -1976,19 +1976,19 @@ export interface UpdateNetworkSettingsRequest {
1976
1976
  * <p>The VPC that streaming instances will connect to.</p>
1977
1977
  * @public
1978
1978
  */
1979
- vpcId?: string;
1979
+ vpcId?: string | undefined;
1980
1980
  /**
1981
1981
  * <p>The subnets in which network interfaces are created to connect streaming instances to
1982
1982
  * your VPC. At least two of these subnets must be in different availability zones.</p>
1983
1983
  * @public
1984
1984
  */
1985
- subnetIds?: string[];
1985
+ subnetIds?: string[] | undefined;
1986
1986
  /**
1987
1987
  * <p>One or more security groups used to control access from streaming instances to your
1988
1988
  * VPC.</p>
1989
1989
  * @public
1990
1990
  */
1991
- securityGroupIds?: string[];
1991
+ securityGroupIds?: string[] | undefined;
1992
1992
  /**
1993
1993
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
1994
1994
  * request. Idempotency ensures that an API request completes only once. With an idempotent
@@ -1998,7 +1998,7 @@ export interface UpdateNetworkSettingsRequest {
1998
1998
  * SDK.</p>
1999
1999
  * @public
2000
2000
  */
2001
- clientToken?: string;
2001
+ clientToken?: string | undefined;
2002
2002
  }
2003
2003
  /**
2004
2004
  * @public
@@ -2043,22 +2043,22 @@ export interface CreatePortalRequest {
2043
2043
  * portal.</p>
2044
2044
  * @public
2045
2045
  */
2046
- displayName?: string;
2046
+ displayName?: string | undefined;
2047
2047
  /**
2048
2048
  * <p>The tags to add to the web portal. A tag is a key-value pair.</p>
2049
2049
  * @public
2050
2050
  */
2051
- tags?: Tag[];
2051
+ tags?: Tag[] | undefined;
2052
2052
  /**
2053
2053
  * <p>The customer managed key of the web portal.</p>
2054
2054
  * @public
2055
2055
  */
2056
- customerManagedKey?: string;
2056
+ customerManagedKey?: string | undefined;
2057
2057
  /**
2058
2058
  * <p>The additional encryption context of the portal.</p>
2059
2059
  * @public
2060
2060
  */
2061
- additionalEncryptionContext?: Record<string, string>;
2061
+ additionalEncryptionContext?: Record<string, string> | undefined;
2062
2062
  /**
2063
2063
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
2064
2064
  * request. Idempotency ensures that an API request completes only once. With an idempotent
@@ -2068,7 +2068,7 @@ export interface CreatePortalRequest {
2068
2068
  * SDK.</p>
2069
2069
  * @public
2070
2070
  */
2071
- clientToken?: string;
2071
+ clientToken?: string | undefined;
2072
2072
  /**
2073
2073
  * <p>The type of authentication integration points used when signing into the web portal.
2074
2074
  * Defaults to <code>Standard</code>.</p>
@@ -2083,17 +2083,17 @@ export interface CreatePortalRequest {
2083
2083
  * portal, can be configured in the IAM Identity Center.</p>
2084
2084
  * @public
2085
2085
  */
2086
- authenticationType?: AuthenticationType;
2086
+ authenticationType?: AuthenticationType | undefined;
2087
2087
  /**
2088
2088
  * <p>The type and resources of the underlying instance.</p>
2089
2089
  * @public
2090
2090
  */
2091
- instanceType?: _InstanceType;
2091
+ instanceType?: _InstanceType | undefined;
2092
2092
  /**
2093
2093
  * <p>The maximum number of concurrent sessions for the portal.</p>
2094
2094
  * @public
2095
2095
  */
2096
- maxConcurrentSessions?: number;
2096
+ maxConcurrentSessions?: number | undefined;
2097
2097
  }
2098
2098
  /**
2099
2099
  * @public
@@ -2264,64 +2264,64 @@ export interface Portal {
2264
2264
  * <p>The renderer that is used in streaming sessions.</p>
2265
2265
  * @public
2266
2266
  */
2267
- rendererType?: RendererType;
2267
+ rendererType?: RendererType | undefined;
2268
2268
  /**
2269
2269
  * <p>The browser that users see when using a streaming session.</p>
2270
2270
  * @public
2271
2271
  */
2272
- browserType?: BrowserType;
2272
+ browserType?: BrowserType | undefined;
2273
2273
  /**
2274
2274
  * <p>The status of the web portal.</p>
2275
2275
  * @public
2276
2276
  */
2277
- portalStatus?: PortalStatus;
2277
+ portalStatus?: PortalStatus | undefined;
2278
2278
  /**
2279
2279
  * <p>The endpoint URL of the web portal that users access in order to start streaming
2280
2280
  * sessions.</p>
2281
2281
  * @public
2282
2282
  */
2283
- portalEndpoint?: string;
2283
+ portalEndpoint?: string | undefined;
2284
2284
  /**
2285
2285
  * <p>The name of the web portal.</p>
2286
2286
  * @public
2287
2287
  */
2288
- displayName?: string;
2288
+ displayName?: string | undefined;
2289
2289
  /**
2290
2290
  * <p>The creation date of the web portal.</p>
2291
2291
  * @public
2292
2292
  */
2293
- creationDate?: Date;
2293
+ creationDate?: Date | undefined;
2294
2294
  /**
2295
2295
  * <p>The ARN of the browser settings that is associated with this web portal.</p>
2296
2296
  * @public
2297
2297
  */
2298
- browserSettingsArn?: string;
2298
+ browserSettingsArn?: string | undefined;
2299
2299
  /**
2300
2300
  * <p>The ARN of the user settings that is associated with the web portal.</p>
2301
2301
  * @public
2302
2302
  */
2303
- userSettingsArn?: string;
2303
+ userSettingsArn?: string | undefined;
2304
2304
  /**
2305
2305
  * <p>The ARN of the network settings that is associated with the web portal.</p>
2306
2306
  * @public
2307
2307
  */
2308
- networkSettingsArn?: string;
2308
+ networkSettingsArn?: string | undefined;
2309
2309
  /**
2310
2310
  * <p>The ARN of the trust store that is associated with the web portal.</p>
2311
2311
  * @public
2312
2312
  */
2313
- trustStoreArn?: string;
2313
+ trustStoreArn?: string | undefined;
2314
2314
  /**
2315
2315
  * <p>A message that explains why the web portal is in its current status.</p>
2316
2316
  * @public
2317
2317
  */
2318
- statusReason?: string;
2318
+ statusReason?: string | undefined;
2319
2319
  /**
2320
2320
  * <p>The ARN of the user access logging settings that is associated with the web
2321
2321
  * portal.</p>
2322
2322
  * @public
2323
2323
  */
2324
- userAccessLoggingSettingsArn?: string;
2324
+ userAccessLoggingSettingsArn?: string | undefined;
2325
2325
  /**
2326
2326
  * <p>The type of authentication integration points used when signing into the web portal.
2327
2327
  * Defaults to <code>Standard</code>.</p>
@@ -2336,32 +2336,32 @@ export interface Portal {
2336
2336
  * portal, can be configured in the IAM Identity Center.</p>
2337
2337
  * @public
2338
2338
  */
2339
- authenticationType?: AuthenticationType;
2339
+ authenticationType?: AuthenticationType | undefined;
2340
2340
  /**
2341
2341
  * <p>The ARN of the IP access settings.</p>
2342
2342
  * @public
2343
2343
  */
2344
- ipAccessSettingsArn?: string;
2344
+ ipAccessSettingsArn?: string | undefined;
2345
2345
  /**
2346
2346
  * <p>The customer managed key used to encrypt sensitive information in the portal.</p>
2347
2347
  * @public
2348
2348
  */
2349
- customerManagedKey?: string;
2349
+ customerManagedKey?: string | undefined;
2350
2350
  /**
2351
2351
  * <p>The additional encryption context of the portal.</p>
2352
2352
  * @public
2353
2353
  */
2354
- additionalEncryptionContext?: Record<string, string>;
2354
+ additionalEncryptionContext?: Record<string, string> | undefined;
2355
2355
  /**
2356
2356
  * <p>The type and resources of the underlying instance.</p>
2357
2357
  * @public
2358
2358
  */
2359
- instanceType?: _InstanceType;
2359
+ instanceType?: _InstanceType | undefined;
2360
2360
  /**
2361
2361
  * <p>The maximum number of concurrent sessions for the portal.</p>
2362
2362
  * @public
2363
2363
  */
2364
- maxConcurrentSessions?: number;
2364
+ maxConcurrentSessions?: number | undefined;
2365
2365
  }
2366
2366
  /**
2367
2367
  * @public
@@ -2371,7 +2371,7 @@ export interface GetPortalResponse {
2371
2371
  * <p>The web portal.</p>
2372
2372
  * @public
2373
2373
  */
2374
- portal?: Portal;
2374
+ portal?: Portal | undefined;
2375
2375
  }
2376
2376
  /**
2377
2377
  * @public
@@ -2396,7 +2396,7 @@ export interface GetPortalServiceProviderMetadataResponse {
2396
2396
  * <p>The service provider SAML metadata.</p>
2397
2397
  * @public
2398
2398
  */
2399
- serviceProviderSamlMetadata?: string;
2399
+ serviceProviderSamlMetadata?: string | undefined;
2400
2400
  }
2401
2401
  /**
2402
2402
  * @public
@@ -2407,12 +2407,12 @@ export interface ListPortalsRequest {
2407
2407
  * </p>
2408
2408
  * @public
2409
2409
  */
2410
- nextToken?: string;
2410
+ nextToken?: string | undefined;
2411
2411
  /**
2412
2412
  * <p>The maximum number of results to be included in the next page.</p>
2413
2413
  * @public
2414
2414
  */
2415
- maxResults?: number;
2415
+ maxResults?: number | undefined;
2416
2416
  }
2417
2417
  /**
2418
2418
  * <p>The summary of the portal.</p>
@@ -2428,59 +2428,59 @@ export interface PortalSummary {
2428
2428
  * <p>The renderer that is used in streaming sessions.</p>
2429
2429
  * @public
2430
2430
  */
2431
- rendererType?: RendererType;
2431
+ rendererType?: RendererType | undefined;
2432
2432
  /**
2433
2433
  * <p>The browser type of the web portal.</p>
2434
2434
  * @public
2435
2435
  */
2436
- browserType?: BrowserType;
2436
+ browserType?: BrowserType | undefined;
2437
2437
  /**
2438
2438
  * <p>The status of the web portal.</p>
2439
2439
  * @public
2440
2440
  */
2441
- portalStatus?: PortalStatus;
2441
+ portalStatus?: PortalStatus | undefined;
2442
2442
  /**
2443
2443
  * <p>The endpoint URL of the web portal that users access in order to start streaming
2444
2444
  * sessions.</p>
2445
2445
  * @public
2446
2446
  */
2447
- portalEndpoint?: string;
2447
+ portalEndpoint?: string | undefined;
2448
2448
  /**
2449
2449
  * <p>The name of the web portal.</p>
2450
2450
  * @public
2451
2451
  */
2452
- displayName?: string;
2452
+ displayName?: string | undefined;
2453
2453
  /**
2454
2454
  * <p>The creation date of the web portal.</p>
2455
2455
  * @public
2456
2456
  */
2457
- creationDate?: Date;
2457
+ creationDate?: Date | undefined;
2458
2458
  /**
2459
2459
  * <p>The ARN of the browser settings that is associated with the web portal.</p>
2460
2460
  * @public
2461
2461
  */
2462
- browserSettingsArn?: string;
2462
+ browserSettingsArn?: string | undefined;
2463
2463
  /**
2464
2464
  * <p>The ARN of the user settings that is associated with the web portal.</p>
2465
2465
  * @public
2466
2466
  */
2467
- userSettingsArn?: string;
2467
+ userSettingsArn?: string | undefined;
2468
2468
  /**
2469
2469
  * <p>The ARN of the network settings that is associated with the web portal.</p>
2470
2470
  * @public
2471
2471
  */
2472
- networkSettingsArn?: string;
2472
+ networkSettingsArn?: string | undefined;
2473
2473
  /**
2474
2474
  * <p>The ARN of the trust that is associated with this web portal.</p>
2475
2475
  * @public
2476
2476
  */
2477
- trustStoreArn?: string;
2477
+ trustStoreArn?: string | undefined;
2478
2478
  /**
2479
2479
  * <p>The ARN of the user access logging settings that is associated with the web
2480
2480
  * portal.</p>
2481
2481
  * @public
2482
2482
  */
2483
- userAccessLoggingSettingsArn?: string;
2483
+ userAccessLoggingSettingsArn?: string | undefined;
2484
2484
  /**
2485
2485
  * <p>The type of authentication integration points used when signing into the web portal.
2486
2486
  * Defaults to <code>Standard</code>.</p>
@@ -2495,22 +2495,22 @@ export interface PortalSummary {
2495
2495
  * portal, can be configured in the IAM Identity Center.</p>
2496
2496
  * @public
2497
2497
  */
2498
- authenticationType?: AuthenticationType;
2498
+ authenticationType?: AuthenticationType | undefined;
2499
2499
  /**
2500
2500
  * <p>The ARN of the IP access settings.</p>
2501
2501
  * @public
2502
2502
  */
2503
- ipAccessSettingsArn?: string;
2503
+ ipAccessSettingsArn?: string | undefined;
2504
2504
  /**
2505
2505
  * <p>The type and resources of the underlying instance.</p>
2506
2506
  * @public
2507
2507
  */
2508
- instanceType?: _InstanceType;
2508
+ instanceType?: _InstanceType | undefined;
2509
2509
  /**
2510
2510
  * <p>The maximum number of concurrent sessions for the portal.</p>
2511
2511
  * @public
2512
2512
  */
2513
- maxConcurrentSessions?: number;
2513
+ maxConcurrentSessions?: number | undefined;
2514
2514
  }
2515
2515
  /**
2516
2516
  * @public
@@ -2520,13 +2520,13 @@ export interface ListPortalsResponse {
2520
2520
  * <p>The portals in the list.</p>
2521
2521
  * @public
2522
2522
  */
2523
- portals?: PortalSummary[];
2523
+ portals?: PortalSummary[] | undefined;
2524
2524
  /**
2525
2525
  * <p>The pagination token used to retrieve the next page of results for this operation.
2526
2526
  * </p>
2527
2527
  * @public
2528
2528
  */
2529
- nextToken?: string;
2529
+ nextToken?: string | undefined;
2530
2530
  }
2531
2531
  /**
2532
2532
  * @public
@@ -2542,7 +2542,7 @@ export interface UpdatePortalRequest {
2542
2542
  * portal.</p>
2543
2543
  * @public
2544
2544
  */
2545
- displayName?: string;
2545
+ displayName?: string | undefined;
2546
2546
  /**
2547
2547
  * <p>The type of authentication integration points used when signing into the web portal.
2548
2548
  * Defaults to <code>Standard</code>.</p>
@@ -2557,17 +2557,17 @@ export interface UpdatePortalRequest {
2557
2557
  * portal, can be configured in the IAM Identity Center.</p>
2558
2558
  * @public
2559
2559
  */
2560
- authenticationType?: AuthenticationType;
2560
+ authenticationType?: AuthenticationType | undefined;
2561
2561
  /**
2562
2562
  * <p>The type and resources of the underlying instance.</p>
2563
2563
  * @public
2564
2564
  */
2565
- instanceType?: _InstanceType;
2565
+ instanceType?: _InstanceType | undefined;
2566
2566
  /**
2567
2567
  * <p>The maximum number of concurrent sessions for the portal.</p>
2568
2568
  * @public
2569
2569
  */
2570
- maxConcurrentSessions?: number;
2570
+ maxConcurrentSessions?: number | undefined;
2571
2571
  }
2572
2572
  /**
2573
2573
  * @public
@@ -2577,7 +2577,7 @@ export interface UpdatePortalResponse {
2577
2577
  * <p>The web portal.</p>
2578
2578
  * @public
2579
2579
  */
2580
- portal?: Portal;
2580
+ portal?: Portal | undefined;
2581
2581
  }
2582
2582
  /**
2583
2583
  * @public
@@ -2602,7 +2602,7 @@ export interface TagResourceRequest {
2602
2602
  * SDK.</p>
2603
2603
  * @public
2604
2604
  */
2605
- clientToken?: string;
2605
+ clientToken?: string | undefined;
2606
2606
  }
2607
2607
  /**
2608
2608
  * @public
@@ -2620,7 +2620,7 @@ export declare class TooManyTagsException extends __BaseException {
2620
2620
  * <p>Name of the resource affected.</p>
2621
2621
  * @public
2622
2622
  */
2623
- resourceName?: string;
2623
+ resourceName?: string | undefined;
2624
2624
  /**
2625
2625
  * @internal
2626
2626
  */
@@ -2635,27 +2635,27 @@ export interface CertificateSummary {
2635
2635
  * <p>A hexadecimal identifier for the certificate.</p>
2636
2636
  * @public
2637
2637
  */
2638
- thumbprint?: string;
2638
+ thumbprint?: string | undefined;
2639
2639
  /**
2640
2640
  * <p>The entity the certificate belongs to.</p>
2641
2641
  * @public
2642
2642
  */
2643
- subject?: string;
2643
+ subject?: string | undefined;
2644
2644
  /**
2645
2645
  * <p>The entity that issued the certificate.</p>
2646
2646
  * @public
2647
2647
  */
2648
- issuer?: string;
2648
+ issuer?: string | undefined;
2649
2649
  /**
2650
2650
  * <p>The certificate is not valid before this date.</p>
2651
2651
  * @public
2652
2652
  */
2653
- notValidBefore?: Date;
2653
+ notValidBefore?: Date | undefined;
2654
2654
  /**
2655
2655
  * <p>The certificate is not valid after this date.</p>
2656
2656
  * @public
2657
2657
  */
2658
- notValidAfter?: Date;
2658
+ notValidAfter?: Date | undefined;
2659
2659
  }
2660
2660
  /**
2661
2661
  * @public
@@ -2670,7 +2670,7 @@ export interface CreateTrustStoreRequest {
2670
2670
  * <p>The tags to add to the trust store. A tag is a key-value pair.</p>
2671
2671
  * @public
2672
2672
  */
2673
- tags?: Tag[];
2673
+ tags?: Tag[] | undefined;
2674
2674
  /**
2675
2675
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
2676
2676
  * request. Idempotency ensures that an API request completes only once. With an idempotent
@@ -2680,7 +2680,7 @@ export interface CreateTrustStoreRequest {
2680
2680
  * SDK.</p>
2681
2681
  * @public
2682
2682
  */
2683
- clientToken?: string;
2683
+ clientToken?: string | undefined;
2684
2684
  }
2685
2685
  /**
2686
2686
  * @public
@@ -2730,7 +2730,7 @@ export interface TrustStore {
2730
2730
  * <p>A list of web portal ARNs that this trust store is associated with.</p>
2731
2731
  * @public
2732
2732
  */
2733
- associatedPortalArns?: string[];
2733
+ associatedPortalArns?: string[] | undefined;
2734
2734
  /**
2735
2735
  * <p>The ARN of the trust store.</p>
2736
2736
  * @public
@@ -2745,7 +2745,7 @@ export interface GetTrustStoreResponse {
2745
2745
  * <p>The trust store.</p>
2746
2746
  * @public
2747
2747
  */
2748
- trustStore?: TrustStore;
2748
+ trustStore?: TrustStore | undefined;
2749
2749
  }
2750
2750
  /**
2751
2751
  * @public
@@ -2771,32 +2771,32 @@ export interface Certificate {
2771
2771
  * <p>A hexadecimal identifier for the certificate.</p>
2772
2772
  * @public
2773
2773
  */
2774
- thumbprint?: string;
2774
+ thumbprint?: string | undefined;
2775
2775
  /**
2776
2776
  * <p>The entity the certificate belongs to.</p>
2777
2777
  * @public
2778
2778
  */
2779
- subject?: string;
2779
+ subject?: string | undefined;
2780
2780
  /**
2781
2781
  * <p>The entity that issued the certificate.</p>
2782
2782
  * @public
2783
2783
  */
2784
- issuer?: string;
2784
+ issuer?: string | undefined;
2785
2785
  /**
2786
2786
  * <p>The certificate is not valid before this date.</p>
2787
2787
  * @public
2788
2788
  */
2789
- notValidBefore?: Date;
2789
+ notValidBefore?: Date | undefined;
2790
2790
  /**
2791
2791
  * <p>The certificate is not valid after this date.</p>
2792
2792
  * @public
2793
2793
  */
2794
- notValidAfter?: Date;
2794
+ notValidAfter?: Date | undefined;
2795
2795
  /**
2796
2796
  * <p>The body of the certificate.</p>
2797
2797
  * @public
2798
2798
  */
2799
- body?: Uint8Array;
2799
+ body?: Uint8Array | undefined;
2800
2800
  }
2801
2801
  /**
2802
2802
  * @public
@@ -2811,7 +2811,7 @@ export interface GetTrustStoreCertificateResponse {
2811
2811
  * <p>The certificate of the trust store certificate.</p>
2812
2812
  * @public
2813
2813
  */
2814
- certificate?: Certificate;
2814
+ certificate?: Certificate | undefined;
2815
2815
  }
2816
2816
  /**
2817
2817
  * @public
@@ -2827,12 +2827,12 @@ export interface ListTrustStoreCertificatesRequest {
2827
2827
  * operation.</p>
2828
2828
  * @public
2829
2829
  */
2830
- nextToken?: string;
2830
+ nextToken?: string | undefined;
2831
2831
  /**
2832
2832
  * <p>The maximum number of results to be included in the next page.</p>
2833
2833
  * @public
2834
2834
  */
2835
- maxResults?: number;
2835
+ maxResults?: number | undefined;
2836
2836
  }
2837
2837
  /**
2838
2838
  * @public
@@ -2842,7 +2842,7 @@ export interface ListTrustStoreCertificatesResponse {
2842
2842
  * <p>The certificate list.</p>
2843
2843
  * @public
2844
2844
  */
2845
- certificateList?: CertificateSummary[];
2845
+ certificateList?: CertificateSummary[] | undefined;
2846
2846
  /**
2847
2847
  * <p>The ARN of the trust store.</p>
2848
2848
  * @public
@@ -2853,7 +2853,7 @@ export interface ListTrustStoreCertificatesResponse {
2853
2853
  * operation.&gt;</p>
2854
2854
  * @public
2855
2855
  */
2856
- nextToken?: string;
2856
+ nextToken?: string | undefined;
2857
2857
  }
2858
2858
  /**
2859
2859
  * @public
@@ -2864,12 +2864,12 @@ export interface ListTrustStoresRequest {
2864
2864
  * operation.</p>
2865
2865
  * @public
2866
2866
  */
2867
- nextToken?: string;
2867
+ nextToken?: string | undefined;
2868
2868
  /**
2869
2869
  * <p>The maximum number of results to be included in the next page.</p>
2870
2870
  * @public
2871
2871
  */
2872
- maxResults?: number;
2872
+ maxResults?: number | undefined;
2873
2873
  }
2874
2874
  /**
2875
2875
  * <p>The summary of the trust store.</p>
@@ -2880,7 +2880,7 @@ export interface TrustStoreSummary {
2880
2880
  * <p>The ARN of the trust store.</p>
2881
2881
  * @public
2882
2882
  */
2883
- trustStoreArn?: string;
2883
+ trustStoreArn?: string | undefined;
2884
2884
  }
2885
2885
  /**
2886
2886
  * @public
@@ -2890,13 +2890,13 @@ export interface ListTrustStoresResponse {
2890
2890
  * <p>The trust stores.</p>
2891
2891
  * @public
2892
2892
  */
2893
- trustStores?: TrustStoreSummary[];
2893
+ trustStores?: TrustStoreSummary[] | undefined;
2894
2894
  /**
2895
2895
  * <p>The pagination token used to retrieve the next page of results for this
2896
2896
  * operation.</p>
2897
2897
  * @public
2898
2898
  */
2899
- nextToken?: string;
2899
+ nextToken?: string | undefined;
2900
2900
  }
2901
2901
  /**
2902
2902
  * @public
@@ -2911,12 +2911,12 @@ export interface UpdateTrustStoreRequest {
2911
2911
  * <p>A list of CA certificates to add to the trust store.</p>
2912
2912
  * @public
2913
2913
  */
2914
- certificatesToAdd?: Uint8Array[];
2914
+ certificatesToAdd?: Uint8Array[] | undefined;
2915
2915
  /**
2916
2916
  * <p>A list of CA certificates to delete from a trust store.</p>
2917
2917
  * @public
2918
2918
  */
2919
- certificatesToDelete?: string[];
2919
+ certificatesToDelete?: string[] | undefined;
2920
2920
  /**
2921
2921
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
2922
2922
  * request. Idempotency ensures that an API request completes only once. With an idempotent
@@ -2926,7 +2926,7 @@ export interface UpdateTrustStoreRequest {
2926
2926
  * SDK.</p>
2927
2927
  * @public
2928
2928
  */
2929
- clientToken?: string;
2929
+ clientToken?: string | undefined;
2930
2930
  }
2931
2931
  /**
2932
2932
  * @public
@@ -2971,7 +2971,7 @@ export interface CreateUserAccessLoggingSettingsRequest {
2971
2971
  * <p>The tags to add to the user settings resource. A tag is a key-value pair.</p>
2972
2972
  * @public
2973
2973
  */
2974
- tags?: Tag[];
2974
+ tags?: Tag[] | undefined;
2975
2975
  /**
2976
2976
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
2977
2977
  * request. Idempotency ensures that an API request completes only once. With an idempotent
@@ -2981,7 +2981,7 @@ export interface CreateUserAccessLoggingSettingsRequest {
2981
2981
  * SDK.</p>
2982
2982
  * @public
2983
2983
  */
2984
- clientToken?: string;
2984
+ clientToken?: string | undefined;
2985
2985
  }
2986
2986
  /**
2987
2987
  * @public
@@ -3033,12 +3033,12 @@ export interface UserAccessLoggingSettings {
3033
3033
  * with.</p>
3034
3034
  * @public
3035
3035
  */
3036
- associatedPortalArns?: string[];
3036
+ associatedPortalArns?: string[] | undefined;
3037
3037
  /**
3038
3038
  * <p>The ARN of the Kinesis stream.</p>
3039
3039
  * @public
3040
3040
  */
3041
- kinesisStreamArn?: string;
3041
+ kinesisStreamArn?: string | undefined;
3042
3042
  }
3043
3043
  /**
3044
3044
  * @public
@@ -3048,7 +3048,7 @@ export interface GetUserAccessLoggingSettingsResponse {
3048
3048
  * <p>The user access logging settings.</p>
3049
3049
  * @public
3050
3050
  */
3051
- userAccessLoggingSettings?: UserAccessLoggingSettings;
3051
+ userAccessLoggingSettings?: UserAccessLoggingSettings | undefined;
3052
3052
  }
3053
3053
  /**
3054
3054
  * @public
@@ -3059,12 +3059,12 @@ export interface ListUserAccessLoggingSettingsRequest {
3059
3059
  * operation.</p>
3060
3060
  * @public
3061
3061
  */
3062
- nextToken?: string;
3062
+ nextToken?: string | undefined;
3063
3063
  /**
3064
3064
  * <p>The maximum number of results to be included in the next page.</p>
3065
3065
  * @public
3066
3066
  */
3067
- maxResults?: number;
3067
+ maxResults?: number | undefined;
3068
3068
  }
3069
3069
  /**
3070
3070
  * <p>The summary of user access logging settings.</p>
@@ -3080,7 +3080,7 @@ export interface UserAccessLoggingSettingsSummary {
3080
3080
  * <p>The ARN of the Kinesis stream.</p>
3081
3081
  * @public
3082
3082
  */
3083
- kinesisStreamArn?: string;
3083
+ kinesisStreamArn?: string | undefined;
3084
3084
  }
3085
3085
  /**
3086
3086
  * @public
@@ -3090,13 +3090,13 @@ export interface ListUserAccessLoggingSettingsResponse {
3090
3090
  * <p>The user access logging settings.</p>
3091
3091
  * @public
3092
3092
  */
3093
- userAccessLoggingSettings?: UserAccessLoggingSettingsSummary[];
3093
+ userAccessLoggingSettings?: UserAccessLoggingSettingsSummary[] | undefined;
3094
3094
  /**
3095
3095
  * <p>The pagination token used to retrieve the next page of results for this
3096
3096
  * operation.</p>
3097
3097
  * @public
3098
3098
  */
3099
- nextToken?: string;
3099
+ nextToken?: string | undefined;
3100
3100
  }
3101
3101
  /**
3102
3102
  * @public
@@ -3111,7 +3111,7 @@ export interface UpdateUserAccessLoggingSettingsRequest {
3111
3111
  * <p>The ARN of the Kinesis stream.</p>
3112
3112
  * @public
3113
3113
  */
3114
- kinesisStreamArn?: string;
3114
+ kinesisStreamArn?: string | undefined;
3115
3115
  /**
3116
3116
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
3117
3117
  * request. Idempotency ensures that an API request completes only once. With an idempotent
@@ -3121,7 +3121,7 @@ export interface UpdateUserAccessLoggingSettingsRequest {
3121
3121
  * SDK.</p>
3122
3122
  * @public
3123
3123
  */
3124
- clientToken?: string;
3124
+ clientToken?: string | undefined;
3125
3125
  }
3126
3126
  /**
3127
3127
  * @public
@@ -3147,12 +3147,12 @@ export interface CookieSpecification {
3147
3147
  * <p>The name of the cookie.</p>
3148
3148
  * @public
3149
3149
  */
3150
- name?: string;
3150
+ name?: string | undefined;
3151
3151
  /**
3152
3152
  * <p>The path of the cookie.</p>
3153
3153
  * @public
3154
3154
  */
3155
- path?: string;
3155
+ path?: string | undefined;
3156
3156
  }
3157
3157
  /**
3158
3158
  * <p>The configuration that specifies which cookies should be synchronized from the end
@@ -3171,7 +3171,7 @@ export interface CookieSynchronizationConfiguration {
3171
3171
  * browser.</p>
3172
3172
  * @public
3173
3173
  */
3174
- blocklist?: CookieSpecification[];
3174
+ blocklist?: CookieSpecification[] | undefined;
3175
3175
  }
3176
3176
  /**
3177
3177
  * @public
@@ -3222,19 +3222,19 @@ export interface CreateUserSettingsRequest {
3222
3222
  * <p>The tags to add to the user settings resource. A tag is a key-value pair.</p>
3223
3223
  * @public
3224
3224
  */
3225
- tags?: Tag[];
3225
+ tags?: Tag[] | undefined;
3226
3226
  /**
3227
3227
  * <p>The amount of time that a streaming session remains active after users
3228
3228
  * disconnect.</p>
3229
3229
  * @public
3230
3230
  */
3231
- disconnectTimeoutInMinutes?: number;
3231
+ disconnectTimeoutInMinutes?: number | undefined;
3232
3232
  /**
3233
3233
  * <p>The amount of time that users can be idle (inactive) before they are disconnected from
3234
3234
  * their streaming session and the disconnect timeout interval begins.</p>
3235
3235
  * @public
3236
3236
  */
3237
- idleDisconnectTimeoutInMinutes?: number;
3237
+ idleDisconnectTimeoutInMinutes?: number | undefined;
3238
3238
  /**
3239
3239
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
3240
3240
  * request. Idempotency ensures that an API request completes only once. With an idempotent
@@ -3244,30 +3244,30 @@ export interface CreateUserSettingsRequest {
3244
3244
  * SDK.</p>
3245
3245
  * @public
3246
3246
  */
3247
- clientToken?: string;
3247
+ clientToken?: string | undefined;
3248
3248
  /**
3249
3249
  * <p>The configuration that specifies which cookies should be synchronized from the end
3250
3250
  * user's local browser to the remote browser.</p>
3251
3251
  * @public
3252
3252
  */
3253
- cookieSynchronizationConfiguration?: CookieSynchronizationConfiguration;
3253
+ cookieSynchronizationConfiguration?: CookieSynchronizationConfiguration | undefined;
3254
3254
  /**
3255
3255
  * <p>The customer managed key used to encrypt sensitive information in the user
3256
3256
  * settings.</p>
3257
3257
  * @public
3258
3258
  */
3259
- customerManagedKey?: string;
3259
+ customerManagedKey?: string | undefined;
3260
3260
  /**
3261
3261
  * <p>The additional encryption context of the user settings.</p>
3262
3262
  * @public
3263
3263
  */
3264
- additionalEncryptionContext?: Record<string, string>;
3264
+ additionalEncryptionContext?: Record<string, string> | undefined;
3265
3265
  /**
3266
3266
  * <p>Specifies whether the user can use deep links that open automatically when connecting to
3267
3267
  * a session.</p>
3268
3268
  * @public
3269
3269
  */
3270
- deepLinkAllowed?: EnabledType;
3270
+ deepLinkAllowed?: EnabledType | undefined;
3271
3271
  }
3272
3272
  /**
3273
3273
  * @public
@@ -3320,71 +3320,71 @@ export interface UserSettings {
3320
3320
  * <p>A list of web portal ARNs that this user settings is associated with.</p>
3321
3321
  * @public
3322
3322
  */
3323
- associatedPortalArns?: string[];
3323
+ associatedPortalArns?: string[] | undefined;
3324
3324
  /**
3325
3325
  * <p>Specifies whether the user can copy text from the streaming session to the local
3326
3326
  * device.</p>
3327
3327
  * @public
3328
3328
  */
3329
- copyAllowed?: EnabledType;
3329
+ copyAllowed?: EnabledType | undefined;
3330
3330
  /**
3331
3331
  * <p>Specifies whether the user can paste text from the local device to the streaming
3332
3332
  * session.</p>
3333
3333
  * @public
3334
3334
  */
3335
- pasteAllowed?: EnabledType;
3335
+ pasteAllowed?: EnabledType | undefined;
3336
3336
  /**
3337
3337
  * <p>Specifies whether the user can download files from the streaming session to the local
3338
3338
  * device.</p>
3339
3339
  * @public
3340
3340
  */
3341
- downloadAllowed?: EnabledType;
3341
+ downloadAllowed?: EnabledType | undefined;
3342
3342
  /**
3343
3343
  * <p>Specifies whether the user can upload files from the local device to the streaming
3344
3344
  * session.</p>
3345
3345
  * @public
3346
3346
  */
3347
- uploadAllowed?: EnabledType;
3347
+ uploadAllowed?: EnabledType | undefined;
3348
3348
  /**
3349
3349
  * <p>Specifies whether the user can print to the local device.</p>
3350
3350
  * @public
3351
3351
  */
3352
- printAllowed?: EnabledType;
3352
+ printAllowed?: EnabledType | undefined;
3353
3353
  /**
3354
3354
  * <p>The amount of time that a streaming session remains active after users
3355
3355
  * disconnect.</p>
3356
3356
  * @public
3357
3357
  */
3358
- disconnectTimeoutInMinutes?: number;
3358
+ disconnectTimeoutInMinutes?: number | undefined;
3359
3359
  /**
3360
3360
  * <p>The amount of time that users can be idle (inactive) before they are disconnected from
3361
3361
  * their streaming session and the disconnect timeout interval begins.</p>
3362
3362
  * @public
3363
3363
  */
3364
- idleDisconnectTimeoutInMinutes?: number;
3364
+ idleDisconnectTimeoutInMinutes?: number | undefined;
3365
3365
  /**
3366
3366
  * <p>The configuration that specifies which cookies should be synchronized from the end
3367
3367
  * user's local browser to the remote browser.</p>
3368
3368
  * @public
3369
3369
  */
3370
- cookieSynchronizationConfiguration?: CookieSynchronizationConfiguration;
3370
+ cookieSynchronizationConfiguration?: CookieSynchronizationConfiguration | undefined;
3371
3371
  /**
3372
3372
  * <p>The customer managed key used to encrypt sensitive information in the user
3373
3373
  * settings.</p>
3374
3374
  * @public
3375
3375
  */
3376
- customerManagedKey?: string;
3376
+ customerManagedKey?: string | undefined;
3377
3377
  /**
3378
3378
  * <p>The additional encryption context of the user settings.</p>
3379
3379
  * @public
3380
3380
  */
3381
- additionalEncryptionContext?: Record<string, string>;
3381
+ additionalEncryptionContext?: Record<string, string> | undefined;
3382
3382
  /**
3383
3383
  * <p>Specifies whether the user can use deep links that open automatically when connecting to
3384
3384
  * a session.</p>
3385
3385
  * @public
3386
3386
  */
3387
- deepLinkAllowed?: EnabledType;
3387
+ deepLinkAllowed?: EnabledType | undefined;
3388
3388
  }
3389
3389
  /**
3390
3390
  * @public
@@ -3394,7 +3394,7 @@ export interface GetUserSettingsResponse {
3394
3394
  * <p>The user settings.</p>
3395
3395
  * @public
3396
3396
  */
3397
- userSettings?: UserSettings;
3397
+ userSettings?: UserSettings | undefined;
3398
3398
  }
3399
3399
  /**
3400
3400
  * @public
@@ -3405,12 +3405,12 @@ export interface ListUserSettingsRequest {
3405
3405
  * </p>
3406
3406
  * @public
3407
3407
  */
3408
- nextToken?: string;
3408
+ nextToken?: string | undefined;
3409
3409
  /**
3410
3410
  * <p>The maximum number of results to be included in the next page.</p>
3411
3411
  * @public
3412
3412
  */
3413
- maxResults?: number;
3413
+ maxResults?: number | undefined;
3414
3414
  }
3415
3415
  /**
3416
3416
  * <p>The summary of user settings.</p>
@@ -3427,54 +3427,54 @@ export interface UserSettingsSummary {
3427
3427
  * device.</p>
3428
3428
  * @public
3429
3429
  */
3430
- copyAllowed?: EnabledType;
3430
+ copyAllowed?: EnabledType | undefined;
3431
3431
  /**
3432
3432
  * <p>Specifies whether the user can paste text from the local device to the streaming
3433
3433
  * session.</p>
3434
3434
  * @public
3435
3435
  */
3436
- pasteAllowed?: EnabledType;
3436
+ pasteAllowed?: EnabledType | undefined;
3437
3437
  /**
3438
3438
  * <p>Specifies whether the user can download files from the streaming session to the local
3439
3439
  * device.</p>
3440
3440
  * @public
3441
3441
  */
3442
- downloadAllowed?: EnabledType;
3442
+ downloadAllowed?: EnabledType | undefined;
3443
3443
  /**
3444
3444
  * <p>Specifies whether the user can upload files from the local device to the streaming
3445
3445
  * session.</p>
3446
3446
  * @public
3447
3447
  */
3448
- uploadAllowed?: EnabledType;
3448
+ uploadAllowed?: EnabledType | undefined;
3449
3449
  /**
3450
3450
  * <p>Specifies whether the user can print to the local device.</p>
3451
3451
  * @public
3452
3452
  */
3453
- printAllowed?: EnabledType;
3453
+ printAllowed?: EnabledType | undefined;
3454
3454
  /**
3455
3455
  * <p>The amount of time that a streaming session remains active after users
3456
3456
  * disconnect.</p>
3457
3457
  * @public
3458
3458
  */
3459
- disconnectTimeoutInMinutes?: number;
3459
+ disconnectTimeoutInMinutes?: number | undefined;
3460
3460
  /**
3461
3461
  * <p>The amount of time that users can be idle (inactive) before they are disconnected from
3462
3462
  * their streaming session and the disconnect timeout interval begins.</p>
3463
3463
  * @public
3464
3464
  */
3465
- idleDisconnectTimeoutInMinutes?: number;
3465
+ idleDisconnectTimeoutInMinutes?: number | undefined;
3466
3466
  /**
3467
3467
  * <p>The configuration that specifies which cookies should be synchronized from the end
3468
3468
  * user's local browser to the remote browser.</p>
3469
3469
  * @public
3470
3470
  */
3471
- cookieSynchronizationConfiguration?: CookieSynchronizationConfiguration;
3471
+ cookieSynchronizationConfiguration?: CookieSynchronizationConfiguration | undefined;
3472
3472
  /**
3473
3473
  * <p>Specifies whether the user can use deep links that open automatically when connecting to
3474
3474
  * a session.</p>
3475
3475
  * @public
3476
3476
  */
3477
- deepLinkAllowed?: EnabledType;
3477
+ deepLinkAllowed?: EnabledType | undefined;
3478
3478
  }
3479
3479
  /**
3480
3480
  * @public
@@ -3484,13 +3484,13 @@ export interface ListUserSettingsResponse {
3484
3484
  * <p>The user settings.</p>
3485
3485
  * @public
3486
3486
  */
3487
- userSettings?: UserSettingsSummary[];
3487
+ userSettings?: UserSettingsSummary[] | undefined;
3488
3488
  /**
3489
3489
  * <p>The pagination token used to retrieve the next page of results for this operation.
3490
3490
  * </p>
3491
3491
  * @public
3492
3492
  */
3493
- nextToken?: string;
3493
+ nextToken?: string | undefined;
3494
3494
  }
3495
3495
  /**
3496
3496
  * @public
@@ -3506,42 +3506,42 @@ export interface UpdateUserSettingsRequest {
3506
3506
  * device.</p>
3507
3507
  * @public
3508
3508
  */
3509
- copyAllowed?: EnabledType;
3509
+ copyAllowed?: EnabledType | undefined;
3510
3510
  /**
3511
3511
  * <p>Specifies whether the user can paste text from the local device to the streaming
3512
3512
  * session.</p>
3513
3513
  * @public
3514
3514
  */
3515
- pasteAllowed?: EnabledType;
3515
+ pasteAllowed?: EnabledType | undefined;
3516
3516
  /**
3517
3517
  * <p>Specifies whether the user can download files from the streaming session to the local
3518
3518
  * device.</p>
3519
3519
  * @public
3520
3520
  */
3521
- downloadAllowed?: EnabledType;
3521
+ downloadAllowed?: EnabledType | undefined;
3522
3522
  /**
3523
3523
  * <p>Specifies whether the user can upload files from the local device to the streaming
3524
3524
  * session.</p>
3525
3525
  * @public
3526
3526
  */
3527
- uploadAllowed?: EnabledType;
3527
+ uploadAllowed?: EnabledType | undefined;
3528
3528
  /**
3529
3529
  * <p>Specifies whether the user can print to the local device.</p>
3530
3530
  * @public
3531
3531
  */
3532
- printAllowed?: EnabledType;
3532
+ printAllowed?: EnabledType | undefined;
3533
3533
  /**
3534
3534
  * <p>The amount of time that a streaming session remains active after users
3535
3535
  * disconnect.</p>
3536
3536
  * @public
3537
3537
  */
3538
- disconnectTimeoutInMinutes?: number;
3538
+ disconnectTimeoutInMinutes?: number | undefined;
3539
3539
  /**
3540
3540
  * <p>The amount of time that users can be idle (inactive) before they are disconnected from
3541
3541
  * their streaming session and the disconnect timeout interval begins.</p>
3542
3542
  * @public
3543
3543
  */
3544
- idleDisconnectTimeoutInMinutes?: number;
3544
+ idleDisconnectTimeoutInMinutes?: number | undefined;
3545
3545
  /**
3546
3546
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
3547
3547
  * request. Idempotency ensures that an API request completes only once. With an idempotent
@@ -3551,20 +3551,20 @@ export interface UpdateUserSettingsRequest {
3551
3551
  * SDK.</p>
3552
3552
  * @public
3553
3553
  */
3554
- clientToken?: string;
3554
+ clientToken?: string | undefined;
3555
3555
  /**
3556
3556
  * <p>The configuration that specifies which cookies should be synchronized from the end
3557
3557
  * user's local browser to the remote browser.</p>
3558
3558
  * <p>If the allowlist and blocklist are empty, the configuration becomes null.</p>
3559
3559
  * @public
3560
3560
  */
3561
- cookieSynchronizationConfiguration?: CookieSynchronizationConfiguration;
3561
+ cookieSynchronizationConfiguration?: CookieSynchronizationConfiguration | undefined;
3562
3562
  /**
3563
3563
  * <p>Specifies whether the user can use deep links that open automatically when connecting to
3564
3564
  * a session.</p>
3565
3565
  * @public
3566
3566
  */
3567
- deepLinkAllowed?: EnabledType;
3567
+ deepLinkAllowed?: EnabledType | undefined;
3568
3568
  }
3569
3569
  /**
3570
3570
  * @public