aws-sdk 2.1126.0 → 2.1127.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 +7 -1
- package/README.md +1 -1
- package/apis/ec2-2016-11-15.min.json +5 -1
- package/apis/kinesis-video-archived-media-2017-09-30.min.json +64 -0
- package/apis/kinesis-video-archived-media-2017-09-30.paginators.json +6 -0
- package/apis/kinesisvideo-2017-09-30.min.json +145 -8
- package/apis/s3-2006-03-01.examples.json +124 -124
- package/apis/sagemaker-2017-07-24.min.json +149 -138
- package/clients/ec2.d.ts +10 -2
- package/clients/kinesisvideo.d.ts +177 -10
- package/clients/kinesisvideoarchivedmedia.d.ts +94 -0
- package/clients/s3.d.ts +8 -8
- package/clients/sagemaker.d.ts +10 -0
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +6 -6
- package/dist/aws-sdk.js +223 -12
- package/dist/aws-sdk.min.js +69 -69
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1127.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1127.0
|
|
6
|
+
* feature: EC2: Adds support for allocating Dedicated Hosts on AWS Outposts. The AllocateHosts API now accepts an OutpostArn request parameter, and the DescribeHosts API now includes an OutpostArn response parameter.
|
|
7
|
+
* feature: KinesisVideo: Add support for multiple image feature related APIs for configuring image generation and notification of a video stream. Add "GET_IMAGES" to the list of supported API names for the GetDataEndpoint API.
|
|
8
|
+
* feature: KinesisVideoArchivedMedia: Add support for GetImages API for retrieving images from a video stream
|
|
9
|
+
* feature: SageMaker: SageMaker Autopilot adds new metrics for all candidate models generated by Autopilot experiments; RStudio on SageMaker now allows users to bring your own development environment in a custom image.
|
|
10
|
+
|
|
5
11
|
## 2.1126.0
|
|
6
12
|
* feature: Organizations: This release adds the INVALID_PAYMENT_INSTRUMENT as a fail reason and an error message.
|
|
7
13
|
* feature: Outposts: This release adds a new API called ListAssets to the Outposts SDK, which lists the hardware assets in an Outpost.
|
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.1127.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
|
|
@@ -263,7 +263,8 @@
|
|
|
263
263
|
"shape": "S1t",
|
|
264
264
|
"locationName": "TagSpecification"
|
|
265
265
|
},
|
|
266
|
-
"HostRecovery": {}
|
|
266
|
+
"HostRecovery": {},
|
|
267
|
+
"OutpostArn": {}
|
|
267
268
|
}
|
|
268
269
|
},
|
|
269
270
|
"output": {
|
|
@@ -8642,6 +8643,9 @@
|
|
|
8642
8643
|
"MemberOfServiceLinkedResourceGroup": {
|
|
8643
8644
|
"locationName": "memberOfServiceLinkedResourceGroup",
|
|
8644
8645
|
"type": "boolean"
|
|
8646
|
+
},
|
|
8647
|
+
"OutpostArn": {
|
|
8648
|
+
"locationName": "outpostArn"
|
|
8645
8649
|
}
|
|
8646
8650
|
}
|
|
8647
8651
|
}
|
|
@@ -153,6 +153,70 @@
|
|
|
153
153
|
}
|
|
154
154
|
}
|
|
155
155
|
},
|
|
156
|
+
"GetImages": {
|
|
157
|
+
"http": {
|
|
158
|
+
"requestUri": "/getImages"
|
|
159
|
+
},
|
|
160
|
+
"input": {
|
|
161
|
+
"type": "structure",
|
|
162
|
+
"required": [
|
|
163
|
+
"ImageSelectorType",
|
|
164
|
+
"StartTimestamp",
|
|
165
|
+
"EndTimestamp",
|
|
166
|
+
"SamplingInterval",
|
|
167
|
+
"Format"
|
|
168
|
+
],
|
|
169
|
+
"members": {
|
|
170
|
+
"StreamName": {},
|
|
171
|
+
"StreamARN": {},
|
|
172
|
+
"ImageSelectorType": {},
|
|
173
|
+
"StartTimestamp": {
|
|
174
|
+
"type": "timestamp"
|
|
175
|
+
},
|
|
176
|
+
"EndTimestamp": {
|
|
177
|
+
"type": "timestamp"
|
|
178
|
+
},
|
|
179
|
+
"SamplingInterval": {
|
|
180
|
+
"type": "integer"
|
|
181
|
+
},
|
|
182
|
+
"Format": {},
|
|
183
|
+
"FormatConfig": {
|
|
184
|
+
"type": "map",
|
|
185
|
+
"key": {},
|
|
186
|
+
"value": {}
|
|
187
|
+
},
|
|
188
|
+
"WidthPixels": {
|
|
189
|
+
"type": "integer"
|
|
190
|
+
},
|
|
191
|
+
"HeightPixels": {
|
|
192
|
+
"type": "integer"
|
|
193
|
+
},
|
|
194
|
+
"MaxResults": {
|
|
195
|
+
"type": "long"
|
|
196
|
+
},
|
|
197
|
+
"NextToken": {}
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"output": {
|
|
201
|
+
"type": "structure",
|
|
202
|
+
"members": {
|
|
203
|
+
"Images": {
|
|
204
|
+
"type": "list",
|
|
205
|
+
"member": {
|
|
206
|
+
"type": "structure",
|
|
207
|
+
"members": {
|
|
208
|
+
"TimeStamp": {
|
|
209
|
+
"type": "timestamp"
|
|
210
|
+
},
|
|
211
|
+
"Error": {},
|
|
212
|
+
"ImageContent": {}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
"NextToken": {}
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
},
|
|
156
220
|
"GetMediaForFragmentList": {
|
|
157
221
|
"http": {
|
|
158
222
|
"requestUri": "/getMediaForFragmentList"
|
|
@@ -108,6 +108,46 @@
|
|
|
108
108
|
"members": {}
|
|
109
109
|
}
|
|
110
110
|
},
|
|
111
|
+
"DescribeImageGenerationConfiguration": {
|
|
112
|
+
"http": {
|
|
113
|
+
"requestUri": "/describeImageGenerationConfiguration"
|
|
114
|
+
},
|
|
115
|
+
"input": {
|
|
116
|
+
"type": "structure",
|
|
117
|
+
"members": {
|
|
118
|
+
"StreamName": {},
|
|
119
|
+
"StreamARN": {}
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
"output": {
|
|
123
|
+
"type": "structure",
|
|
124
|
+
"members": {
|
|
125
|
+
"ImageGenerationConfiguration": {
|
|
126
|
+
"shape": "Sr"
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
"DescribeNotificationConfiguration": {
|
|
132
|
+
"http": {
|
|
133
|
+
"requestUri": "/describeNotificationConfiguration"
|
|
134
|
+
},
|
|
135
|
+
"input": {
|
|
136
|
+
"type": "structure",
|
|
137
|
+
"members": {
|
|
138
|
+
"StreamName": {},
|
|
139
|
+
"StreamARN": {}
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
"output": {
|
|
143
|
+
"type": "structure",
|
|
144
|
+
"members": {
|
|
145
|
+
"NotificationConfiguration": {
|
|
146
|
+
"shape": "S16"
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
},
|
|
111
151
|
"DescribeSignalingChannel": {
|
|
112
152
|
"http": {
|
|
113
153
|
"requestUri": "/describeSignalingChannel"
|
|
@@ -123,7 +163,7 @@
|
|
|
123
163
|
"type": "structure",
|
|
124
164
|
"members": {
|
|
125
165
|
"ChannelInfo": {
|
|
126
|
-
"shape": "
|
|
166
|
+
"shape": "S1a"
|
|
127
167
|
}
|
|
128
168
|
}
|
|
129
169
|
}
|
|
@@ -143,7 +183,7 @@
|
|
|
143
183
|
"type": "structure",
|
|
144
184
|
"members": {
|
|
145
185
|
"StreamInfo": {
|
|
146
|
-
"shape": "
|
|
186
|
+
"shape": "S1f"
|
|
147
187
|
}
|
|
148
188
|
}
|
|
149
189
|
}
|
|
@@ -235,7 +275,7 @@
|
|
|
235
275
|
"ChannelInfoList": {
|
|
236
276
|
"type": "list",
|
|
237
277
|
"member": {
|
|
238
|
-
"shape": "
|
|
278
|
+
"shape": "S1a"
|
|
239
279
|
}
|
|
240
280
|
},
|
|
241
281
|
"NextToken": {}
|
|
@@ -268,7 +308,7 @@
|
|
|
268
308
|
"StreamInfoList": {
|
|
269
309
|
"type": "list",
|
|
270
310
|
"member": {
|
|
271
|
-
"shape": "
|
|
311
|
+
"shape": "S1f"
|
|
272
312
|
}
|
|
273
313
|
},
|
|
274
314
|
"NextToken": {}
|
|
@@ -381,7 +421,7 @@
|
|
|
381
421
|
"members": {
|
|
382
422
|
"ResourceARN": {},
|
|
383
423
|
"TagKeyList": {
|
|
384
|
-
"shape": "
|
|
424
|
+
"shape": "S2e"
|
|
385
425
|
}
|
|
386
426
|
}
|
|
387
427
|
},
|
|
@@ -403,7 +443,7 @@
|
|
|
403
443
|
"StreamARN": {},
|
|
404
444
|
"StreamName": {},
|
|
405
445
|
"TagKeyList": {
|
|
406
|
-
"shape": "
|
|
446
|
+
"shape": "S2e"
|
|
407
447
|
}
|
|
408
448
|
}
|
|
409
449
|
},
|
|
@@ -438,6 +478,44 @@
|
|
|
438
478
|
"members": {}
|
|
439
479
|
}
|
|
440
480
|
},
|
|
481
|
+
"UpdateImageGenerationConfiguration": {
|
|
482
|
+
"http": {
|
|
483
|
+
"requestUri": "/updateImageGenerationConfiguration"
|
|
484
|
+
},
|
|
485
|
+
"input": {
|
|
486
|
+
"type": "structure",
|
|
487
|
+
"members": {
|
|
488
|
+
"StreamName": {},
|
|
489
|
+
"StreamARN": {},
|
|
490
|
+
"ImageGenerationConfiguration": {
|
|
491
|
+
"shape": "Sr"
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
},
|
|
495
|
+
"output": {
|
|
496
|
+
"type": "structure",
|
|
497
|
+
"members": {}
|
|
498
|
+
}
|
|
499
|
+
},
|
|
500
|
+
"UpdateNotificationConfiguration": {
|
|
501
|
+
"http": {
|
|
502
|
+
"requestUri": "/updateNotificationConfiguration"
|
|
503
|
+
},
|
|
504
|
+
"input": {
|
|
505
|
+
"type": "structure",
|
|
506
|
+
"members": {
|
|
507
|
+
"StreamName": {},
|
|
508
|
+
"StreamARN": {},
|
|
509
|
+
"NotificationConfiguration": {
|
|
510
|
+
"shape": "S16"
|
|
511
|
+
}
|
|
512
|
+
}
|
|
513
|
+
},
|
|
514
|
+
"output": {
|
|
515
|
+
"type": "structure",
|
|
516
|
+
"members": {}
|
|
517
|
+
}
|
|
518
|
+
},
|
|
441
519
|
"UpdateSignalingChannel": {
|
|
442
520
|
"http": {
|
|
443
521
|
"requestUri": "/updateSignalingChannel"
|
|
@@ -510,6 +588,65 @@
|
|
|
510
588
|
"value": {}
|
|
511
589
|
},
|
|
512
590
|
"Sr": {
|
|
591
|
+
"type": "structure",
|
|
592
|
+
"required": [
|
|
593
|
+
"Status",
|
|
594
|
+
"ImageSelectorType",
|
|
595
|
+
"DestinationConfig",
|
|
596
|
+
"SamplingInterval",
|
|
597
|
+
"Format"
|
|
598
|
+
],
|
|
599
|
+
"members": {
|
|
600
|
+
"Status": {},
|
|
601
|
+
"ImageSelectorType": {},
|
|
602
|
+
"DestinationConfig": {
|
|
603
|
+
"type": "structure",
|
|
604
|
+
"required": [
|
|
605
|
+
"Uri",
|
|
606
|
+
"DestinationRegion"
|
|
607
|
+
],
|
|
608
|
+
"members": {
|
|
609
|
+
"Uri": {},
|
|
610
|
+
"DestinationRegion": {}
|
|
611
|
+
}
|
|
612
|
+
},
|
|
613
|
+
"SamplingInterval": {
|
|
614
|
+
"type": "integer"
|
|
615
|
+
},
|
|
616
|
+
"Format": {},
|
|
617
|
+
"FormatConfig": {
|
|
618
|
+
"type": "map",
|
|
619
|
+
"key": {},
|
|
620
|
+
"value": {}
|
|
621
|
+
},
|
|
622
|
+
"WidthPixels": {
|
|
623
|
+
"type": "integer"
|
|
624
|
+
},
|
|
625
|
+
"HeightPixels": {
|
|
626
|
+
"type": "integer"
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
},
|
|
630
|
+
"S16": {
|
|
631
|
+
"type": "structure",
|
|
632
|
+
"required": [
|
|
633
|
+
"Status",
|
|
634
|
+
"DestinationConfig"
|
|
635
|
+
],
|
|
636
|
+
"members": {
|
|
637
|
+
"Status": {},
|
|
638
|
+
"DestinationConfig": {
|
|
639
|
+
"type": "structure",
|
|
640
|
+
"required": [
|
|
641
|
+
"Uri"
|
|
642
|
+
],
|
|
643
|
+
"members": {
|
|
644
|
+
"Uri": {}
|
|
645
|
+
}
|
|
646
|
+
}
|
|
647
|
+
}
|
|
648
|
+
},
|
|
649
|
+
"S1a": {
|
|
513
650
|
"type": "structure",
|
|
514
651
|
"members": {
|
|
515
652
|
"ChannelName": {},
|
|
@@ -525,7 +662,7 @@
|
|
|
525
662
|
"Version": {}
|
|
526
663
|
}
|
|
527
664
|
},
|
|
528
|
-
"
|
|
665
|
+
"S1f": {
|
|
529
666
|
"type": "structure",
|
|
530
667
|
"members": {
|
|
531
668
|
"DeviceName": {},
|
|
@@ -543,7 +680,7 @@
|
|
|
543
680
|
}
|
|
544
681
|
}
|
|
545
682
|
},
|
|
546
|
-
"
|
|
683
|
+
"S2e": {
|
|
547
684
|
"type": "list",
|
|
548
685
|
"member": {}
|
|
549
686
|
}
|