aws-sdk 2.1290.0 → 2.1292.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/CHANGELOG.md CHANGED
@@ -1,7 +1,19 @@
1
1
  # Changelog for AWS SDK for JavaScript
2
- <!--LATEST=2.1290.0-->
2
+ <!--LATEST=2.1292.0-->
3
3
  <!--ENTRYINSERT-->
4
4
 
5
+ ## 2.1292.0
6
+ * bugfix: KendraRanking: Set endpoint to dualstack by default
7
+ * feature: Location: This release adds support for two new route travel models, Bicycle and Motorcycle which can be used with Grab data source.
8
+ * feature: RDS: This release adds support for configuring allocated storage on the CreateDBInstanceReadReplica, RestoreDBInstanceFromDBSnapshot, and RestoreDBInstanceToPointInTime APIs.
9
+
10
+ ## 2.1291.0
11
+ * feature: ECRPUBLIC: This release for Amazon ECR Public makes several change to bring the SDK into sync with the API.
12
+ * feature: KendraRanking: Introducing Amazon Kendra Intelligent Ranking, a new set of Kendra APIs that leverages Kendra semantic ranking capabilities to improve the quality of search results from other search services (i.e. OpenSearch, ElasticSearch, Solr).
13
+ * feature: NetworkFirewall: Network Firewall now supports the Suricata rule action reject, in addition to the actions pass, drop, and alert.
14
+ * feature: RAM: Enabled FIPS aws-us-gov endpoints in SDK.
15
+ * feature: WorkSpacesWeb: This release adds support for a new portal authentication type: AWS IAM Identity Center (successor to AWS Single Sign-On).
16
+
5
17
  ## 2.1290.0
6
18
  * feature: ACMPCA: Added revocation parameter validation: bucket names must match S3 bucket naming rules and CNAMEs conform to RFC2396 restrictions on the use of special characters in URIs.
7
19
  * feature: AuditManager: This release introduces a new data retention option in your Audit Manager settings. You can now use the DeregistrationPolicy parameter to specify if you want to delete your data when you deregister Audit Manager.
package/README.md CHANGED
@@ -57,7 +57,7 @@ for further details.
57
57
  To use the SDK in the browser, simply add the following script tag to your
58
58
  HTML pages:
59
59
 
60
- <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1290.0.min.js"></script>
60
+ <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1292.0.min.js"></script>
61
61
 
62
62
  You can also build a custom browser SDK with your specified set of AWS services.
