@aws-sdk/client-workspaces-web 3.654.0 → 3.655.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/README.md +31 -6
- package/dist-cjs/index.js +207 -0
- package/dist-es/WorkSpacesWeb.js +6 -0
- package/dist-es/commands/ExpireSessionCommand.js +22 -0
- package/dist-es/commands/GetSessionCommand.js +23 -0
- package/dist-es/commands/ListSessionsCommand.js +23 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +29 -0
- package/dist-es/pagination/ListSessionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +109 -0
- package/dist-types/WorkSpacesWeb.d.ts +28 -6
- package/dist-types/WorkSpacesWebClient.d.ts +12 -8
- package/dist-types/commands/CreateUserAccessLoggingSettingsCommand.d.ts +2 -1
- package/dist-types/commands/ExpireSessionCommand.d.ts +85 -0
- package/dist-types/commands/GetSessionCommand.d.ts +97 -0
- package/dist-types/commands/ListSessionsCommand.d.ts +102 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/index.d.ts +7 -6
- package/dist-types/models/models_0.d.ts +352 -75
- package/dist-types/pagination/ListSessionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/ts3.4/WorkSpacesWeb.d.ts +51 -0
- package/dist-types/ts3.4/WorkSpacesWebClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/ExpireSessionCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListSessionsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +65 -0
- package/dist-types/ts3.4/pagination/ListSessionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +1 -1
|
@@ -390,7 +390,8 @@ export interface CreateBrowserSettingsRequest {
|
|
|
390
390
|
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
391
391
|
* request, if the original request completes successfully, subsequent retries with the same
|
|
392
392
|
* client token returns the result from the original successful request.</p>
|
|
393
|
-
* <p>If you do not specify a client token, one is automatically generated by the Amazon Web Services SDK.
|
|
393
|
+
* <p>If you do not specify a client token, one is automatically generated by the Amazon Web Services SDK.
|
|
394
|
+
* </p>
|
|
394
395
|
* @public
|
|
395
396
|
*/
|
|
396
397
|
clientToken?: string;
|
|
@@ -486,7 +487,8 @@ export interface BrowserSettings {
|
|
|
486
487
|
*/
|
|
487
488
|
browserPolicy?: string;
|
|
488
489
|
/**
|
|
489
|
-
* <p>The customer managed key used to encrypt sensitive information in the browser
|
|
490
|
+
* <p>The customer managed key used to encrypt sensitive information in the browser
|
|
491
|
+
* settings.</p>
|
|
490
492
|
* @public
|
|
491
493
|
*/
|
|
492
494
|
customerManagedKey?: string;
|
|
@@ -511,7 +513,8 @@ export interface GetBrowserSettingsResponse {
|
|
|
511
513
|
*/
|
|
512
514
|
export interface ListBrowserSettingsRequest {
|
|
513
515
|
/**
|
|
514
|
-
* <p>The pagination token used to retrieve the next page of results for this
|
|
516
|
+
* <p>The pagination token used to retrieve the next page of results for this
|
|
517
|
+
* operation.</p>
|
|
515
518
|
* @public
|
|
516
519
|
*/
|
|
517
520
|
nextToken?: string;
|
|
@@ -542,7 +545,8 @@ export interface ListBrowserSettingsResponse {
|
|
|
542
545
|
*/
|
|
543
546
|
browserSettings?: BrowserSettingsSummary[];
|
|
544
547
|
/**
|
|
545
|
-
* <p>The pagination token used to retrieve the next page of results for this
|
|
548
|
+
* <p>The pagination token used to retrieve the next page of results for this
|
|
549
|
+
* operation.</p>
|
|
546
550
|
* @public
|
|
547
551
|
*/
|
|
548
552
|
nextToken?: string;
|
|
@@ -583,6 +587,104 @@ export interface UpdateBrowserSettingsResponse {
|
|
|
583
587
|
*/
|
|
584
588
|
browserSettings: BrowserSettings | undefined;
|
|
585
589
|
}
|
|
590
|
+
/**
|
|
591
|
+
* @public
|
|
592
|
+
*/
|
|
593
|
+
export interface ExpireSessionRequest {
|
|
594
|
+
/**
|
|
595
|
+
* <p>The ID of the web portal for the session.</p>
|
|
596
|
+
* @public
|
|
597
|
+
*/
|
|
598
|
+
portalId: string | undefined;
|
|
599
|
+
/**
|
|
600
|
+
* <p>The ID of the session to expire.</p>
|
|
601
|
+
* @public
|
|
602
|
+
*/
|
|
603
|
+
sessionId: string | undefined;
|
|
604
|
+
}
|
|
605
|
+
/**
|
|
606
|
+
* @public
|
|
607
|
+
*/
|
|
608
|
+
export interface ExpireSessionResponse {
|
|
609
|
+
}
|
|
610
|
+
/**
|
|
611
|
+
* @public
|
|
612
|
+
*/
|
|
613
|
+
export interface GetSessionRequest {
|
|
614
|
+
/**
|
|
615
|
+
* <p>The ID of the web portal for the session.</p>
|
|
616
|
+
* @public
|
|
617
|
+
*/
|
|
618
|
+
portalId: string | undefined;
|
|
619
|
+
/**
|
|
620
|
+
* <p>The ID of the session.</p>
|
|
621
|
+
* @public
|
|
622
|
+
*/
|
|
623
|
+
sessionId: string | undefined;
|
|
624
|
+
}
|
|
625
|
+
/**
|
|
626
|
+
* @public
|
|
627
|
+
* @enum
|
|
628
|
+
*/
|
|
629
|
+
export declare const SessionStatus: {
|
|
630
|
+
readonly ACTIVE: "Active";
|
|
631
|
+
readonly TERMINATED: "Terminated";
|
|
632
|
+
};
|
|
633
|
+
/**
|
|
634
|
+
* @public
|
|
635
|
+
*/
|
|
636
|
+
export type SessionStatus = (typeof SessionStatus)[keyof typeof SessionStatus];
|
|
637
|
+
/**
|
|
638
|
+
* <p>Information about a secure browser session.</p>
|
|
639
|
+
* @public
|
|
640
|
+
*/
|
|
641
|
+
export interface Session {
|
|
642
|
+
/**
|
|
643
|
+
* <p>The ARN of the web portal.</p>
|
|
644
|
+
* @public
|
|
645
|
+
*/
|
|
646
|
+
portalArn?: string;
|
|
647
|
+
/**
|
|
648
|
+
* <p>The ID of the session.</p>
|
|
649
|
+
* @public
|
|
650
|
+
*/
|
|
651
|
+
sessionId?: string;
|
|
652
|
+
/**
|
|
653
|
+
* <p>The username of the session.</p>
|
|
654
|
+
* @public
|
|
655
|
+
*/
|
|
656
|
+
username?: string;
|
|
657
|
+
/**
|
|
658
|
+
* <p>The IP address of the client.</p>
|
|
659
|
+
* @public
|
|
660
|
+
*/
|
|
661
|
+
clientIpAddresses?: string[];
|
|
662
|
+
/**
|
|
663
|
+
* <p>The status of the session.</p>
|
|
664
|
+
* @public
|
|
665
|
+
*/
|
|
666
|
+
status?: SessionStatus;
|
|
667
|
+
/**
|
|
668
|
+
* <p>The start time of the session.</p>
|
|
669
|
+
* @public
|
|
670
|
+
*/
|
|
671
|
+
startTime?: Date;
|
|
672
|
+
/**
|
|
673
|
+
* <p>The end time of the session.</p>
|
|
674
|
+
* @public
|
|
675
|
+
*/
|
|
676
|
+
endTime?: Date;
|
|
677
|
+
}
|
|
678
|
+
/**
|
|
679
|
+
* @public
|
|
680
|
+
*/
|
|
681
|
+
export interface GetSessionResponse {
|
|
682
|
+
/**
|
|
683
|
+
* <p>The sessions in a list.</p>
|
|
684
|
+
* @public
|
|
685
|
+
*/
|
|
686
|
+
session?: Session;
|
|
687
|
+
}
|
|
586
688
|
/**
|
|
587
689
|
* @public
|
|
588
690
|
* @enum
|
|
@@ -765,8 +867,7 @@ export interface CreateIdentityProviderRequest {
|
|
|
765
867
|
* </li>
|
|
766
868
|
* <li>
|
|
767
869
|
* <p>
|
|
768
|
-
* <code>IDPSignout</code> (boolean)
|
|
769
|
-
* <i>optional</i>
|
|
870
|
+
* <code>IDPSignout</code> (boolean) <i>optional</i>
|
|
770
871
|
* </p>
|
|
771
872
|
* </li>
|
|
772
873
|
* <li>
|
|
@@ -1050,7 +1151,8 @@ export interface GetIdentityProviderResponse {
|
|
|
1050
1151
|
*/
|
|
1051
1152
|
export interface ListIdentityProvidersRequest {
|
|
1052
1153
|
/**
|
|
1053
|
-
* <p>The pagination token used to retrieve the next page of results for this
|
|
1154
|
+
* <p>The pagination token used to retrieve the next page of results for this
|
|
1155
|
+
* operation.</p>
|
|
1054
1156
|
* @public
|
|
1055
1157
|
*/
|
|
1056
1158
|
nextToken?: string;
|
|
@@ -1091,7 +1193,8 @@ export interface IdentityProviderSummary {
|
|
|
1091
1193
|
*/
|
|
1092
1194
|
export interface ListIdentityProvidersResponse {
|
|
1093
1195
|
/**
|
|
1094
|
-
* <p>The pagination token used to retrieve the next page of results for this
|
|
1196
|
+
* <p>The pagination token used to retrieve the next page of results for this
|
|
1197
|
+
* operation.</p>
|
|
1095
1198
|
* @public
|
|
1096
1199
|
*/
|
|
1097
1200
|
nextToken?: string;
|
|
@@ -1121,8 +1224,8 @@ export interface UpdateIdentityProviderRequest {
|
|
|
1121
1224
|
*/
|
|
1122
1225
|
identityProviderType?: IdentityProviderType;
|
|
1123
1226
|
/**
|
|
1124
|
-
* <p>The details of the identity provider. The following list describes the provider detail
|
|
1125
|
-
* each identity provider type. </p>
|
|
1227
|
+
* <p>The details of the identity provider. The following list describes the provider detail
|
|
1228
|
+
* keys for each identity provider type. </p>
|
|
1126
1229
|
* <ul>
|
|
1127
1230
|
* <li>
|
|
1128
1231
|
* <p>For Google and Login with Amazon:</p>
|
|
@@ -1231,28 +1334,28 @@ export interface UpdateIdentityProviderRequest {
|
|
|
1231
1334
|
* <p>
|
|
1232
1335
|
* <code>authorize_url</code>
|
|
1233
1336
|
* <i>if not available from discovery URL specified by
|
|
1234
|
-
*
|
|
1337
|
+
* <code>oidc_issuer</code> key</i>
|
|
1235
1338
|
* </p>
|
|
1236
1339
|
* </li>
|
|
1237
1340
|
* <li>
|
|
1238
1341
|
* <p>
|
|
1239
1342
|
* <code>token_url</code>
|
|
1240
1343
|
* <i>if not available from discovery URL specified by
|
|
1241
|
-
*
|
|
1344
|
+
* <code>oidc_issuer</code> key</i>
|
|
1242
1345
|
* </p>
|
|
1243
1346
|
* </li>
|
|
1244
1347
|
* <li>
|
|
1245
1348
|
* <p>
|
|
1246
1349
|
* <code>attributes_url</code>
|
|
1247
1350
|
* <i>if not available from discovery URL specified by
|
|
1248
|
-
*
|
|
1351
|
+
* <code>oidc_issuer</code> key</i>
|
|
1249
1352
|
* </p>
|
|
1250
1353
|
* </li>
|
|
1251
1354
|
* <li>
|
|
1252
1355
|
* <p>
|
|
1253
1356
|
* <code>jwks_uri</code>
|
|
1254
1357
|
* <i>if not available from discovery URL specified by
|
|
1255
|
-
*
|
|
1358
|
+
* <code>oidc_issuer</code> key</i>
|
|
1256
1359
|
* </p>
|
|
1257
1360
|
* </li>
|
|
1258
1361
|
* </ul>
|
|
@@ -1420,7 +1523,8 @@ export interface IpAccessSettings {
|
|
|
1420
1523
|
*/
|
|
1421
1524
|
ipAccessSettingsArn: string | undefined;
|
|
1422
1525
|
/**
|
|
1423
|
-
* <p>A list of web portal ARNs that this IP access settings resource is associated
|
|
1526
|
+
* <p>A list of web portal ARNs that this IP access settings resource is associated
|
|
1527
|
+
* with.</p>
|
|
1424
1528
|
* @public
|
|
1425
1529
|
*/
|
|
1426
1530
|
associatedPortalArns?: string[];
|
|
@@ -1445,7 +1549,8 @@ export interface IpAccessSettings {
|
|
|
1445
1549
|
*/
|
|
1446
1550
|
creationDate?: Date;
|
|
1447
1551
|
/**
|
|
1448
|
-
* <p>The customer managed key used to encrypt sensitive information in the IP access
|
|
1552
|
+
* <p>The customer managed key used to encrypt sensitive information in the IP access
|
|
1553
|
+
* settings.</p>
|
|
1449
1554
|
* @public
|
|
1450
1555
|
*/
|
|
1451
1556
|
customerManagedKey?: string;
|
|
@@ -1470,7 +1575,8 @@ export interface GetIpAccessSettingsResponse {
|
|
|
1470
1575
|
*/
|
|
1471
1576
|
export interface ListIpAccessSettingsRequest {
|
|
1472
1577
|
/**
|
|
1473
|
-
* <p>The pagination token used to retrieve the next page of results for this
|
|
1578
|
+
* <p>The pagination token used to retrieve the next page of results for this
|
|
1579
|
+
* operation.</p>
|
|
1474
1580
|
* @public
|
|
1475
1581
|
*/
|
|
1476
1582
|
nextToken?: string;
|
|
@@ -1516,7 +1622,8 @@ export interface ListIpAccessSettingsResponse {
|
|
|
1516
1622
|
*/
|
|
1517
1623
|
ipAccessSettings?: IpAccessSettingsSummary[];
|
|
1518
1624
|
/**
|
|
1519
|
-
* <p>The pagination token used to retrieve the next page of results for this
|
|
1625
|
+
* <p>The pagination token used to retrieve the next page of results for this
|
|
1626
|
+
* operation.</p>
|
|
1520
1627
|
* @public
|
|
1521
1628
|
*/
|
|
1522
1629
|
nextToken?: string;
|
|
@@ -1566,6 +1673,111 @@ export interface UpdateIpAccessSettingsResponse {
|
|
|
1566
1673
|
*/
|
|
1567
1674
|
ipAccessSettings: IpAccessSettings | undefined;
|
|
1568
1675
|
}
|
|
1676
|
+
/**
|
|
1677
|
+
* @public
|
|
1678
|
+
* @enum
|
|
1679
|
+
*/
|
|
1680
|
+
export declare const SessionSortBy: {
|
|
1681
|
+
readonly START_TIME_ASCENDING: "StartTimeAscending";
|
|
1682
|
+
readonly START_TIME_DESCENDING: "StartTimeDescending";
|
|
1683
|
+
};
|
|
1684
|
+
/**
|
|
1685
|
+
* @public
|
|
1686
|
+
*/
|
|
1687
|
+
export type SessionSortBy = (typeof SessionSortBy)[keyof typeof SessionSortBy];
|
|
1688
|
+
/**
|
|
1689
|
+
* @public
|
|
1690
|
+
*/
|
|
1691
|
+
export interface ListSessionsRequest {
|
|
1692
|
+
/**
|
|
1693
|
+
* <p>The ID of the web portal for the sessions.</p>
|
|
1694
|
+
* @public
|
|
1695
|
+
*/
|
|
1696
|
+
portalId: string | undefined;
|
|
1697
|
+
/**
|
|
1698
|
+
* <p>The username of the session.</p>
|
|
1699
|
+
* @public
|
|
1700
|
+
*/
|
|
1701
|
+
username?: string;
|
|
1702
|
+
/**
|
|
1703
|
+
* <p>The ID of the session.</p>
|
|
1704
|
+
* @public
|
|
1705
|
+
*/
|
|
1706
|
+
sessionId?: string;
|
|
1707
|
+
/**
|
|
1708
|
+
* <p>The method in which the returned sessions should be sorted.</p>
|
|
1709
|
+
* @public
|
|
1710
|
+
*/
|
|
1711
|
+
sortBy?: SessionSortBy;
|
|
1712
|
+
/**
|
|
1713
|
+
* <p>The status of the session.</p>
|
|
1714
|
+
* @public
|
|
1715
|
+
*/
|
|
1716
|
+
status?: SessionStatus;
|
|
1717
|
+
/**
|
|
1718
|
+
* <p>The maximum number of results to be included in the next page.</p>
|
|
1719
|
+
* @public
|
|
1720
|
+
*/
|
|
1721
|
+
maxResults?: number;
|
|
1722
|
+
/**
|
|
1723
|
+
* <p>The pagination token used to retrieve the next page of results for this
|
|
1724
|
+
* operation.</p>
|
|
1725
|
+
* @public
|
|
1726
|
+
*/
|
|
1727
|
+
nextToken?: string;
|
|
1728
|
+
}
|
|
1729
|
+
/**
|
|
1730
|
+
* <p>Summary information about a secure browser session.</p>
|
|
1731
|
+
* @public
|
|
1732
|
+
*/
|
|
1733
|
+
export interface SessionSummary {
|
|
1734
|
+
/**
|
|
1735
|
+
* <p>The ARN of the web portal.</p>
|
|
1736
|
+
* @public
|
|
1737
|
+
*/
|
|
1738
|
+
portalArn?: string;
|
|
1739
|
+
/**
|
|
1740
|
+
* <p>The ID of the session.</p>
|
|
1741
|
+
* @public
|
|
1742
|
+
*/
|
|
1743
|
+
sessionId?: string;
|
|
1744
|
+
/**
|
|
1745
|
+
* <p>The username of the session.</p>
|
|
1746
|
+
* @public
|
|
1747
|
+
*/
|
|
1748
|
+
username?: string;
|
|
1749
|
+
/**
|
|
1750
|
+
* <p>The status of the session.</p>
|
|
1751
|
+
* @public
|
|
1752
|
+
*/
|
|
1753
|
+
status?: SessionStatus;
|
|
1754
|
+
/**
|
|
1755
|
+
* <p>The start time of the session.</p>
|
|
1756
|
+
* @public
|
|
1757
|
+
*/
|
|
1758
|
+
startTime?: Date;
|
|
1759
|
+
/**
|
|
1760
|
+
* <p>The end time of the session.</p>
|
|
1761
|
+
* @public
|
|
1762
|
+
*/
|
|
1763
|
+
endTime?: Date;
|
|
1764
|
+
}
|
|
1765
|
+
/**
|
|
1766
|
+
* @public
|
|
1767
|
+
*/
|
|
1768
|
+
export interface ListSessionsResponse {
|
|
1769
|
+
/**
|
|
1770
|
+
* <p>The sessions in a list.</p>
|
|
1771
|
+
* @public
|
|
1772
|
+
*/
|
|
1773
|
+
sessions: SessionSummary[] | undefined;
|
|
1774
|
+
/**
|
|
1775
|
+
* <p>The pagination token used to retrieve the next page of results for this
|
|
1776
|
+
* operation.</p>
|
|
1777
|
+
* @public
|
|
1778
|
+
*/
|
|
1779
|
+
nextToken?: string;
|
|
1780
|
+
}
|
|
1569
1781
|
/**
|
|
1570
1782
|
* @public
|
|
1571
1783
|
*/
|
|
@@ -1596,12 +1808,14 @@ export interface CreateNetworkSettingsRequest {
|
|
|
1596
1808
|
*/
|
|
1597
1809
|
vpcId: string | undefined;
|
|
1598
1810
|
/**
|
|
1599
|
-
* <p>The subnets in which network interfaces are created to connect streaming instances to
|
|
1811
|
+
* <p>The subnets in which network interfaces are created to connect streaming instances to
|
|
1812
|
+
* your VPC. At least two of these subnets must be in different availability zones.</p>
|
|
1600
1813
|
* @public
|
|
1601
1814
|
*/
|
|
1602
1815
|
subnetIds: string[] | undefined;
|
|
1603
1816
|
/**
|
|
1604
|
-
* <p>One or more security groups used to control access from streaming instances to your
|
|
1817
|
+
* <p>One or more security groups used to control access from streaming instances to your
|
|
1818
|
+
* VPC.</p>
|
|
1605
1819
|
* @public
|
|
1606
1820
|
*/
|
|
1607
1821
|
securityGroupIds: string[] | undefined;
|
|
@@ -1679,12 +1893,14 @@ export interface NetworkSettings {
|
|
|
1679
1893
|
*/
|
|
1680
1894
|
vpcId?: string;
|
|
1681
1895
|
/**
|
|
1682
|
-
* <p>The subnets in which network interfaces are created to connect streaming instances to
|
|
1896
|
+
* <p>The subnets in which network interfaces are created to connect streaming instances to
|
|
1897
|
+
* your VPC. At least two of these subnets must be in different availability zones.</p>
|
|
1683
1898
|
* @public
|
|
1684
1899
|
*/
|
|
1685
1900
|
subnetIds?: string[];
|
|
1686
1901
|
/**
|
|
1687
|
-
* <p>One or more security groups used to control access from streaming instances to your VPC.
|
|
1902
|
+
* <p>One or more security groups used to control access from streaming instances to your VPC.
|
|
1903
|
+
* </p>
|
|
1688
1904
|
* @public
|
|
1689
1905
|
*/
|
|
1690
1906
|
securityGroupIds?: string[];
|
|
@@ -1704,7 +1920,8 @@ export interface GetNetworkSettingsResponse {
|
|
|
1704
1920
|
*/
|
|
1705
1921
|
export interface ListNetworkSettingsRequest {
|
|
1706
1922
|
/**
|
|
1707
|
-
* <p>The pagination token used to retrieve the next page of results for this
|
|
1923
|
+
* <p>The pagination token used to retrieve the next page of results for this
|
|
1924
|
+
* operation.</p>
|
|
1708
1925
|
* @public
|
|
1709
1926
|
*/
|
|
1710
1927
|
nextToken?: string;
|
|
@@ -1740,7 +1957,8 @@ export interface ListNetworkSettingsResponse {
|
|
|
1740
1957
|
*/
|
|
1741
1958
|
networkSettings?: NetworkSettingsSummary[];
|
|
1742
1959
|
/**
|
|
1743
|
-
* <p>The pagination token used to retrieve the next page of results for this
|
|
1960
|
+
* <p>The pagination token used to retrieve the next page of results for this
|
|
1961
|
+
* operation.</p>
|
|
1744
1962
|
* @public
|
|
1745
1963
|
*/
|
|
1746
1964
|
nextToken?: string;
|
|
@@ -1760,12 +1978,14 @@ export interface UpdateNetworkSettingsRequest {
|
|
|
1760
1978
|
*/
|
|
1761
1979
|
vpcId?: string;
|
|
1762
1980
|
/**
|
|
1763
|
-
* <p>The subnets in which network interfaces are created to connect streaming instances to
|
|
1981
|
+
* <p>The subnets in which network interfaces are created to connect streaming instances to
|
|
1982
|
+
* your VPC. At least two of these subnets must be in different availability zones.</p>
|
|
1764
1983
|
* @public
|
|
1765
1984
|
*/
|
|
1766
1985
|
subnetIds?: string[];
|
|
1767
1986
|
/**
|
|
1768
|
-
* <p>One or more security groups used to control access from streaming instances to your
|
|
1987
|
+
* <p>One or more security groups used to control access from streaming instances to your
|
|
1988
|
+
* VPC.</p>
|
|
1769
1989
|
* @public
|
|
1770
1990
|
*/
|
|
1771
1991
|
securityGroupIds?: string[];
|
|
@@ -1819,7 +2039,8 @@ export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
|
1819
2039
|
*/
|
|
1820
2040
|
export interface CreatePortalRequest {
|
|
1821
2041
|
/**
|
|
1822
|
-
* <p>The name of the web portal. This is not visible to users who log into the web
|
|
2042
|
+
* <p>The name of the web portal. This is not visible to users who log into the web
|
|
2043
|
+
* portal.</p>
|
|
1823
2044
|
* @public
|
|
1824
2045
|
*/
|
|
1825
2046
|
displayName?: string;
|
|
@@ -1857,9 +2078,9 @@ export interface CreatePortalRequest {
|
|
|
1857
2078
|
* provider with your web portal. User and group access to your web portal is controlled
|
|
1858
2079
|
* through your identity provider.</p>
|
|
1859
2080
|
* <p>
|
|
1860
|
-
* <code>IAM Identity Center</code> web portals are authenticated through IAM Identity Center
|
|
1861
|
-
* external identity provider integration), plus user and group access to your web
|
|
1862
|
-
*
|
|
2081
|
+
* <code>IAM Identity Center</code> web portals are authenticated through IAM Identity Center. Identity sources
|
|
2082
|
+
* (including external identity provider integration), plus user and group access to your web
|
|
2083
|
+
* portal, can be configured in the IAM Identity Center.</p>
|
|
1863
2084
|
* @public
|
|
1864
2085
|
*/
|
|
1865
2086
|
authenticationType?: AuthenticationType;
|
|
@@ -1884,7 +2105,8 @@ export interface CreatePortalResponse {
|
|
|
1884
2105
|
*/
|
|
1885
2106
|
portalArn: string | undefined;
|
|
1886
2107
|
/**
|
|
1887
|
-
* <p>The endpoint URL of the web portal that users access in order to start streaming
|
|
2108
|
+
* <p>The endpoint URL of the web portal that users access in order to start streaming
|
|
2109
|
+
* sessions.</p>
|
|
1888
2110
|
* @public
|
|
1889
2111
|
*/
|
|
1890
2112
|
portalEndpoint: string | undefined;
|
|
@@ -2095,7 +2317,8 @@ export interface Portal {
|
|
|
2095
2317
|
*/
|
|
2096
2318
|
statusReason?: string;
|
|
2097
2319
|
/**
|
|
2098
|
-
* <p>The ARN of the user access logging settings that is associated with the web
|
|
2320
|
+
* <p>The ARN of the user access logging settings that is associated with the web
|
|
2321
|
+
* portal.</p>
|
|
2099
2322
|
* @public
|
|
2100
2323
|
*/
|
|
2101
2324
|
userAccessLoggingSettingsArn?: string;
|
|
@@ -2108,9 +2331,9 @@ export interface Portal {
|
|
|
2108
2331
|
* provider with your web portal. User and group access to your web portal is controlled
|
|
2109
2332
|
* through your identity provider.</p>
|
|
2110
2333
|
* <p>
|
|
2111
|
-
* <code>IAM Identity Center</code> web portals are authenticated through IAM Identity Center
|
|
2112
|
-
* external identity provider integration), plus user and group access to your web
|
|
2113
|
-
* can be configured in the IAM Identity Center.</p>
|
|
2334
|
+
* <code>IAM Identity Center</code> web portals are authenticated through IAM Identity Center. Identity sources
|
|
2335
|
+
* (including external identity provider integration), plus user and group access to your web
|
|
2336
|
+
* portal, can be configured in the IAM Identity Center.</p>
|
|
2114
2337
|
* @public
|
|
2115
2338
|
*/
|
|
2116
2339
|
authenticationType?: AuthenticationType;
|
|
@@ -2180,7 +2403,8 @@ export interface GetPortalServiceProviderMetadataResponse {
|
|
|
2180
2403
|
*/
|
|
2181
2404
|
export interface ListPortalsRequest {
|
|
2182
2405
|
/**
|
|
2183
|
-
* <p>The pagination token used to retrieve the next page of results for this operation.
|
|
2406
|
+
* <p>The pagination token used to retrieve the next page of results for this operation.
|
|
2407
|
+
* </p>
|
|
2184
2408
|
* @public
|
|
2185
2409
|
*/
|
|
2186
2410
|
nextToken?: string;
|
|
@@ -2252,7 +2476,8 @@ export interface PortalSummary {
|
|
|
2252
2476
|
*/
|
|
2253
2477
|
trustStoreArn?: string;
|
|
2254
2478
|
/**
|
|
2255
|
-
* <p>The ARN of the user access logging settings that is associated with the web
|
|
2479
|
+
* <p>The ARN of the user access logging settings that is associated with the web
|
|
2480
|
+
* portal.</p>
|
|
2256
2481
|
* @public
|
|
2257
2482
|
*/
|
|
2258
2483
|
userAccessLoggingSettingsArn?: string;
|
|
@@ -2265,9 +2490,9 @@ export interface PortalSummary {
|
|
|
2265
2490
|
* provider with your web portal. User and group access to your web portal is controlled
|
|
2266
2491
|
* through your identity provider.</p>
|
|
2267
2492
|
* <p>
|
|
2268
|
-
* <code>IAM Identity Center</code> web portals are authenticated through IAM Identity Center
|
|
2269
|
-
* external identity provider integration), plus user and group access to your web
|
|
2270
|
-
* can be configured in the IAM Identity Center.</p>
|
|
2493
|
+
* <code>IAM Identity Center</code> web portals are authenticated through IAM Identity Center. Identity sources
|
|
2494
|
+
* (including external identity provider integration), plus user and group access to your web
|
|
2495
|
+
* portal, can be configured in the IAM Identity Center.</p>
|
|
2271
2496
|
* @public
|
|
2272
2497
|
*/
|
|
2273
2498
|
authenticationType?: AuthenticationType;
|
|
@@ -2297,7 +2522,8 @@ export interface ListPortalsResponse {
|
|
|
2297
2522
|
*/
|
|
2298
2523
|
portals?: PortalSummary[];
|
|
2299
2524
|
/**
|
|
2300
|
-
* <p>The pagination token used to retrieve the next page of results for this operation.
|
|
2525
|
+
* <p>The pagination token used to retrieve the next page of results for this operation.
|
|
2526
|
+
* </p>
|
|
2301
2527
|
* @public
|
|
2302
2528
|
*/
|
|
2303
2529
|
nextToken?: string;
|
|
@@ -2312,7 +2538,8 @@ export interface UpdatePortalRequest {
|
|
|
2312
2538
|
*/
|
|
2313
2539
|
portalArn: string | undefined;
|
|
2314
2540
|
/**
|
|
2315
|
-
* <p>The name of the web portal. This is not visible to users who log into the web
|
|
2541
|
+
* <p>The name of the web portal. This is not visible to users who log into the web
|
|
2542
|
+
* portal.</p>
|
|
2316
2543
|
* @public
|
|
2317
2544
|
*/
|
|
2318
2545
|
displayName?: string;
|
|
@@ -2325,9 +2552,9 @@ export interface UpdatePortalRequest {
|
|
|
2325
2552
|
* provider with your web portal. User and group access to your web portal is controlled
|
|
2326
2553
|
* through your identity provider.</p>
|
|
2327
2554
|
* <p>
|
|
2328
|
-
* <code>IAM Identity Center</code> web portals are authenticated through IAM Identity Center
|
|
2329
|
-
* external identity provider integration), plus user and group access to your web
|
|
2330
|
-
* can be configured in the IAM Identity Center.</p>
|
|
2555
|
+
* <code>IAM Identity Center</code> web portals are authenticated through IAM Identity Center. Identity sources
|
|
2556
|
+
* (including external identity provider integration), plus user and group access to your web
|
|
2557
|
+
* portal, can be configured in the IAM Identity Center.</p>
|
|
2331
2558
|
* @public
|
|
2332
2559
|
*/
|
|
2333
2560
|
authenticationType?: AuthenticationType;
|
|
@@ -2596,7 +2823,8 @@ export interface ListTrustStoreCertificatesRequest {
|
|
|
2596
2823
|
*/
|
|
2597
2824
|
trustStoreArn: string | undefined;
|
|
2598
2825
|
/**
|
|
2599
|
-
* <p>The pagination token used to retrieve the next page of results for this
|
|
2826
|
+
* <p>The pagination token used to retrieve the next page of results for this
|
|
2827
|
+
* operation.</p>
|
|
2600
2828
|
* @public
|
|
2601
2829
|
*/
|
|
2602
2830
|
nextToken?: string;
|
|
@@ -2621,7 +2849,8 @@ export interface ListTrustStoreCertificatesResponse {
|
|
|
2621
2849
|
*/
|
|
2622
2850
|
trustStoreArn: string | undefined;
|
|
2623
2851
|
/**
|
|
2624
|
-
* <p>The pagination token used to retrieve the next page of results for this
|
|
2852
|
+
* <p>The pagination token used to retrieve the next page of results for this
|
|
2853
|
+
* operation.></p>
|
|
2625
2854
|
* @public
|
|
2626
2855
|
*/
|
|
2627
2856
|
nextToken?: string;
|
|
@@ -2631,7 +2860,8 @@ export interface ListTrustStoreCertificatesResponse {
|
|
|
2631
2860
|
*/
|
|
2632
2861
|
export interface ListTrustStoresRequest {
|
|
2633
2862
|
/**
|
|
2634
|
-
* <p>The pagination token used to retrieve the next page of results for this
|
|
2863
|
+
* <p>The pagination token used to retrieve the next page of results for this
|
|
2864
|
+
* operation.</p>
|
|
2635
2865
|
* @public
|
|
2636
2866
|
*/
|
|
2637
2867
|
nextToken?: string;
|
|
@@ -2662,7 +2892,8 @@ export interface ListTrustStoresResponse {
|
|
|
2662
2892
|
*/
|
|
2663
2893
|
trustStores?: TrustStoreSummary[];
|
|
2664
2894
|
/**
|
|
2665
|
-
* <p>The pagination token used to retrieve the next page of results for this
|
|
2895
|
+
* <p>The pagination token used to retrieve the next page of results for this
|
|
2896
|
+
* operation.</p>
|
|
2666
2897
|
* @public
|
|
2667
2898
|
*/
|
|
2668
2899
|
nextToken?: string;
|
|
@@ -2798,7 +3029,8 @@ export interface UserAccessLoggingSettings {
|
|
|
2798
3029
|
*/
|
|
2799
3030
|
userAccessLoggingSettingsArn: string | undefined;
|
|
2800
3031
|
/**
|
|
2801
|
-
* <p>A list of web portal ARNs that this user access logging settings is associated
|
|
3032
|
+
* <p>A list of web portal ARNs that this user access logging settings is associated
|
|
3033
|
+
* with.</p>
|
|
2802
3034
|
* @public
|
|
2803
3035
|
*/
|
|
2804
3036
|
associatedPortalArns?: string[];
|
|
@@ -2823,7 +3055,8 @@ export interface GetUserAccessLoggingSettingsResponse {
|
|
|
2823
3055
|
*/
|
|
2824
3056
|
export interface ListUserAccessLoggingSettingsRequest {
|
|
2825
3057
|
/**
|
|
2826
|
-
* <p>The pagination token used to retrieve the next page of results for this
|
|
3058
|
+
* <p>The pagination token used to retrieve the next page of results for this
|
|
3059
|
+
* operation.</p>
|
|
2827
3060
|
* @public
|
|
2828
3061
|
*/
|
|
2829
3062
|
nextToken?: string;
|
|
@@ -2859,7 +3092,8 @@ export interface ListUserAccessLoggingSettingsResponse {
|
|
|
2859
3092
|
*/
|
|
2860
3093
|
userAccessLoggingSettings?: UserAccessLoggingSettingsSummary[];
|
|
2861
3094
|
/**
|
|
2862
|
-
* <p>The pagination token used to retrieve the next page of results for this
|
|
3095
|
+
* <p>The pagination token used to retrieve the next page of results for this
|
|
3096
|
+
* operation.</p>
|
|
2863
3097
|
* @public
|
|
2864
3098
|
*/
|
|
2865
3099
|
nextToken?: string;
|
|
@@ -2921,17 +3155,20 @@ export interface CookieSpecification {
|
|
|
2921
3155
|
path?: string;
|
|
2922
3156
|
}
|
|
2923
3157
|
/**
|
|
2924
|
-
* <p>The configuration that specifies which cookies should be synchronized from the end
|
|
3158
|
+
* <p>The configuration that specifies which cookies should be synchronized from the end
|
|
3159
|
+
* user's local browser to the remote browser.</p>
|
|
2925
3160
|
* @public
|
|
2926
3161
|
*/
|
|
2927
3162
|
export interface CookieSynchronizationConfiguration {
|
|
2928
3163
|
/**
|
|
2929
|
-
* <p>The list of cookie specifications that are allowed to be synchronized to the remote
|
|
3164
|
+
* <p>The list of cookie specifications that are allowed to be synchronized to the remote
|
|
3165
|
+
* browser.</p>
|
|
2930
3166
|
* @public
|
|
2931
3167
|
*/
|
|
2932
3168
|
allowlist: CookieSpecification[] | undefined;
|
|
2933
3169
|
/**
|
|
2934
|
-
* <p>The list of cookie specifications that are blocked from being synchronized to the remote
|
|
3170
|
+
* <p>The list of cookie specifications that are blocked from being synchronized to the remote
|
|
3171
|
+
* browser.</p>
|
|
2935
3172
|
* @public
|
|
2936
3173
|
*/
|
|
2937
3174
|
blocklist?: CookieSpecification[];
|
|
@@ -2987,12 +3224,14 @@ export interface CreateUserSettingsRequest {
|
|
|
2987
3224
|
*/
|
|
2988
3225
|
tags?: Tag[];
|
|
2989
3226
|
/**
|
|
2990
|
-
* <p>The amount of time that a streaming session remains active after users
|
|
3227
|
+
* <p>The amount of time that a streaming session remains active after users
|
|
3228
|
+
* disconnect.</p>
|
|
2991
3229
|
* @public
|
|
2992
3230
|
*/
|
|
2993
3231
|
disconnectTimeoutInMinutes?: number;
|
|
2994
3232
|
/**
|
|
2995
|
-
* <p>The amount of time that users can be idle (inactive) before they are disconnected from
|
|
3233
|
+
* <p>The amount of time that users can be idle (inactive) before they are disconnected from
|
|
3234
|
+
* their streaming session and the disconnect timeout interval begins.</p>
|
|
2996
3235
|
* @public
|
|
2997
3236
|
*/
|
|
2998
3237
|
idleDisconnectTimeoutInMinutes?: number;
|
|
@@ -3007,12 +3246,14 @@ export interface CreateUserSettingsRequest {
|
|
|
3007
3246
|
*/
|
|
3008
3247
|
clientToken?: string;
|
|
3009
3248
|
/**
|
|
3010
|
-
* <p>The configuration that specifies which cookies should be synchronized from the end
|
|
3249
|
+
* <p>The configuration that specifies which cookies should be synchronized from the end
|
|
3250
|
+
* user's local browser to the remote browser.</p>
|
|
3011
3251
|
* @public
|
|
3012
3252
|
*/
|
|
3013
3253
|
cookieSynchronizationConfiguration?: CookieSynchronizationConfiguration;
|
|
3014
3254
|
/**
|
|
3015
|
-
* <p>The customer managed key used to encrypt sensitive information in the user
|
|
3255
|
+
* <p>The customer managed key used to encrypt sensitive information in the user
|
|
3256
|
+
* settings.</p>
|
|
3016
3257
|
* @public
|
|
3017
3258
|
*/
|
|
3018
3259
|
customerManagedKey?: string;
|
|
@@ -3022,7 +3263,8 @@ export interface CreateUserSettingsRequest {
|
|
|
3022
3263
|
*/
|
|
3023
3264
|
additionalEncryptionContext?: Record<string, string>;
|
|
3024
3265
|
/**
|
|
3025
|
-
* <p>Specifies whether the user can use deep links that open automatically when connecting to
|
|
3266
|
+
* <p>Specifies whether the user can use deep links that open automatically when connecting to
|
|
3267
|
+
* a session.</p>
|
|
3026
3268
|
* @public
|
|
3027
3269
|
*/
|
|
3028
3270
|
deepLinkAllowed?: EnabledType;
|
|
@@ -3109,22 +3351,26 @@ export interface UserSettings {
|
|
|
3109
3351
|
*/
|
|
3110
3352
|
printAllowed?: EnabledType;
|
|
3111
3353
|
/**
|
|
3112
|
-
* <p>The amount of time that a streaming session remains active after users
|
|
3354
|
+
* <p>The amount of time that a streaming session remains active after users
|
|
3355
|
+
* disconnect.</p>
|
|
3113
3356
|
* @public
|
|
3114
3357
|
*/
|
|
3115
3358
|
disconnectTimeoutInMinutes?: number;
|
|
3116
3359
|
/**
|
|
3117
|
-
* <p>The amount of time that users can be idle (inactive) before they are disconnected from
|
|
3360
|
+
* <p>The amount of time that users can be idle (inactive) before they are disconnected from
|
|
3361
|
+
* their streaming session and the disconnect timeout interval begins.</p>
|
|
3118
3362
|
* @public
|
|
3119
3363
|
*/
|
|
3120
3364
|
idleDisconnectTimeoutInMinutes?: number;
|
|
3121
3365
|
/**
|
|
3122
|
-
* <p>The configuration that specifies which cookies should be synchronized from the end
|
|
3366
|
+
* <p>The configuration that specifies which cookies should be synchronized from the end
|
|
3367
|
+
* user's local browser to the remote browser.</p>
|
|
3123
3368
|
* @public
|
|
3124
3369
|
*/
|
|
3125
3370
|
cookieSynchronizationConfiguration?: CookieSynchronizationConfiguration;
|
|
3126
3371
|
/**
|
|
3127
|
-
* <p>The customer managed key used to encrypt sensitive information in the user
|
|
3372
|
+
* <p>The customer managed key used to encrypt sensitive information in the user
|
|
3373
|
+
* settings.</p>
|
|
3128
3374
|
* @public
|
|
3129
3375
|
*/
|
|
3130
3376
|
customerManagedKey?: string;
|
|
@@ -3134,7 +3380,8 @@ export interface UserSettings {
|
|
|
3134
3380
|
*/
|
|
3135
3381
|
additionalEncryptionContext?: Record<string, string>;
|
|
3136
3382
|
/**
|
|
3137
|
-
* <p>Specifies whether the user can use deep links that open automatically when connecting to
|
|
3383
|
+
* <p>Specifies whether the user can use deep links that open automatically when connecting to
|
|
3384
|
+
* a session.</p>
|
|
3138
3385
|
* @public
|
|
3139
3386
|
*/
|
|
3140
3387
|
deepLinkAllowed?: EnabledType;
|
|
@@ -3154,7 +3401,8 @@ export interface GetUserSettingsResponse {
|
|
|
3154
3401
|
*/
|
|
3155
3402
|
export interface ListUserSettingsRequest {
|
|
3156
3403
|
/**
|
|
3157
|
-
* <p>The pagination token used to retrieve the next page of results for this operation.
|
|
3404
|
+
* <p>The pagination token used to retrieve the next page of results for this operation.
|
|
3405
|
+
* </p>
|
|
3158
3406
|
* @public
|
|
3159
3407
|
*/
|
|
3160
3408
|
nextToken?: string;
|
|
@@ -3204,22 +3452,26 @@ export interface UserSettingsSummary {
|
|
|
3204
3452
|
*/
|
|
3205
3453
|
printAllowed?: EnabledType;
|
|
3206
3454
|
/**
|
|
3207
|
-
* <p>The amount of time that a streaming session remains active after users
|
|
3455
|
+
* <p>The amount of time that a streaming session remains active after users
|
|
3456
|
+
* disconnect.</p>
|
|
3208
3457
|
* @public
|
|
3209
3458
|
*/
|
|
3210
3459
|
disconnectTimeoutInMinutes?: number;
|
|
3211
3460
|
/**
|
|
3212
|
-
* <p>The amount of time that users can be idle (inactive) before they are disconnected from
|
|
3461
|
+
* <p>The amount of time that users can be idle (inactive) before they are disconnected from
|
|
3462
|
+
* their streaming session and the disconnect timeout interval begins.</p>
|
|
3213
3463
|
* @public
|
|
3214
3464
|
*/
|
|
3215
3465
|
idleDisconnectTimeoutInMinutes?: number;
|
|
3216
3466
|
/**
|
|
3217
|
-
* <p>The configuration that specifies which cookies should be synchronized from the end
|
|
3467
|
+
* <p>The configuration that specifies which cookies should be synchronized from the end
|
|
3468
|
+
* user's local browser to the remote browser.</p>
|
|
3218
3469
|
* @public
|
|
3219
3470
|
*/
|
|
3220
3471
|
cookieSynchronizationConfiguration?: CookieSynchronizationConfiguration;
|
|
3221
3472
|
/**
|
|
3222
|
-
* <p>Specifies whether the user can use deep links that open automatically when connecting to
|
|
3473
|
+
* <p>Specifies whether the user can use deep links that open automatically when connecting to
|
|
3474
|
+
* a session.</p>
|
|
3223
3475
|
* @public
|
|
3224
3476
|
*/
|
|
3225
3477
|
deepLinkAllowed?: EnabledType;
|
|
@@ -3234,7 +3486,8 @@ export interface ListUserSettingsResponse {
|
|
|
3234
3486
|
*/
|
|
3235
3487
|
userSettings?: UserSettingsSummary[];
|
|
3236
3488
|
/**
|
|
3237
|
-
* <p>The pagination token used to retrieve the next page of results for this operation.
|
|
3489
|
+
* <p>The pagination token used to retrieve the next page of results for this operation.
|
|
3490
|
+
* </p>
|
|
3238
3491
|
* @public
|
|
3239
3492
|
*/
|
|
3240
3493
|
nextToken?: string;
|
|
@@ -3278,12 +3531,14 @@ export interface UpdateUserSettingsRequest {
|
|
|
3278
3531
|
*/
|
|
3279
3532
|
printAllowed?: EnabledType;
|
|
3280
3533
|
/**
|
|
3281
|
-
* <p>The amount of time that a streaming session remains active after users
|
|
3534
|
+
* <p>The amount of time that a streaming session remains active after users
|
|
3535
|
+
* disconnect.</p>
|
|
3282
3536
|
* @public
|
|
3283
3537
|
*/
|
|
3284
3538
|
disconnectTimeoutInMinutes?: number;
|
|
3285
3539
|
/**
|
|
3286
|
-
* <p>The amount of time that users can be idle (inactive) before they are disconnected from
|
|
3540
|
+
* <p>The amount of time that users can be idle (inactive) before they are disconnected from
|
|
3541
|
+
* their streaming session and the disconnect timeout interval begins.</p>
|
|
3287
3542
|
* @public
|
|
3288
3543
|
*/
|
|
3289
3544
|
idleDisconnectTimeoutInMinutes?: number;
|
|
@@ -3298,13 +3553,15 @@ export interface UpdateUserSettingsRequest {
|
|
|
3298
3553
|
*/
|
|
3299
3554
|
clientToken?: string;
|
|
3300
3555
|
/**
|
|
3301
|
-
* <p>The configuration that specifies which cookies should be synchronized from the end
|
|
3556
|
+
* <p>The configuration that specifies which cookies should be synchronized from the end
|
|
3557
|
+
* user's local browser to the remote browser.</p>
|
|
3302
3558
|
* <p>If the allowlist and blocklist are empty, the configuration becomes null.</p>
|
|
3303
3559
|
* @public
|
|
3304
3560
|
*/
|
|
3305
3561
|
cookieSynchronizationConfiguration?: CookieSynchronizationConfiguration;
|
|
3306
3562
|
/**
|
|
3307
|
-
* <p>Specifies whether the user can use deep links that open automatically when connecting to
|
|
3563
|
+
* <p>Specifies whether the user can use deep links that open automatically when connecting to
|
|
3564
|
+
* a session.</p>
|
|
3308
3565
|
* @public
|
|
3309
3566
|
*/
|
|
3310
3567
|
deepLinkAllowed?: EnabledType;
|
|
@@ -3343,6 +3600,14 @@ export declare const UpdateBrowserSettingsRequestFilterSensitiveLog: (obj: Updat
|
|
|
3343
3600
|
* @internal
|
|
3344
3601
|
*/
|
|
3345
3602
|
export declare const UpdateBrowserSettingsResponseFilterSensitiveLog: (obj: UpdateBrowserSettingsResponse) => any;
|
|
3603
|
+
/**
|
|
3604
|
+
* @internal
|
|
3605
|
+
*/
|
|
3606
|
+
export declare const SessionFilterSensitiveLog: (obj: Session) => any;
|
|
3607
|
+
/**
|
|
3608
|
+
* @internal
|
|
3609
|
+
*/
|
|
3610
|
+
export declare const GetSessionResponseFilterSensitiveLog: (obj: GetSessionResponse) => any;
|
|
3346
3611
|
/**
|
|
3347
3612
|
* @internal
|
|
3348
3613
|
*/
|
|
@@ -3403,6 +3668,18 @@ export declare const UpdateIpAccessSettingsRequestFilterSensitiveLog: (obj: Upda
|
|
|
3403
3668
|
* @internal
|
|
3404
3669
|
*/
|
|
3405
3670
|
export declare const UpdateIpAccessSettingsResponseFilterSensitiveLog: (obj: UpdateIpAccessSettingsResponse) => any;
|
|
3671
|
+
/**
|
|
3672
|
+
* @internal
|
|
3673
|
+
*/
|
|
3674
|
+
export declare const ListSessionsRequestFilterSensitiveLog: (obj: ListSessionsRequest) => any;
|
|
3675
|
+
/**
|
|
3676
|
+
* @internal
|
|
3677
|
+
*/
|
|
3678
|
+
export declare const SessionSummaryFilterSensitiveLog: (obj: SessionSummary) => any;
|
|
3679
|
+
/**
|
|
3680
|
+
* @internal
|
|
3681
|
+
*/
|
|
3682
|
+
export declare const ListSessionsResponseFilterSensitiveLog: (obj: ListSessionsResponse) => any;
|
|
3406
3683
|
/**
|
|
3407
3684
|
* @internal
|
|
3408
3685
|
*/
|