aws-sdk 2.771.0 → 2.772.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 +16 -1
- package/README.md +1 -1
- package/apis/accessanalyzer-2019-11-01.min.json +70 -48
- package/apis/budgets-2016-10-20.min.json +411 -0
- package/apis/budgets-2016-10-20.paginators.json +18 -0
- package/apis/dms-2016-01-01.min.json +15 -3
- package/apis/groundstation-2019-05-23.min.json +1 -0
- package/apis/iot-2015-05-28.min.json +4 -1
- package/apis/macie2-2020-01-01.min.json +159 -22
- package/apis/rds-2014-10-31.min.json +13 -1
- package/apis/rekognition-2016-06-27.min.json +161 -51
- package/apis/ssm-2014-11-06.min.json +147 -126
- package/apis/transfer-2018-11-05.min.json +32 -28
- package/apis/workmail-2017-10-01.min.json +93 -30
- package/apis/xray-2016-04-12.min.json +11 -5
- package/apis/xray-2016-04-12.paginators.json +0 -15
- package/clients/accessanalyzer.d.ts +26 -4
- package/clients/budgets.d.ts +358 -0
- package/clients/costexplorer.d.ts +1 -1
- package/clients/dms.d.ts +26 -2
- package/clients/glue.d.ts +1 -1
- package/clients/groundstation.d.ts +5 -1
- package/clients/iot.d.ts +10 -6
- package/clients/macie2.d.ts +182 -62
- package/clients/rds.d.ts +13 -9
- package/clients/rekognition.d.ts +123 -0
- package/clients/ssm.d.ts +63 -11
- package/clients/transfer.d.ts +77 -71
- package/clients/workmail.d.ts +91 -1
- package/clients/workspaces.d.ts +12 -12
- package/clients/xray.d.ts +29 -21
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +15 -15
- package/dist/aws-sdk.js +339 -202
- package/dist/aws-sdk.min.js +39 -39
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,22 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.772.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.772.0
|
|
6
|
+
* feature: AccessAnalyzer: This release adds support for the ApplyArchiveRule api in IAM Access Analyzer. The ApplyArchiveRule api allows users to apply an archive rule retroactively to existing findings in an analyzer.
|
|
7
|
+
* feature: Budgets: This release introduces AWS Budgets Actions, allowing you to define an explicit response(or set of responses) to take when your budget exceeds it's action threshold.
|
|
8
|
+
* feature: CostExplorer: This release improves email validation for subscriptions on the SDK endpoints.
|
|
9
|
+
* feature: DMS: When creating Endpoints, Replication Instances, and Replication Tasks, the feature provides you the option to specify friendly name to the resources.
|
|
10
|
+
* feature: GroundStation: Adds error message attribute to DescribeContact DataflowDetails
|
|
11
|
+
* feature: Iot: Add new variable, lastStatusChangeDate, to DescribeDomainConfiguration API
|
|
12
|
+
* feature: Macie2: This release of the Amazon Macie API adds support for pausing and resuming classification jobs. Also, sensitive data findings now include location data for up to 15 occurrences of sensitive data.
|
|
13
|
+
* feature: RDS: Return tags for all resources in the output of DescribeDBInstances, DescribeDBSnapshots, DescribeDBClusters, and DescribeDBClusterSnapshots API operations.
|
|
14
|
+
* feature: Rekognition: This SDK Release introduces new API (DetectProtectiveEquipment) for Amazon Rekognition. This release also adds ServiceQuotaExceeded exception to Amazon Rekognition IndexFaces API.
|
|
15
|
+
* feature: SSM: This Patch Manager release now supports searching for available packages from Amazon Linux and Amazon Linux 2 via the DescribeAvailablePatches API.
|
|
16
|
+
* feature: Transfer: Add support to associate VPC Security Groups at server creation.
|
|
17
|
+
* feature: WorkMail: Add CreateOrganization and DeleteOrganization API operations.
|
|
18
|
+
* feature: XRay: Enhancing CreateGroup, UpdateGroup, GetGroup and GetGroups APIs to support configuring X-Ray Insights Notifications. Adding TraceLimit information into X-Ray BatchGetTraces API response.
|
|
19
|
+
|
|
5
20
|
## 2.771.0
|
|
6
21
|
* bugfix: Test: Delete unused variable declarations from test
|
|
7
22
|
* feature: Amplify: Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer interval - enabling can make code changes can take up to 10 minutes to roll out.
|
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ version.
|
|
|
25
25
|
To use the SDK in the browser, simply add the following script tag to your
|
|
26
26
|
HTML pages:
|
|
27
27
|
|
|
28
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
|
28
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.772.0.min.js"></script>
|
|
29
29
|
|
|
30
30
|
You can also build a custom browser SDK with your specified set of AWS services.
|
|
31
31
|
This can allow you to reduce the SDK's size, specify different API versions of
|
|
@@ -12,6 +12,28 @@
|
|
|
12
12
|
"uid": "accessanalyzer-2019-11-01"
|
|
13
13
|
},
|
|
14
14
|
"operations": {
|
|
15
|
+
"ApplyArchiveRule": {
|
|
16
|
+
"http": {
|
|
17
|
+
"method": "PUT",
|
|
18
|
+
"requestUri": "/archive-rule",
|
|
19
|
+
"responseCode": 200
|
|
20
|
+
},
|
|
21
|
+
"input": {
|
|
22
|
+
"type": "structure",
|
|
23
|
+
"required": [
|
|
24
|
+
"analyzerArn",
|
|
25
|
+
"ruleName"
|
|
26
|
+
],
|
|
27
|
+
"members": {
|
|
28
|
+
"analyzerArn": {},
|
|
29
|
+
"clientToken": {
|
|
30
|
+
"idempotencyToken": true
|
|
31
|
+
},
|
|
32
|
+
"ruleName": {}
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"idempotent": true
|
|
36
|
+
},
|
|
15
37
|
"CreateAnalyzer": {
|
|
16
38
|
"http": {
|
|
17
39
|
"method": "PUT",
|
|
@@ -36,7 +58,7 @@
|
|
|
36
58
|
],
|
|
37
59
|
"members": {
|
|
38
60
|
"filter": {
|
|
39
|
-
"shape": "
|
|
61
|
+
"shape": "S8"
|
|
40
62
|
},
|
|
41
63
|
"ruleName": {}
|
|
42
64
|
}
|
|
@@ -46,7 +68,7 @@
|
|
|
46
68
|
"idempotencyToken": true
|
|
47
69
|
},
|
|
48
70
|
"tags": {
|
|
49
|
-
"shape": "
|
|
71
|
+
"shape": "Sc"
|
|
50
72
|
},
|
|
51
73
|
"type": {}
|
|
52
74
|
}
|
|
@@ -81,7 +103,7 @@
|
|
|
81
103
|
"idempotencyToken": true
|
|
82
104
|
},
|
|
83
105
|
"filter": {
|
|
84
|
-
"shape": "
|
|
106
|
+
"shape": "S8"
|
|
85
107
|
},
|
|
86
108
|
"ruleName": {}
|
|
87
109
|
}
|
|
@@ -182,13 +204,13 @@
|
|
|
182
204
|
],
|
|
183
205
|
"members": {
|
|
184
206
|
"actions": {
|
|
185
|
-
"shape": "
|
|
207
|
+
"shape": "Sm"
|
|
186
208
|
},
|
|
187
209
|
"analyzedAt": {
|
|
188
|
-
"shape": "
|
|
210
|
+
"shape": "Sn"
|
|
189
211
|
},
|
|
190
212
|
"createdAt": {
|
|
191
|
-
"shape": "
|
|
213
|
+
"shape": "Sn"
|
|
192
214
|
},
|
|
193
215
|
"error": {},
|
|
194
216
|
"isPublic": {
|
|
@@ -203,7 +225,7 @@
|
|
|
203
225
|
},
|
|
204
226
|
"status": {},
|
|
205
227
|
"updatedAt": {
|
|
206
|
-
"shape": "
|
|
228
|
+
"shape": "Sn"
|
|
207
229
|
}
|
|
208
230
|
}
|
|
209
231
|
}
|
|
@@ -235,7 +257,7 @@
|
|
|
235
257
|
],
|
|
236
258
|
"members": {
|
|
237
259
|
"analyzer": {
|
|
238
|
-
"shape": "
|
|
260
|
+
"shape": "St"
|
|
239
261
|
}
|
|
240
262
|
}
|
|
241
263
|
}
|
|
@@ -270,7 +292,7 @@
|
|
|
270
292
|
],
|
|
271
293
|
"members": {
|
|
272
294
|
"archiveRule": {
|
|
273
|
-
"shape": "
|
|
295
|
+
"shape": "Sz"
|
|
274
296
|
}
|
|
275
297
|
}
|
|
276
298
|
}
|
|
@@ -315,16 +337,16 @@
|
|
|
315
337
|
],
|
|
316
338
|
"members": {
|
|
317
339
|
"action": {
|
|
318
|
-
"shape": "
|
|
340
|
+
"shape": "Sm"
|
|
319
341
|
},
|
|
320
342
|
"analyzedAt": {
|
|
321
|
-
"shape": "
|
|
343
|
+
"shape": "Sn"
|
|
322
344
|
},
|
|
323
345
|
"condition": {
|
|
324
|
-
"shape": "
|
|
346
|
+
"shape": "S14"
|
|
325
347
|
},
|
|
326
348
|
"createdAt": {
|
|
327
|
-
"shape": "
|
|
349
|
+
"shape": "Sn"
|
|
328
350
|
},
|
|
329
351
|
"error": {},
|
|
330
352
|
"id": {},
|
|
@@ -332,17 +354,17 @@
|
|
|
332
354
|
"type": "boolean"
|
|
333
355
|
},
|
|
334
356
|
"principal": {
|
|
335
|
-
"shape": "
|
|
357
|
+
"shape": "S15"
|
|
336
358
|
},
|
|
337
359
|
"resource": {},
|
|
338
360
|
"resourceOwnerAccount": {},
|
|
339
361
|
"resourceType": {},
|
|
340
362
|
"sources": {
|
|
341
|
-
"shape": "
|
|
363
|
+
"shape": "S16"
|
|
342
364
|
},
|
|
343
365
|
"status": {},
|
|
344
366
|
"updatedAt": {
|
|
345
|
-
"shape": "
|
|
367
|
+
"shape": "Sn"
|
|
346
368
|
}
|
|
347
369
|
}
|
|
348
370
|
}
|
|
@@ -427,7 +449,7 @@
|
|
|
427
449
|
"analyzers": {
|
|
428
450
|
"type": "list",
|
|
429
451
|
"member": {
|
|
430
|
-
"shape": "
|
|
452
|
+
"shape": "St"
|
|
431
453
|
}
|
|
432
454
|
},
|
|
433
455
|
"nextToken": {}
|
|
@@ -470,7 +492,7 @@
|
|
|
470
492
|
"archiveRules": {
|
|
471
493
|
"type": "list",
|
|
472
494
|
"member": {
|
|
473
|
-
"shape": "
|
|
495
|
+
"shape": "Sz"
|
|
474
496
|
}
|
|
475
497
|
},
|
|
476
498
|
"nextToken": {}
|
|
@@ -490,7 +512,7 @@
|
|
|
490
512
|
"members": {
|
|
491
513
|
"analyzerArn": {},
|
|
492
514
|
"filter": {
|
|
493
|
-
"shape": "
|
|
515
|
+
"shape": "S8"
|
|
494
516
|
},
|
|
495
517
|
"maxResults": {
|
|
496
518
|
"type": "integer"
|
|
@@ -527,16 +549,16 @@
|
|
|
527
549
|
],
|
|
528
550
|
"members": {
|
|
529
551
|
"action": {
|
|
530
|
-
"shape": "
|
|
552
|
+
"shape": "Sm"
|
|
531
553
|
},
|
|
532
554
|
"analyzedAt": {
|
|
533
|
-
"shape": "
|
|
555
|
+
"shape": "Sn"
|
|
534
556
|
},
|
|
535
557
|
"condition": {
|
|
536
|
-
"shape": "
|
|
558
|
+
"shape": "S14"
|
|
537
559
|
},
|
|
538
560
|
"createdAt": {
|
|
539
|
-
"shape": "
|
|
561
|
+
"shape": "Sn"
|
|
540
562
|
},
|
|
541
563
|
"error": {},
|
|
542
564
|
"id": {},
|
|
@@ -544,17 +566,17 @@
|
|
|
544
566
|
"type": "boolean"
|
|
545
567
|
},
|
|
546
568
|
"principal": {
|
|
547
|
-
"shape": "
|
|
569
|
+
"shape": "S15"
|
|
548
570
|
},
|
|
549
571
|
"resource": {},
|
|
550
572
|
"resourceOwnerAccount": {},
|
|
551
573
|
"resourceType": {},
|
|
552
574
|
"sources": {
|
|
553
|
-
"shape": "
|
|
575
|
+
"shape": "S16"
|
|
554
576
|
},
|
|
555
577
|
"status": {},
|
|
556
578
|
"updatedAt": {
|
|
557
|
-
"shape": "
|
|
579
|
+
"shape": "Sn"
|
|
558
580
|
}
|
|
559
581
|
}
|
|
560
582
|
}
|
|
@@ -585,7 +607,7 @@
|
|
|
585
607
|
"type": "structure",
|
|
586
608
|
"members": {
|
|
587
609
|
"tags": {
|
|
588
|
-
"shape": "
|
|
610
|
+
"shape": "Sc"
|
|
589
611
|
}
|
|
590
612
|
}
|
|
591
613
|
}
|
|
@@ -624,7 +646,7 @@
|
|
|
624
646
|
"locationName": "resourceArn"
|
|
625
647
|
},
|
|
626
648
|
"tags": {
|
|
627
|
-
"shape": "
|
|
649
|
+
"shape": "Sc"
|
|
628
650
|
}
|
|
629
651
|
}
|
|
630
652
|
},
|
|
@@ -687,7 +709,7 @@
|
|
|
687
709
|
"idempotencyToken": true
|
|
688
710
|
},
|
|
689
711
|
"filter": {
|
|
690
|
-
"shape": "
|
|
712
|
+
"shape": "S8"
|
|
691
713
|
},
|
|
692
714
|
"ruleName": {
|
|
693
715
|
"location": "uri",
|
|
@@ -726,45 +748,45 @@
|
|
|
726
748
|
}
|
|
727
749
|
},
|
|
728
750
|
"shapes": {
|
|
729
|
-
"
|
|
751
|
+
"S8": {
|
|
730
752
|
"type": "map",
|
|
731
753
|
"key": {},
|
|
732
754
|
"value": {
|
|
733
755
|
"type": "structure",
|
|
734
756
|
"members": {
|
|
735
757
|
"contains": {
|
|
736
|
-
"shape": "
|
|
758
|
+
"shape": "Sa"
|
|
737
759
|
},
|
|
738
760
|
"eq": {
|
|
739
|
-
"shape": "
|
|
761
|
+
"shape": "Sa"
|
|
740
762
|
},
|
|
741
763
|
"exists": {
|
|
742
764
|
"type": "boolean"
|
|
743
765
|
},
|
|
744
766
|
"neq": {
|
|
745
|
-
"shape": "
|
|
767
|
+
"shape": "Sa"
|
|
746
768
|
}
|
|
747
769
|
}
|
|
748
770
|
}
|
|
749
771
|
},
|
|
750
|
-
"
|
|
772
|
+
"Sa": {
|
|
751
773
|
"type": "list",
|
|
752
774
|
"member": {}
|
|
753
775
|
},
|
|
754
|
-
"
|
|
776
|
+
"Sc": {
|
|
755
777
|
"type": "map",
|
|
756
778
|
"key": {},
|
|
757
779
|
"value": {}
|
|
758
780
|
},
|
|
759
|
-
"
|
|
781
|
+
"Sm": {
|
|
760
782
|
"type": "list",
|
|
761
783
|
"member": {}
|
|
762
784
|
},
|
|
763
|
-
"
|
|
785
|
+
"Sn": {
|
|
764
786
|
"type": "timestamp",
|
|
765
787
|
"timestampFormat": "iso8601"
|
|
766
788
|
},
|
|
767
|
-
"
|
|
789
|
+
"St": {
|
|
768
790
|
"type": "structure",
|
|
769
791
|
"required": [
|
|
770
792
|
"arn",
|
|
@@ -776,11 +798,11 @@
|
|
|
776
798
|
"members": {
|
|
777
799
|
"arn": {},
|
|
778
800
|
"createdAt": {
|
|
779
|
-
"shape": "
|
|
801
|
+
"shape": "Sn"
|
|
780
802
|
},
|
|
781
803
|
"lastResourceAnalyzed": {},
|
|
782
804
|
"lastResourceAnalyzedAt": {
|
|
783
|
-
"shape": "
|
|
805
|
+
"shape": "Sn"
|
|
784
806
|
},
|
|
785
807
|
"name": {},
|
|
786
808
|
"status": {},
|
|
@@ -794,12 +816,12 @@
|
|
|
794
816
|
}
|
|
795
817
|
},
|
|
796
818
|
"tags": {
|
|
797
|
-
"shape": "
|
|
819
|
+
"shape": "Sc"
|
|
798
820
|
},
|
|
799
821
|
"type": {}
|
|
800
822
|
}
|
|
801
823
|
},
|
|
802
|
-
"
|
|
824
|
+
"Sz": {
|
|
803
825
|
"type": "structure",
|
|
804
826
|
"required": [
|
|
805
827
|
"createdAt",
|
|
@@ -809,28 +831,28 @@
|
|
|
809
831
|
],
|
|
810
832
|
"members": {
|
|
811
833
|
"createdAt": {
|
|
812
|
-
"shape": "
|
|
834
|
+
"shape": "Sn"
|
|
813
835
|
},
|
|
814
836
|
"filter": {
|
|
815
|
-
"shape": "
|
|
837
|
+
"shape": "S8"
|
|
816
838
|
},
|
|
817
839
|
"ruleName": {},
|
|
818
840
|
"updatedAt": {
|
|
819
|
-
"shape": "
|
|
841
|
+
"shape": "Sn"
|
|
820
842
|
}
|
|
821
843
|
}
|
|
822
844
|
},
|
|
823
|
-
"
|
|
845
|
+
"S14": {
|
|
824
846
|
"type": "map",
|
|
825
847
|
"key": {},
|
|
826
848
|
"value": {}
|
|
827
849
|
},
|
|
828
|
-
"
|
|
850
|
+
"S15": {
|
|
829
851
|
"type": "map",
|
|
830
852
|
"key": {},
|
|
831
853
|
"value": {}
|
|
832
854
|
},
|
|
833
|
-
"
|
|
855
|
+
"S16": {
|
|
834
856
|
"type": "list",
|
|
835
857
|
"member": {
|
|
836
858
|
"type": "structure",
|