63
63
  This can allow you to reduce the SDK's size, specify different API versions of
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,286 @@
1
+ {
2
+ "version": "2.0",
3
+ "metadata": {
4
+ "apiVersion": "2022-10-19",
5
+ "endpointPrefix": "kendra-ranking",
6
+ "jsonVersion": "1.0",
7
+ "protocol": "json",
8
+ "serviceAbbreviation": "Kendra Ranking",
9
+ "serviceFullName": "Amazon Kendra Intelligent Ranking",
10
+ "serviceId": "Kendra Ranking",
11
+ "signatureVersion": "v4",
12
+ "signingName": "kendra-ranking",
13
+ "targetPrefix": "AWSKendraRerankingFrontendService",
14
+ "uid": "kendra-ranking-2022-10-19"
15
+ },
16
+ "operations": {
17
+ "CreateRescoreExecutionPlan": {
18
+ "input": {
19
+ "type": "structure",
20
+ "required": [
21
+ "Name"
22
+ ],
23
+ "members": {
24
+ "Name": {},
25
+ "Description": {},
26
+ "CapacityUnits": {
27
+ "shape": "S4"
28
+ },
29
+ "Tags": {
30
+ "shape": "S6"
31
+ },
32
+ "ClientToken": {
33
+ "idempotencyToken": true
34
+ }
35
+ }
36
+ },
37
+ "output": {
38
+ "type": "structure",
39
+ "required": [
40
+ "Id",
41
+ "Arn"
42
+ ],
43
+ "members": {
44
+ "Id": {},
45
+ "Arn": {}
46
+ }
47
+ }
48
+ },
49
+ "DeleteRescoreExecutionPlan": {
50
+ "input": {
51
+ "type": "structure",
52
+ "required": [
53
+ "Id"
54
+ ],
55
+ "members": {
56
+ "Id": {}
57
+ }
58
+ }
59
+ },
60
+ "DescribeRescoreExecutionPlan": {
61
+ "input": {
62
+ "type": "structure",
63
+ "required": [
64
+ "Id"
65
+ ],
66
+ "members": {
67
+ "Id": {}
68
+ }
69
+ },
70
+ "output": {
71
+ "type": "structure",
72
+ "members": {
73
+ "Id": {},
74
+ "Arn": {},
75
+ "Name": {},
76
+ "Description": {},
77
+ "CapacityUnits": {
78
+ "shape": "S4"
79
+ },
80
+ "CreatedAt": {
81
+ "type": "timestamp"
82
+ },
83
+ "UpdatedAt": {
84
+ "type": "timestamp"
85
+ },
86
+ "Status": {},
87
+ "ErrorMessage": {}
88
+ }
89
+ }
90
+ },
91
+ "ListRescoreExecutionPlans": {
92
+ "input": {
93
+ "type": "structure",
94
+ "members": {
95
+ "NextToken": {},
96
+ "MaxResults": {
97
+ "type": "integer"
98
+ }
99
+ }
100
+ },
101
+ "output": {
102
+ "type": "structure",
103
+ "members": {
104
+ "SummaryItems": {
105
+ "type": "list",
106
+ "member": {
107
+ "type": "structure",
108
+ "members": {
109
+ "Name": {},
110
+ "Id": {},
111
+ "CreatedAt": {
112
+ "type": "timestamp"
113
+ },
114
+ "UpdatedAt": {
115
+ "type": "timestamp"
116
+ },
117
+ "Status": {}
118
+ }
119
+ }
120
+ },
121
+ "NextToken": {}
122
+ }
123
+ }
124
+ },
125
+ "ListTagsForResource": {
126
+ "input": {
127
+ "type": "structure",
128
+ "required": [
129
+ "ResourceARN"
130
+ ],
131
+ "members": {
132
+ "ResourceARN": {}
133
+ }
134
+ },
135
+ "output": {
136
+ "type": "structure",
137
+ "members": {
138
+ "Tags": {
139
+ "shape": "S6"
140
+ }
141
+ }
142
+ }
143
+ },
144
+ "Rescore": {
145
+ "input": {
146
+ "type": "structure",
147
+ "required": [
148
+ "RescoreExecutionPlanId",
149
+ "SearchQuery",
150
+ "Documents"
151
+ ],
152
+ "members": {
153
+ "RescoreExecutionPlanId": {},
154
+ "SearchQuery": {},
155
+ "Documents": {
156
+ "type": "list",
157
+ "member": {
158
+ "type": "structure",
159
+ "required": [
160
+ "Id",
161
+ "OriginalScore"
162
+ ],
163
+ "members": {
164
+ "Id": {},
165
+ "GroupId": {},
166
+ "Title": {},
167
+ "Body": {},
168
+ "TokenizedTitle": {
169
+ "type": "list",
170
+ "member": {}
171
+ },
172
+ "TokenizedBody": {
173
+ "type": "list",
174
+ "member": {}
175
+ },
176
+ "OriginalScore": {
177
+ "type": "float"
178
+ }
179
+ }
180
+ }
181
+ }
182
+ }
183
+ },
184
+ "output": {
185
+ "type": "structure",
186
+ "members": {
187
+ "RescoreId": {},
188
+ "ResultItems": {
189
+ "type": "list",
190
+ "member": {
191
+ "type": "structure",
192
+ "members": {
193
+ "DocumentId": {},
194
+ "Score": {
195
+ "type": "float"
196
+ }
197
+ }
198
+ }
199
+ }
200
+ }
201
+ }
202
+ },
203
+ "TagResource": {
204
+ "input": {
205
+ "type": "structure",
206
+ "required": [
207
+ "ResourceARN",
208
+ "Tags"
209
+ ],
210
+ "members": {
211
+ "ResourceARN": {},
212
+ "Tags": {
213
+ "shape": "S6"
214
+ }
215
+ }
216
+ },
217
+ "output": {
218
+ "type": "structure",
219
+ "members": {}
220
+ }
221
+ },
222
+ "UntagResource": {
223
+ "input": {
224
+ "type": "structure",
225
+ "required": [
226
+ "ResourceARN",
227
+ "TagKeys"
228
+ ],
229
+ "members": {
230
+ "ResourceARN": {},
231
+ "TagKeys": {
232
+ "type": "list",
233
+ "member": {}
234
+ }
235
+ }
236
+ },
237
+ "output": {
238
+ "type": "structure",
239
+ "members": {}
240
+ }
241
+ },
242
+ "UpdateRescoreExecutionPlan": {
243
+ "input": {
244
+ "type": "structure",
245
+ "required": [
246
+ "Id"
247
+ ],
248
+ "members": {
249
+ "Id": {},
250
+ "Name": {},
251
+ "Description": {},
252
+ "CapacityUnits": {
253
+ "shape": "S4"
254
+ }
255
+ }
256
+ }
257
+ }
258
+ },
259
+ "shapes": {
260
+ "S4": {
261
+ "type": "structure",
262
+ "required": [
263
+ "RescoreCapacityUnits"
264
+ ],
265
+ "members": {
266
+ "RescoreCapacityUnits": {
267
+ "type": "integer"
268
+ }
269
+ }
270
+ },
271
+ "S6": {
272
+ "type": "list",
273
+ "member": {
274
+ "type": "structure",
275
+ "required": [
276
+ "Key",
277
+ "Value"
278
+ ],
279
+ "members": {
280
+ "Key": {},
281
+ "Value": {}
282
+ }
283
+ }
284
+ }
285
+ }
286
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "pagination": {
3
+ "ListRescoreExecutionPlans": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxResults"
7
+ }
8
+ }
9
+ }
@@ -1267,5 +1267,9 @@
1267
1267
  "licensemanagerlinuxsubscriptions": {
1268
1268
  "prefix": "license-manager-linux-subscriptions",
1269
1269
  "name": "LicenseManagerLinuxSubscriptions"
1270
+ },
1271
+ "kendraranking": {
1272
+ "prefix": "kendra-ranking",
1273
+ "name": "KendraRanking"
1270
1274
  }
