aws-sdk 2.1169.0 → 2.1170.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 +8 -1
- package/README.md +1 -1
- package/apis/chime-sdk-meetings-2021-07-15.min.json +20 -7
- package/apis/dms-2016-01-01.min.json +16 -0
- package/apis/iot-2015-05-28.min.json +9 -8
- package/apis/iotwireless-2020-11-22.min.json +319 -73
- package/apis/iotwireless-2020-11-22.paginators.json +5 -0
- package/apis/sagemaker-2017-07-24.min.json +787 -767
- package/clients/chimesdkmeetings.d.ts +24 -7
- package/clients/dms.d.ts +20 -0
- package/clients/iot.d.ts +24 -10
- package/clients/iotwireless.d.ts +270 -18
- package/clients/sagemaker.d.ts +27 -2
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +7 -7
- package/dist/aws-sdk.js +12 -11
- package/dist/aws-sdk.min.js +37 -37
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1170.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1170.0
|
|
6
|
+
* feature: ChimeSDKMeetings: Adds support for AppKeys and TenantIds in Amazon Chime SDK WebRTC sessions
|
|
7
|
+
* feature: DMS: New api to migrate event subscriptions to event bridge rules
|
|
8
|
+
* feature: IoTWireless: Adds 5 APIs: PutPositionConfiguration, GetPositionConfiguration, ListPositionConfigurations, UpdatePosition, GetPosition for the new Positioning Service feature which enables customers to configure solvers to calculate position of LoRaWAN devices, or specify position of LoRaWAN devices & gateways.
|
|
9
|
+
* feature: Iot: This release adds support to register a CA certificate without having to provide a verification certificate. This also allows multiple AWS accounts to register the same CA in the same region.
|
|
10
|
+
* feature: SageMaker: Heterogeneous clusters: the ability to launch training jobs with multiple instance types. This enables running component of the training job on the instance type that is most suitable for it. e.g. doing data processing and augmentation on CPU instances and neural network training on GPU instances
|
|
11
|
+
|
|
5
12
|
## 2.1169.0
|
|
6
13
|
* feature: CloudFormation: My AWS Service (placeholder) - Add a new feature Account-level Targeting for StackSet operation
|
|
7
14
|
* feature: Synthetics: This release introduces Group feature, which enables users to group cross-region canaries.
|
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.1170.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
|
|
@@ -143,14 +143,17 @@
|
|
|
143
143
|
"MeetingFeatures": {
|
|
144
144
|
"shape": "Sq"
|
|
145
145
|
},
|
|
146
|
-
"PrimaryMeetingId": {}
|
|
146
|
+
"PrimaryMeetingId": {},
|
|
147
|
+
"TenantIds": {
|
|
148
|
+
"shape": "Su"
|
|
149
|
+
}
|
|
147
150
|
}
|
|
148
151
|
},
|
|
149
152
|
"output": {
|
|
150
153
|
"type": "structure",
|
|
151
154
|
"members": {
|
|
152
155
|
"Meeting": {
|
|
153
|
-
"shape": "
|
|
156
|
+
"shape": "Sx"
|
|
154
157
|
}
|
|
155
158
|
}
|
|
156
159
|
}
|
|
@@ -191,14 +194,17 @@
|
|
|
191
194
|
"shape": "S4"
|
|
192
195
|
}
|
|
193
196
|
},
|
|
194
|
-
"PrimaryMeetingId": {}
|
|
197
|
+
"PrimaryMeetingId": {},
|
|
198
|
+
"TenantIds": {
|
|
199
|
+
"shape": "Su"
|
|
200
|
+
}
|
|
195
201
|
}
|
|
196
202
|
},
|
|
197
203
|
"output": {
|
|
198
204
|
"type": "structure",
|
|
199
205
|
"members": {
|
|
200
206
|
"Meeting": {
|
|
201
|
-
"shape": "
|
|
207
|
+
"shape": "Sx"
|
|
202
208
|
},
|
|
203
209
|
"Attendees": {
|
|
204
210
|
"shape": "S9"
|
|
@@ -304,7 +310,7 @@
|
|
|
304
310
|
"type": "structure",
|
|
305
311
|
"members": {
|
|
306
312
|
"Meeting": {
|
|
307
|
-
"shape": "
|
|
313
|
+
"shape": "Sx"
|
|
308
314
|
}
|
|
309
315
|
}
|
|
310
316
|
}
|
|
@@ -567,7 +573,11 @@
|
|
|
567
573
|
}
|
|
568
574
|
}
|
|
569
575
|
},
|
|
570
|
-
"
|
|
576
|
+
"Su": {
|
|
577
|
+
"type": "list",
|
|
578
|
+
"member": {}
|
|
579
|
+
},
|
|
580
|
+
"Sx": {
|
|
571
581
|
"type": "structure",
|
|
572
582
|
"members": {
|
|
573
583
|
"MeetingId": {},
|
|
@@ -594,7 +604,10 @@
|
|
|
594
604
|
"MeetingFeatures": {
|
|
595
605
|
"shape": "Sq"
|
|
596
606
|
},
|
|
597
|
-
"PrimaryMeetingId": {}
|
|
607
|
+
"PrimaryMeetingId": {},
|
|
608
|
+
"TenantIds": {
|
|
609
|
+
"shape": "Su"
|
|
610
|
+
}
|
|
598
611
|
}
|
|
599
612
|
}
|
|
600
613
|
}
|
|
@@ -2018,6 +2018,22 @@
|
|
|
2018
2018
|
}
|
|
2019
2019
|
}
|
|
2020
2020
|
}
|
|
2021
|
+
},
|
|
2022
|
+
"UpdateSubscriptionsToEventBridge": {
|
|
2023
|
+
"input": {
|
|
2024
|
+
"type": "structure",
|
|
2025
|
+
"members": {
|
|
2026
|
+
"ForceMove": {
|
|
2027
|
+
"type": "boolean"
|
|
2028
|
+
}
|
|
2029
|
+
}
|
|
2030
|
+
},
|
|
2031
|
+
"output": {
|
|
2032
|
+
"type": "structure",
|
|
2033
|
+
"members": {
|
|
2034
|
+
"Result": {}
|
|
2035
|
+
}
|
|
2036
|
+
}
|
|
2021
2037
|
}
|
|
2022
2038
|
},
|
|
2023
2039
|
"shapes": {
|
|
@@ -2541,11 +2541,12 @@
|
|
|
2541
2541
|
"generationId": {},
|
|
2542
2542
|
"validity": {
|
|
2543
2543
|
"shape": "She"
|
|
2544
|
-
}
|
|
2544
|
+
},
|
|
2545
|
+
"certificateMode": {}
|
|
2545
2546
|
}
|
|
2546
2547
|
},
|
|
2547
2548
|
"registrationConfig": {
|
|
2548
|
-
"shape": "
|
|
2549
|
+
"shape": "Shg"
|
|
2549
2550
|
}
|
|
2550
2551
|
}
|
|
2551
2552
|
}
|
|
@@ -6898,8 +6899,7 @@
|
|
|
6898
6899
|
"input": {
|
|
6899
6900
|
"type": "structure",
|
|
6900
6901
|
"required": [
|
|
6901
|
-
"caCertificate"
|
|
6902
|
-
"verificationCertificate"
|
|
6902
|
+
"caCertificate"
|
|
6903
6903
|
],
|
|
6904
6904
|
"members": {
|
|
6905
6905
|
"caCertificate": {},
|
|
@@ -6915,11 +6915,12 @@
|
|
|
6915
6915
|
"type": "boolean"
|
|
6916
6916
|
},
|
|
6917
6917
|
"registrationConfig": {
|
|
6918
|
-
"shape": "
|
|
6918
|
+
"shape": "Shg"
|
|
6919
6919
|
},
|
|
6920
6920
|
"tags": {
|
|
6921
6921
|
"shape": "S29"
|
|
6922
|
-
}
|
|
6922
|
+
},
|
|
6923
|
+
"certificateMode": {}
|
|
6923
6924
|
}
|
|
6924
6925
|
},
|
|
6925
6926
|
"output": {
|
|
@@ -7781,7 +7782,7 @@
|
|
|
7781
7782
|
"locationName": "newAutoRegistrationStatus"
|
|
7782
7783
|
},
|
|
7783
7784
|
"registrationConfig": {
|
|
7784
|
-
"shape": "
|
|
7785
|
+
"shape": "Shg"
|
|
7785
7786
|
},
|
|
7786
7787
|
"removeAutoRegistration": {
|
|
7787
7788
|
"type": "boolean"
|
|
@@ -9699,7 +9700,7 @@
|
|
|
9699
9700
|
}
|
|
9700
9701
|
}
|
|
9701
9702
|
},
|
|
9702
|
-
"
|
|
9703
|
+
"Shg": {
|
|
9703
9704
|
"type": "structure",
|
|
9704
9705
|
"members": {
|
|
9705
9706
|
"templateBody": {},
|