aws-sdk 2.1235.0 → 2.1237.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 +19 -1
- package/README.md +1 -1
- package/apis/cloudtrail-2013-11-01.min.json +30 -27
- package/apis/connect-2017-08-08.min.json +377 -134
- package/apis/connect-2017-08-08.paginators.json +6 -0
- package/apis/devops-guru-2020-12-01.min.json +140 -125
- package/apis/eventbridge-2015-10-07.min.json +5 -1
- package/apis/globalaccelerator-2018-08-08.min.json +163 -109
- package/apis/managedblockchain-2018-09-24.min.json +173 -49
- package/apis/managedblockchain-2018-09-24.paginators.json +6 -0
- package/apis/resiliencehub-2020-04-30.min.json +2 -1
- package/apis/rum-2018-05-10.min.json +360 -12
- package/apis/rum-2018-05-10.paginators.json +12 -0
- package/apis/s3-2006-03-01.examples.json +132 -132
- package/apis/s3-2006-03-01.min.json +311 -1
- package/apis/s3control-2018-08-20.min.json +533 -12
- package/apis/support-app-2021-08-20.min.json +28 -1
- package/apis/workspaces-web-2020-07-08.min.json +290 -63
- package/apis/workspaces-web-2020-07-08.paginators.json +5 -0
- package/clients/chimesdkmessaging.d.ts +3 -3
- package/clients/cloudtrail.d.ts +54 -40
- package/clients/configservice.d.ts +24 -24
- package/clients/connect.d.ts +327 -55
- package/clients/devopsguru.d.ts +26 -4
- package/clients/globalaccelerator.d.ts +60 -3
- package/clients/managedblockchain.d.ts +191 -46
- package/clients/resiliencehub.d.ts +7 -3
- package/clients/rum.d.ts +340 -5
- package/clients/s3.d.ts +1 -1
- package/clients/supportapp.d.ts +48 -10
- package/clients/workspacesweb.d.ts +199 -1
- package/dist/aws-sdk-core-react-native.js +9 -5
- package/dist/aws-sdk-react-native.js +25 -21
- package/dist/aws-sdk.js +735 -169
- package/dist/aws-sdk.min.js +83 -83
- package/lib/core.js +1 -1
- package/lib/event_listeners.js +7 -4
- package/lib/model/api.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,25 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1237.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1237.0
|
|
6
|
+
* feature: AwsQueryCompatible: Make AwsQueryCompatible translation only if trait is found
|
|
7
|
+
* feature: DevOpsGuru: This release adds information about the resources DevOps Guru is analyzing.
|
|
8
|
+
* feature: GlobalAccelerator: Global Accelerator now supports AddEndpoints and RemoveEndpoints operations for standard endpoint groups.
|
|
9
|
+
* feature: RUM: CloudWatch RUM now supports Extended CloudWatch Metrics with Additional Dimensions
|
|
10
|
+
* feature: Resiliencehub: In this release, we are introducing support for regional optimization for AWS Resilience Hub applications. It also includes a few documentation updates to improve clarity.
|
|
11
|
+
|
|
12
|
+
## 2.1236.0
|
|
13
|
+
* feature: CloudTrail: This release includes support for exporting CloudTrail Lake query results to an Amazon S3 bucket.
|
|
14
|
+
* feature: ConfigService: This release adds resourceType enums for AppConfig, AppSync, DataSync, EC2, EKS, Glue, GuardDuty, SageMaker, ServiceDiscovery, SES, Route53 types.
|
|
15
|
+
* feature: Connect: This release adds API support for managing phone numbers that can be used across multiple AWS regions through telephony traffic distribution.
|
|
16
|
+
* feature: EventBridge: Updates internal logic for constructing API endpoints. We have added rule-based endpoints and internal model parameters.
|
|
17
|
+
* feature: ManagedBlockchain: Adding new Accessor APIs for Amazon Managed Blockchain
|
|
18
|
+
* feature: S3: Updates internal logic for constructing API endpoints. We have added rule-based endpoints and internal model parameters.
|
|
19
|
+
* feature: S3Control: Updates internal logic for constructing API endpoints. We have added rule-based endpoints and internal model parameters.
|
|
20
|
+
* feature: SupportApp: This release adds the RegisterSlackWorkspaceForOrganization API. You can use the API to register a Slack workspace for an AWS account that is part of an organization.
|
|
21
|
+
* feature: WorkSpacesWeb: WorkSpaces Web now supports user access logging for recording session start, stop, and URL navigation.
|
|
22
|
+
|
|
5
23
|
## 2.1235.0
|
|
6
24
|
* feature: SESV2: This release allows subscribers to enable Dedicated IPs (managed) to send email via a fully managed dedicated IP experience. It also adds identities' VerificationStatus in the response of GetEmailIdentity and ListEmailIdentities APIs, and ImportJobs counts in the response of ListImportJobs API.
|
|
7
25
|
* feature: SageMaker: This change allows customers to enable data capturing while running a batch transform job, and configure monitoring schedule to monitoring the captured data.
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
|
|
|
29
29
|
To use the SDK in the browser, simply add the following script tag to your
|
|
30
30
|
HTML pages:
|
|
31
31
|
|
|
32
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
|
32
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1237.0.min.js"></script>
|
|
33
33
|
|
|
34
34
|
You can also build a custom browser SDK with your specified set of AWS services.
|
|
35
35
|
This can allow you to reduce the SDK's size, specify different API versions of
|
|
@@ -250,7 +250,9 @@
|
|
|
250
250
|
}
|
|
251
251
|
}
|
|
252
252
|
},
|
|
253
|
-
"ErrorMessage": {}
|
|
253
|
+
"ErrorMessage": {},
|
|
254
|
+
"DeliveryS3Uri": {},
|
|
255
|
+
"DeliveryStatus": {}
|
|
254
256
|
}
|
|
255
257
|
},
|
|
256
258
|
"idempotent": true
|
|
@@ -274,7 +276,7 @@
|
|
|
274
276
|
"trailList": {
|
|
275
277
|
"type": "list",
|
|
276
278
|
"member": {
|
|
277
|
-
"shape": "
|
|
279
|
+
"shape": "S1c"
|
|
278
280
|
}
|
|
279
281
|
}
|
|
280
282
|
}
|
|
@@ -382,7 +384,7 @@
|
|
|
382
384
|
"members": {
|
|
383
385
|
"TrailARN": {},
|
|
384
386
|
"EventSelectors": {
|
|
385
|
-
"shape": "
|
|
387
|
+
"shape": "S1r"
|
|
386
388
|
},
|
|
387
389
|
"AdvancedEventSelectors": {
|
|
388
390
|
"shape": "Sf"
|
|
@@ -406,10 +408,10 @@
|
|
|
406
408
|
"members": {
|
|
407
409
|
"ImportId": {},
|
|
408
410
|
"Destinations": {
|
|
409
|
-
"shape": "
|
|
411
|
+
"shape": "S20"
|
|
410
412
|
},
|
|
411
413
|
"ImportSource": {
|
|
412
|
-
"shape": "
|
|
414
|
+
"shape": "S21"
|
|
413
415
|
},
|
|
414
416
|
"StartEventTime": {
|
|
415
417
|
"type": "timestamp"
|
|
@@ -425,7 +427,7 @@
|
|
|
425
427
|
"type": "timestamp"
|
|
426
428
|
},
|
|
427
429
|
"ImportStatistics": {
|
|
428
|
-
"shape": "
|
|
430
|
+
"shape": "S24"
|
|
429
431
|
}
|
|
430
432
|
}
|
|
431
433
|
}
|
|
@@ -445,7 +447,7 @@
|
|
|
445
447
|
"members": {
|
|
446
448
|
"TrailARN": {},
|
|
447
449
|
"InsightSelectors": {
|
|
448
|
-
"shape": "
|
|
450
|
+
"shape": "S27"
|
|
449
451
|
}
|
|
450
452
|
}
|
|
451
453
|
},
|
|
@@ -515,7 +517,7 @@
|
|
|
515
517
|
"type": "structure",
|
|
516
518
|
"members": {
|
|
517
519
|
"Trail": {
|
|
518
|
-
"shape": "
|
|
520
|
+
"shape": "S1c"
|
|
519
521
|
}
|
|
520
522
|
}
|
|
521
523
|
},
|
|
@@ -724,7 +726,7 @@
|
|
|
724
726
|
"ImportId": {},
|
|
725
727
|
"ImportStatus": {},
|
|
726
728
|
"Destinations": {
|
|
727
|
-
"shape": "
|
|
729
|
+
"shape": "S20"
|
|
728
730
|
},
|
|
729
731
|
"CreatedTimestamp": {
|
|
730
732
|
"type": "timestamp"
|
|
@@ -957,7 +959,7 @@
|
|
|
957
959
|
"members": {
|
|
958
960
|
"TrailName": {},
|
|
959
961
|
"EventSelectors": {
|
|
960
|
-
"shape": "
|
|
962
|
+
"shape": "S1r"
|
|
961
963
|
},
|
|
962
964
|
"AdvancedEventSelectors": {
|
|
963
965
|
"shape": "Sf"
|
|
@@ -969,7 +971,7 @@
|
|
|
969
971
|
"members": {
|
|
970
972
|
"TrailARN": {},
|
|
971
973
|
"EventSelectors": {
|
|
972
|
-
"shape": "
|
|
974
|
+
"shape": "S1r"
|
|
973
975
|
},
|
|
974
976
|
"AdvancedEventSelectors": {
|
|
975
977
|
"shape": "Sf"
|
|
@@ -988,7 +990,7 @@
|
|
|
988
990
|
"members": {
|
|
989
991
|
"TrailName": {},
|
|
990
992
|
"InsightSelectors": {
|
|
991
|
-
"shape": "
|
|
993
|
+
"shape": "S27"
|
|
992
994
|
}
|
|
993
995
|
}
|
|
994
996
|
},
|
|
@@ -997,7 +999,7 @@
|
|
|
997
999
|
"members": {
|
|
998
1000
|
"TrailARN": {},
|
|
999
1001
|
"InsightSelectors": {
|
|
1000
|
-
"shape": "
|
|
1002
|
+
"shape": "S27"
|
|
1001
1003
|
}
|
|
1002
1004
|
}
|
|
1003
1005
|
},
|
|
@@ -1068,10 +1070,10 @@
|
|
|
1068
1070
|
"type": "structure",
|
|
1069
1071
|
"members": {
|
|
1070
1072
|
"Destinations": {
|
|
1071
|
-
"shape": "
|
|
1073
|
+
"shape": "S20"
|
|
1072
1074
|
},
|
|
1073
1075
|
"ImportSource": {
|
|
1074
|
-
"shape": "
|
|
1076
|
+
"shape": "S21"
|
|
1075
1077
|
},
|
|
1076
1078
|
"StartEventTime": {
|
|
1077
1079
|
"type": "timestamp"
|
|
@@ -1087,10 +1089,10 @@
|
|
|
1087
1089
|
"members": {
|
|
1088
1090
|
"ImportId": {},
|
|
1089
1091
|
"Destinations": {
|
|
1090
|
-
"shape": "
|
|
1092
|
+
"shape": "S20"
|
|
1091
1093
|
},
|
|
1092
1094
|
"ImportSource": {
|
|
1093
|
-
"shape": "
|
|
1095
|
+
"shape": "S21"
|
|
1094
1096
|
},
|
|
1095
1097
|
"StartEventTime": {
|
|
1096
1098
|
"type": "timestamp"
|
|
@@ -1131,7 +1133,8 @@
|
|
|
1131
1133
|
"QueryStatement"
|
|
1132
1134
|
],
|
|
1133
1135
|
"members": {
|
|
1134
|
-
"QueryStatement": {}
|
|
1136
|
+
"QueryStatement": {},
|
|
1137
|
+
"DeliveryS3Uri": {}
|
|
1135
1138
|
}
|
|
1136
1139
|
},
|
|
1137
1140
|
"output": {
|
|
@@ -1157,10 +1160,10 @@
|
|
|
1157
1160
|
"members": {
|
|
1158
1161
|
"ImportId": {},
|
|
1159
1162
|
"ImportSource": {
|
|
1160
|
-
"shape": "
|
|
1163
|
+
"shape": "S21"
|
|
1161
1164
|
},
|
|
1162
1165
|
"Destinations": {
|
|
1163
|
-
"shape": "
|
|
1166
|
+
"shape": "S20"
|
|
1164
1167
|
},
|
|
1165
1168
|
"ImportStatus": {},
|
|
1166
1169
|
"CreatedTimestamp": {
|
|
@@ -1176,7 +1179,7 @@
|
|
|
1176
1179
|
"type": "timestamp"
|
|
1177
1180
|
},
|
|
1178
1181
|
"ImportStatistics": {
|
|
1179
|
-
"shape": "
|
|
1182
|
+
"shape": "S24"
|
|
1180
1183
|
}
|
|
1181
1184
|
}
|
|
1182
1185
|
}
|
|
@@ -1373,7 +1376,7 @@
|
|
|
1373
1376
|
"type": "list",
|
|
1374
1377
|
"member": {}
|
|
1375
1378
|
},
|
|
1376
|
-
"
|
|
1379
|
+
"S1c": {
|
|
1377
1380
|
"type": "structure",
|
|
1378
1381
|
"members": {
|
|
1379
1382
|
"Name": {},
|
|
@@ -1408,7 +1411,7 @@
|
|
|
1408
1411
|
}
|
|
1409
1412
|
}
|
|
1410
1413
|
},
|
|
1411
|
-
"
|
|
1414
|
+
"S1r": {
|
|
1412
1415
|
"type": "list",
|
|
1413
1416
|
"member": {
|
|
1414
1417
|
"type": "structure",
|
|
@@ -1437,11 +1440,11 @@
|
|
|
1437
1440
|
}
|
|
1438
1441
|
}
|
|
1439
1442
|
},
|
|
1440
|
-
"
|
|
1443
|
+
"S20": {
|
|
1441
1444
|
"type": "list",
|
|
1442
1445
|
"member": {}
|
|
1443
1446
|
},
|
|
1444
|
-
"
|
|
1447
|
+
"S21": {
|
|
1445
1448
|
"type": "structure",
|
|
1446
1449
|
"required": [
|
|
1447
1450
|
"S3"
|
|
@@ -1462,7 +1465,7 @@
|
|
|
1462
1465
|
}
|
|
1463
1466
|
}
|
|
1464
1467
|
},
|
|
1465
|
-
"
|
|
1468
|
+
"S24": {
|
|
1466
1469
|
"type": "structure",
|
|
1467
1470
|
"members": {
|
|
1468
1471
|
"PrefixesFound": {
|
|
@@ -1482,7 +1485,7 @@
|
|
|
1482
1485
|
}
|
|
1483
1486
|
}
|
|
1484
1487
|
},
|
|
1485
|
-
"
|
|
1488
|
+
"S27": {
|
|
1486
1489
|
"type": "list",
|
|
1487
1490
|
"member": {
|
|
1488
1491
|
"type": "structure",
|