1271
1275
  }
@@ -770,6 +770,9 @@
770
770
  "EnableCustomerOwnedIp": {
771
771
  "type": "boolean"
772
772
  },
773
+ "AllocatedStorage": {
774
+ "type": "integer"
775
+ },
773
776
  "SourceRegion": {}
774
777
  }
775
778
  },
@@ -4226,7 +4229,10 @@
4226
4229
  "StorageThroughput": {
4227
4230
  "type": "integer"
4228
4231
  },
4229
- "DBClusterSnapshotIdentifier": {}
4232
+ "DBClusterSnapshotIdentifier": {},
4233
+ "AllocatedStorage": {
4234
+ "type": "integer"
4235
+ }
4230
4236
  }
4231
4237
  },
4232
4238
  "output": {
@@ -4438,6 +4444,9 @@
4438
4444
  "NetworkType": {},
4439
4445
  "StorageThroughput": {
4440
4446
  "type": "integer"
4447
+ },
4448
+ "AllocatedStorage": {
4449
+ "type": "integer"
4441
4450
  }
4442
4451
  }
4443
4452
  },
@@ -314,12 +314,13 @@
314
314
  "additionalEncryptionContext": {
315
315
  "shape": "Sd"
316
316
  },
317
+ "authenticationType": {},
317
318
  "clientToken": {
318
319
  "idempotencyToken": true
319
320
  },
320
321
  "customerManagedKey": {},
321
322
  "displayName": {
322
- "shape": "S10"
323
+ "shape": "S11"
323
324
  },
324
325
  "tags": {
325
326
  "shape": "Si"
@@ -350,7 +351,7 @@
350
351
  ],
351
352
  "members": {
352
353
  "certificateList": {
353
- "shape": "S14"
354
+ "shape": "S15"
354
355
  },
355
356
  "clientToken": {
356
357
  "idempotencyToken": true
@@ -754,7 +755,7 @@
754
755
  "type": "structure",
755
756
  "members": {
756
757
  "browserSettings": {
757
- "shape": "S25"
758
+ "shape": "S26"
758
759
  }
759
760
  }
760
761
  }
@@ -781,7 +782,7 @@
781
782
  "type": "structure",
782
783
  "members": {
783
784
  "identityProvider": {
784
- "shape": "S29"
785
+ "shape": "S2a"
785
786
  }
786
787
  }
787
788
  }
@@ -808,7 +809,7 @@
808
809
  "type": "structure",
809
810
  "members": {
810
811
  "networkSettings": {
811
- "shape": "S2c"
812
+ "shape": "S2d"
812
813
  }
813
814
  }
814
815
  }
@@ -835,7 +836,7 @@
835
836
  "type": "structure",
