aws-sdk 2.1445.0 → 2.1446.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.
@@ -620,7 +620,7 @@ declare namespace WorkSpacesWeb {
620
620
  /**
621
621
  * The ARN of the browser settings.
622
622
  */
623
- browserSettingsArn?: ARN;
623
+ browserSettingsArn: ARN;
624
624
  }
625
625
  export type BrowserType = "Chrome"|string;
626
626
  export interface Certificate {
@@ -678,6 +678,34 @@ declare namespace WorkSpacesWeb {
678
678
  export type CertificateThumbprint = string;
679
679
  export type CertificateThumbprintList = CertificateThumbprint[];
680
680
  export type ClientToken = string;
681
+ export type CookieDomain = string;
682
+ export type CookieName = string;
683
+ export type CookiePath = string;
684
+ export interface CookieSpecification {
685
+ /**
686
+ * The domain of the cookie.
687
+ */
688
+ domain: CookieDomain;
689
+ /**
690
+ * The name of the cookie.
691
+ */
692
+ name?: CookieName;
693
+ /**
694
+ * The path of the cookie.
695
+ */
696
+ path?: CookiePath;
697
+ }
698
+ export type CookieSpecifications = CookieSpecification[];
699
+ export interface CookieSynchronizationConfiguration {
700
+ /**
701
+ * The list of cookie specifications that are allowed to be synchronized to the remote browser.
702
+ */
703
+ allowlist: CookieSpecifications;
704
+ /**
705
+ * The list of cookie specifications that are blocked from being synchronized to the remote browser.
706
+ */
707
+ blocklist?: CookieSpecifications;
708
+ }
681
709
  export interface CreateBrowserSettingsRequest {
682
710
  /**
683
711
  * Additional encryption context of the browser settings.
@@ -732,7 +760,7 @@ declare namespace WorkSpacesWeb {
732
760
  /**
733
761
  * The ARN of the identity provider.
734
762
  */
735
- identityProviderArn: ARN;
763
+ identityProviderArn: SubresourceARN;
736
764
  }
737
765
  export interface CreateIpAccessSettingsRequest {
738
766
  /**
@@ -875,14 +903,26 @@ declare namespace WorkSpacesWeb {
875
903
  userAccessLoggingSettingsArn: ARN;
876
904
  }
877
905
  export interface CreateUserSettingsRequest {
906
+ /**
907
+ * The additional encryption context of the user settings.
908
+ */
909
+ additionalEncryptionContext?: EncryptionContextMap;
878
910
  /**
879
911
  * A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, subsequent retries with the same client token returns the result from the original successful request. If you do not specify a client token, one is automatically generated by the AWS SDK.
880
912
  */
881
913
  clientToken?: ClientToken;
914
+ /**
915
+ * The configuration that specifies which cookies should be synchronized from the end user's local browser to the remote browser.
916
+ */
917
+ cookieSynchronizationConfiguration?: CookieSynchronizationConfiguration;
882
918
  /**
883
919
  * Specifies whether the user can copy text from the streaming session to the local device.
884
920
  */
885
921
  copyAllowed: EnabledType;
922
+ /**
923
+ * The customer managed key used to encrypt sensitive information in the user settings.
924
+ */
925
+ customerManagedKey?: keyArn;
886
926
  /**
887
927
  * The amount of time that a streaming session remains active after users disconnect.
888
928
  */
@@ -930,7 +970,7 @@ declare namespace WorkSpacesWeb {
930
970
  /**
931
971
  * The ARN of the identity provider.
932
972
  */
933
- identityProviderArn: ARN;
973
+ identityProviderArn: SubresourceARN;
934
974
  }
935
975
  export interface DeleteIdentityProviderResponse {
936
976
  }
@@ -1051,7 +1091,7 @@ declare namespace WorkSpacesWeb {
1051
1091
  /**
1052
1092
  * The ARN of the identity provider.
1053
1093
  */
1054
- identityProviderArn: ARN;
1094
+ identityProviderArn: SubresourceARN;
1055
1095
  }
1056
1096
  export interface GetIdentityProviderResponse {
1057
1097
  /**
@@ -1129,7 +1169,7 @@ declare namespace WorkSpacesWeb {
1129
1169
  /**
1130
1170
  * The ARN of the trust store certificate.
1131
1171
  */
1132
- trustStoreArn?: ARN;
1172
+ trustStoreArn: ARN;
1133
1173
  }
1134
1174
  export interface GetTrustStoreRequest {
1135
1175
  /**
@@ -1171,7 +1211,7 @@ declare namespace WorkSpacesWeb {
1171
1211
  /**
1172
1212
  * The ARN of the identity provider.
1173
1213
  */
1174
- identityProviderArn: ARN;
1214
+ identityProviderArn: SubresourceARN;
1175
1215
  /**
1176
1216
  * The identity provider details. The following list describes the provider detail keys for each identity provider type. For Google and Login with Amazon: client_id client_secret authorize_scopes For Facebook: client_id client_secret authorize_scopes api_version For Sign in with Apple: client_id team_id key_id private_key authorize_scopes For OIDC providers: client_id client_secret attributes_request_method oidc_issuer authorize_scopes authorize_url if not available from discovery URL specified by oidc_issuer key token_url if not available from discovery URL specified by oidc_issuer key attributes_url if not available from discovery URL specified by oidc_issuer key jwks_uri if not available from discovery URL specified by oidc_issuer key For SAML providers: MetadataFile OR MetadataURL IDPSignout optional
1177
1217
  */
@@ -1192,7 +1232,7 @@ declare namespace WorkSpacesWeb {
1192
1232
  /**
1193
1233
  * The ARN of the identity provider.
1194
1234
  */
1195
- identityProviderArn?: ARN;
1235
+ identityProviderArn: SubresourceARN;
1196
1236
  /**
1197
1237
  * The identity provider name.
1198
1238
  */
@@ -1247,7 +1287,7 @@ declare namespace WorkSpacesWeb {
1247
1287
  /**
1248
1288
  * The ARN of IP access settings.
1249
1289
  */
1250
- ipAccessSettingsArn?: ARN;
1290
+ ipAccessSettingsArn: ARN;
1251
1291
  }
1252
1292
  export type IpRange = string;
1253
1293
  export interface IpRule {
@@ -1404,7 +1444,7 @@ declare namespace WorkSpacesWeb {
1404
1444
  /**
1405
1445
  * The ARN of the trust store.
1406
1446
  */
1407
- trustStoreArn?: ARN;
1447
+ trustStoreArn: ARN;
1408
1448
  }
1409
1449
  export interface ListTrustStoresRequest {
1410
1450
  /**
@@ -1494,7 +1534,7 @@ declare namespace WorkSpacesWeb {
1494
1534
  /**
1495
1535
  * The ARN of the network settings.
1496
1536
  */
1497
- networkSettingsArn?: ARN;
1537
+ networkSettingsArn: ARN;
1498
1538
  /**
1499
1539
  * The VPC ID of the network settings.
1500
1540
  */
@@ -1533,7 +1573,7 @@ declare namespace WorkSpacesWeb {
1533
1573
  /**
1534
1574
  * The ARN of the web portal.
1535
1575
  */
1536
- portalArn?: ARN;
1576
+ portalArn: ARN;
1537
1577
  /**
1538
1578
  * The endpoint URL of the web portal that users access in order to start streaming sessions.
1539
1579
  */
@@ -1598,7 +1638,7 @@ declare namespace WorkSpacesWeb {
1598
1638
  /**
1599
1639
  * The ARN of the web portal.
1600
1640
  */
1601
- portalArn?: ARN;
1641
+ portalArn: ARN;
1602
1642
  /**
1603
1643
  * The endpoint URL of the web portal that users access in order to start streaming sessions.
1604
1644
  */
@@ -1632,6 +1672,7 @@ declare namespace WorkSpacesWeb {
1632
1672
  export type StringType = string;
1633
1673
  export type SubnetId = string;
1634
1674
  export type SubnetIdList = SubnetId[];
1675
+ export type SubresourceARN = string;
1635
1676
  export interface Tag {
1636
1677
  /**
1637
1678
  * The key of the tag.
@@ -1671,7 +1712,7 @@ declare namespace WorkSpacesWeb {
1671
1712
  /**
1672
1713
  * The ARN of the trust store.
1673
1714
  */
1674
- trustStoreArn?: ARN;
1715
+ trustStoreArn: ARN;
1675
1716
  }
1676
1717
  export interface TrustStoreSummary {
1677
1718
  /**
@@ -1720,7 +1761,7 @@ declare namespace WorkSpacesWeb {
1720
1761
  /**
1721
1762
  * The ARN of the identity provider.
1722
1763
  */
1723
- identityProviderArn: ARN;
1764
+ identityProviderArn: SubresourceARN;
1724
1765
  /**
1725
1766
  * The details of the identity provider. The following list describes the provider detail keys for each identity provider type. For Google and Login with Amazon: client_id client_secret authorize_scopes For Facebook: client_id client_secret authorize_scopes api_version For Sign in with Apple: client_id team_id key_id private_key authorize_scopes For OIDC providers: client_id client_secret attributes_request_method oidc_issuer authorize_scopes authorize_url if not available from discovery URL specified by oidc_issuer key token_url if not available from discovery URL specified by oidc_issuer key attributes_url if not available from discovery URL specified by oidc_issuer key jwks_uri if not available from discovery URL specified by oidc_issuer key For SAML providers: MetadataFile OR MetadataURL IDPSignout (boolean) optional
1726
1767
  */
@@ -1865,6 +1906,10 @@ declare namespace WorkSpacesWeb {
1865
1906
  * A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, subsequent retries with the same client token return the result from the original successful request. If you do not specify a client token, one is automatically generated by the AWS SDK.
1866
1907
  */
1867
1908
  clientToken?: ClientToken;
1909
+ /**
1910
+ * The configuration that specifies which cookies should be synchronized from the end user's local browser to the remote browser. If the allowlist and blocklist are empty, the configuration becomes null.
1911
+ */
1912
+ cookieSynchronizationConfiguration?: CookieSynchronizationConfiguration;
1868
1913
  /**
1869
1914
  * Specifies whether the user can copy text from the streaming session to the local device.
1870
1915
  */
@@ -1927,13 +1972,17 @@ declare namespace WorkSpacesWeb {
1927
1972
  /**
1928
1973
  * The ARN of the user access logging settings.
1929
1974
  */
1930
- userAccessLoggingSettingsArn?: ARN;
1975
+ userAccessLoggingSettingsArn: ARN;
1931
1976
  }
1932
1977
  export interface UserSettings {
1933
1978
  /**
1934
1979
  * A list of web portal ARNs that this user settings is associated with.
1935
1980
  */
1936
1981
  associatedPortalArns?: ArnList;
1982
+ /**
1983
+ * The configuration that specifies which cookies should be synchronized from the end user's local browser to the remote browser.
1984
+ */
1985
+ cookieSynchronizationConfiguration?: CookieSynchronizationConfiguration;
1937
1986
  /**
1938
1987
  * Specifies whether the user can copy text from the streaming session to the local device.
1939
1988
  */
@@ -1969,6 +2018,10 @@ declare namespace WorkSpacesWeb {
1969
2018
  }
1970
2019
  export type UserSettingsList = UserSettingsSummary[];
1971
2020
  export interface UserSettingsSummary {
2021
+ /**
2022
+ * The configuration that specifies which cookies should be synchronized from the end user's local browser to the remote browser.
2023
+ */
2024
+ cookieSynchronizationConfiguration?: CookieSynchronizationConfiguration;
1972
2025
  /**
1973
2026
  * Specifies whether the user can copy text from the streaming session to the local device.
1974
2027
  */
@@ -2000,7 +2053,7 @@ declare namespace WorkSpacesWeb {
2000
2053
  /**
2001
2054
  * The ARN of the user settings.
2002
2055
  */
2003
- userSettingsArn?: ARN;
2056
+ userSettingsArn: ARN;
2004
2057
  }
2005
2058
  export type VpcId = string;
2006
2059
  export type keyArn = string;
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1445.0',
86
+ VERSION: '2.1446.0',
87
87
 
88
88
  /**
89
89
  * @api private