836
837
  "members": {
837
838
  "portal": {
838
- "shape": "S2f"
839
+ "shape": "S2g"
839
840
  }
840
841
  }
841
842
  }
@@ -894,7 +895,7 @@
894
895
  "type": "structure",
895
896
  "members": {
896
897
  "associatedPortalArns": {
897
- "shape": "S26"
898
+ "shape": "S27"
898
899
  },
899
900
  "trustStoreArn": {}
900
901
  }
@@ -971,7 +972,7 @@
971
972
  "type": "structure",
972
973
  "members": {
973
974
  "userAccessLoggingSettings": {
974
- "shape": "S2y"
975
+ "shape": "S2z"
975
976
  }
976
977
  }
977
978
  }
@@ -998,7 +999,7 @@
998
999
  "type": "structure",
999
1000
  "members": {
1000
1001
  "userSettings": {
1001
- "shape": "S31"
1002
+ "shape": "S32"
1002
1003
  }
1003
1004
  }
1004
1005
  }
@@ -1152,13 +1153,14 @@
1152
1153
  "member": {
1153
1154
  "type": "structure",
1154
1155
  "members": {
1156
+ "authenticationType": {},
1155
1157
  "browserSettingsArn": {},
1156
1158
  "browserType": {},
1157
1159
  "creationDate": {
1158
1160
  "type": "timestamp"
1159
1161
  },
1160
1162
  "displayName": {
1161
- "shape": "S10"
1163
+ "shape": "S11"
1162
1164
  },
1163
1165
  "networkSettingsArn": {},
1164
1166
  "portalArn": {},
@@ -1466,7 +1468,7 @@
1466
1468
  ],
1467
1469
  "members": {
1468
1470
  "browserSettings": {
1469
- "shape": "S25"
1471
+ "shape": "S26"
1470
1472
  }
1471
1473
  }
1472
1474
  }
@@ -1506,7 +1508,7 @@
1506
1508
  ],
1507
1509
  "members": {
1508
1510
  "identityProvider": {
1509
- "shape": "S29"
1511
+ "shape": "S2a"
1510
1512
  }
1511
1513
  }
1512
1514
  }
@@ -1546,7 +1548,7 @@
1546
1548
  ],
1547
1549
  "members": {
1548
1550
  "networkSettings": {
1549
- "shape": "S2c"
1551
+ "shape": "S2d"
1550
1552
  }
1551
1553
  }
1552
1554
  }
@@ -1563,8 +1565,9 @@
1563
1565
  "portalArn"
1564
1566
  ],
1565
1567
  "members": {
1568
+ "authenticationType": {},
1566
1569
  "displayName": {
1567
- "shape": "S10"
1570
+ "shape": "S11"
1568
1571
  },
1569
1572
  "portalArn": {
1570
1573
  "location": "uri",
@@ -1576,7 +1579,7 @@
1576
1579
  "type": "structure",
1577
1580
  "members": {
1578
1581
  "portal": {
1579
- "shape": "S2f"
1582
+ "shape": "S2g"
1580
1583
  }
1581
1584
  }
1582
1585
  },
@@ -1595,7 +1598,7 @@
1595
1598
  ],
1596
1599
  "members": {
1597
1600
  "certificatesToAdd": {
1598
- "shape": "S14"
1601
+ "shape": "S15"
1599
1602
  },
1600
1603
  "certificatesToDelete": {
1601
1604
  "type": "list",
@@ -1649,7 +1652,7 @@
1649
1652
  ],
1650
1653
  "members": {
1651
1654
  "userAccessLoggingSettings": {
1652
- "shape": "S2y"
1655
+ "shape": "S2z"
1653
1656
  }
1654
1657
  }
1655
1658
  }
@@ -1693,7 +1696,7 @@
1693
1696
  ],
1694
1697
  "members": {
1695
1698
  "userSettings": {
1696
- "shape": "S31"
1699
+ "shape": "S32"
1697
1700
  }
1698
1701
  }
1699
1702
  }
@@ -1751,24 +1754,24 @@
1751
1754
  "type": "list",
1752
1755
  "member": {}
1753
1756
  },
1754
- "S10": {
1757
+ "S11": {
1755
1758
  "type": "string",
1756
1759
  "sensitive": true
1757
1760
  },
1758
- "S14": {
1761
+ "S15": {
1759
1762
  "type": "list",
1760
1763
  "member": {
1761
1764
  "type": "blob"
1762
1765
  }
1763
1766
  },
1764
- "S25": {
1767
+ "S26": {
1765
1768
  "type": "structure",
1766
1769
  "required": [
1767
1770
  "browserSettingsArn"
1768
1771
  ],
1769
1772
  "members": {
1770
1773
  "associatedPortalArns": {
1771
- "shape": "S26"
1774
+ "shape": "S27"
1772
1775
  },
1773
1776
  "browserPolicy": {
1774
1777
  "shape": "Sf"
@@ -1776,11 +1779,11 @@
1776
1779
  "browserSettingsArn": {}
1777
1780
  }
1778
1781
  },
1779
- "S26": {
1782
+ "S27": {
1780
1783
  "type": "list",
1781
1784
  "member": {}
1782
1785
  },
1783
- "S29": {
1786
+ "S2a": {
1784
1787
  "type": "structure",
1785
1788
  "required": [
1786
1789
  "identityProviderArn"
@@ -1796,14 +1799,14 @@
1796
1799
  "identityProviderType": {}
1797
1800
  }
1798
1801
  },
1799
- "S2c": {
1802
+ "S2d": {
1800
1803
  "type": "structure",
1801
1804
  "required": [
1802
1805
  "networkSettingsArn"
1803
1806
  ],
1804
1807
  "members": {
1805
1808
  "associatedPortalArns": {
1806
- "shape": "S26"
1809
+ "shape": "S27"
1807
1810
  },
1808
1811
  "networkSettingsArn": {},
1809
1812
  "securityGroupIds": {
@@ -1815,16 +1818,17 @@
1815
1818
  "vpcId": {}
1816
1819
  }
1817
1820
  },
1818
- "S2f": {
1821
+ "S2g": {
1819
1822
  "type": "structure",
1820
1823
  "members": {
1824
+ "authenticationType": {},
1821
1825
  "browserSettingsArn": {},
1822
1826
  "browserType": {},
1823
1827
  "creationDate": {
1824
1828
  "type": "timestamp"
1825
1829
  },
1826
1830
  "displayName": {
1827
- "shape": "S10"
1831
+ "shape": "S11"
1828
1832
  },
1829
1833
  "networkSettingsArn": {},
1830
1834
  "portalArn": {},
@@ -1837,27 +1841,27 @@
1837
1841
  "userSettingsArn": {}
1838
1842
  }
1839
1843
  },
1840
- "S2y": {
1844
+ "S2z": {
1841
1845
  "type": "structure",
1842
1846
  "required": [
1843
1847
  "userAccessLoggingSettingsArn"
1844
1848
  ],
1845
1849
  "members": {
1846
1850
  "associatedPortalArns": {
1847
- "shape": "S26"
1851
+ "shape": "S27"
1848
1852
  },
1849
1853
  "kinesisStreamArn": {},
1850
1854
  "userAccessLoggingSettingsArn": {}
1851
1855
  }
1852
1856
  },
1853
- "S31": {
1857
+ "S32": {
1854
1858
  "type": "structure",
1855
1859
  "required": [
1856
1860
  "userSettingsArn"
1857
1861
  ],
1858
1862
  "members": {
1859
1863
  "associatedPortalArns": {
1860
- "shape": "S26"
1864
+ "shape": "S27"
1861
1865
  },
1862
1866
  "copyAllowed": {},
1863
1867
  "disconnectTimeoutInMinutes": {
package/clients/all.d.ts CHANGED
@@ -335,3 +335,4 @@ export import Pipes = require('./pipes');
335
335
  export import SageMakerMetrics = require('./sagemakermetrics');
336
336
  export import KinesisVideoWebRTCStorage = require('./kinesisvideowebrtcstorage');
337
337
  export import LicenseManagerLinuxSubscriptions = require('./licensemanagerlinuxsubscriptions');
338
+ export import KendraRanking = require('./kendraranking');
package/clients/all.js CHANGED
@@ -336,5 +336,6 @@ module.exports = {
336
336
  Pipes: require('./pipes'),
337
337
  SageMakerMetrics: require('./sagemakermetrics'),
338
338
  KinesisVideoWebRTCStorage: require('./kinesisvideowebrtcstorage'),
339
- LicenseManagerLinuxSubscriptions: require('./licensemanagerlinuxsubscriptions')
339
+ LicenseManagerLinuxSubscriptions: require('./licensemanagerlinuxsubscriptions'),
340
+ KendraRanking: require('./kendraranking')
340
341
  };