aws-sdk 2.684.0 → 2.688.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 +20 -1
- package/README.md +1 -1
- package/apis/athena-2017-05-18.min.json +287 -10
- package/apis/athena-2017-05-18.paginators.json +31 -7
- package/apis/elasticloadbalancingv2-2015-12-01.min.json +76 -63
- package/apis/elasticmapreduce-2009-03-31.min.json +3 -0
- package/apis/fsx-2018-03-01.min.json +49 -18
- package/apis/guardduty-2017-11-28.min.json +160 -26
- package/apis/kafka-2018-11-14.min.json +109 -7
- package/apis/marketplace-catalog-2018-09-17.min.json +1 -0
- package/apis/sagemaker-2017-07-24.min.json +4 -2
- package/apis/worklink-2018-09-25.min.json +102 -8
- package/apis/workmail-2017-10-01.min.json +106 -24
- package/clients/athena.d.ts +385 -30
- package/clients/elbv2.d.ts +15 -1
- package/clients/emr.d.ts +12 -0
- package/clients/fsx.d.ts +58 -13
- package/clients/guardduty.d.ts +144 -10
- package/clients/kafka.d.ts +131 -1
- package/clients/kms.d.ts +32 -32
- package/clients/marketplacecatalog.d.ts +10 -6
- package/clients/qldbsession.d.ts +9 -9
- package/clients/sagemaker.d.ts +53 -45
- package/clients/worklink.d.ts +80 -4
- package/clients/workmail.d.ts +104 -0
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +14 -14
- package/dist/aws-sdk.js +83 -67
- package/dist/aws-sdk.min.js +43 -43
- package/dist/xml2js.js +1 -1
- package/lib/core.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,26 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.688.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.688.0
|
|
6
|
+
* feature: GuardDuty: Amazon GuardDuty findings now include S3 bucket details under the resource section if an S3 Bucket was one of the affected resources
|
|
7
|
+
|
|
8
|
+
## 2.687.0
|
|
9
|
+
* feature: Athena: This release adds support for connecting Athena to your own Apache Hive Metastores in addition to the AWS Glue Data Catalog. For more information, please see https://docs.aws.amazon.com/athena/latest/ug/connect-to-data-source-hive.html
|
|
10
|
+
* feature: EMR: Amazon EMR now supports encrypting log files with AWS Key Management Service (KMS) customer managed keys.
|
|
11
|
+
* feature: FSx: New capabilities to update storage capacity and throughput capacity of your file systems, providing the flexibility to grow file storage and to scale up or down the available performance as needed to meet evolving storage needs over time.
|
|
12
|
+
* feature: KMS: AWS Key Management Service (AWS KMS): If the GenerateDataKeyPair or GenerateDataKeyPairWithoutPlaintext APIs are called on a CMK in a custom key store (origin == AWS_CLOUDHSM), they return an UnsupportedOperationException. If a call to UpdateAlias causes a customer to exceed the Alias resource quota, the UpdateAlias API returns a LimitExceededException.
|
|
13
|
+
* feature: SageMaker: We are releasing HumanTaskUiArn as a new parameter in CreateLabelingJob and RenderUiTemplate which can take an ARN for a system managed UI to render a task.
|
|
14
|
+
* feature: WorkLink: Amazon WorkLink now supports resource tagging for fleets.
|
|
15
|
+
|
|
16
|
+
## 2.686.0
|
|
17
|
+
* feature: Kafka: New APIs for upgrading the Apache Kafka version of a cluster and to find out compatible upgrade paths
|
|
18
|
+
* feature: MarketplaceCatalog: AWS Marketplace Catalog now supports accessing initial change payloads with DescribeChangeSet operation.
|
|
19
|
+
* feature: WorkMail: This release adds support for Amazon WorkMail organization-level retention policies.
|
|
20
|
+
|
|
21
|
+
## 2.685.0
|
|
22
|
+
* feature: ELBv2: This release added support for HTTP/2 ALPN preference lists for Network Load Balancers
|
|
23
|
+
|
|
5
24
|
## 2.684.0
|
|
6
25
|
* feature: DLM: Allowing cron expression in the DLM policy creation schedule.
|
|
7
26
|
* feature: EC2: ebsOptimizedInfo, efaSupported and supportedVirtualizationTypes added to DescribeInstanceTypes API
|
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.688.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
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
84
|
},
|
|
85
|
+
"CreateDataCatalog": {
|
|
86
|
+
"input": {
|
|
87
|
+
"type": "structure",
|
|
88
|
+
"required": [
|
|
89
|
+
"Name",
|
|
90
|
+
"Type"
|
|
91
|
+
],
|
|
92
|
+
"members": {
|
|
93
|
+
"Name": {},
|
|
94
|
+
"Type": {},
|
|
95
|
+
"Description": {},
|
|
96
|
+
"Parameters": {
|
|
97
|
+
"shape": "S12"
|
|
98
|
+
},
|
|
99
|
+
"Tags": {
|
|
100
|
+
"shape": "S15"
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"output": {
|
|
105
|
+
"type": "structure",
|
|
106
|
+
"members": {}
|
|
107
|
+
}
|
|
108
|
+
},
|
|
85
109
|
"CreateNamedQuery": {
|
|
86
110
|
"input": {
|
|
87
111
|
"type": "structure",
|
|
@@ -118,11 +142,11 @@
|
|
|
118
142
|
"members": {
|
|
119
143
|
"Name": {},
|
|
120
144
|
"Configuration": {
|
|
121
|
-
"shape": "
|
|
145
|
+
"shape": "S1e"
|
|
122
146
|
},
|
|
123
147
|
"Description": {},
|
|
124
148
|
"Tags": {
|
|
125
|
-
"shape": "
|
|
149
|
+
"shape": "S15"
|
|
126
150
|
}
|
|
127
151
|
}
|
|
128
152
|
},
|
|
@@ -131,6 +155,21 @@
|
|
|
131
155
|
"members": {}
|
|
132
156
|
}
|
|
133
157
|
},
|
|
158
|
+
"DeleteDataCatalog": {
|
|
159
|
+
"input": {
|
|
160
|
+
"type": "structure",
|
|
161
|
+
"required": [
|
|
162
|
+
"Name"
|
|
163
|
+
],
|
|
164
|
+
"members": {
|
|
165
|
+
"Name": {}
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
"output": {
|
|
169
|
+
"type": "structure",
|
|
170
|
+
"members": {}
|
|
171
|
+
}
|
|
172
|
+
},
|
|
134
173
|
"DeleteNamedQuery": {
|
|
135
174
|
"input": {
|
|
136
175
|
"type": "structure",
|
|
@@ -168,6 +207,58 @@
|
|
|
168
207
|
},
|
|
169
208
|
"idempotent": true
|
|
170
209
|
},
|
|
210
|
+
"GetDataCatalog": {
|
|
211
|
+
"input": {
|
|
212
|
+
"type": "structure",
|
|
213
|
+
"required": [
|
|
214
|
+
"Name"
|
|
215
|
+
],
|
|
216
|
+
"members": {
|
|
217
|
+
"Name": {}
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
"output": {
|
|
221
|
+
"type": "structure",
|
|
222
|
+
"members": {
|
|
223
|
+
"DataCatalog": {
|
|
224
|
+
"type": "structure",
|
|
225
|
+
"required": [
|
|
226
|
+
"Name",
|
|
227
|
+
"Type"
|
|
228
|
+
],
|
|
229
|
+
"members": {
|
|
230
|
+
"Name": {},
|
|
231
|
+
"Description": {},
|
|
232
|
+
"Type": {},
|
|
233
|
+
"Parameters": {
|
|
234
|
+
"shape": "S12"
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
},
|
|
241
|
+
"GetDatabase": {
|
|
242
|
+
"input": {
|
|
243
|
+
"type": "structure",
|
|
244
|
+
"required": [
|
|
245
|
+
"CatalogName",
|
|
246
|
+
"DatabaseName"
|
|
247
|
+
],
|
|
248
|
+
"members": {
|
|
249
|
+
"CatalogName": {},
|
|
250
|
+
"DatabaseName": {}
|
|
251
|
+
}
|
|
252
|
+
},
|
|
253
|
+
"output": {
|
|
254
|
+
"type": "structure",
|
|
255
|
+
"members": {
|
|
256
|
+
"Database": {
|
|
257
|
+
"shape": "S1u"
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
},
|
|
171
262
|
"GetNamedQuery": {
|
|
172
263
|
"input": {
|
|
173
264
|
"type": "structure",
|
|
@@ -285,6 +376,29 @@
|
|
|
285
376
|
}
|
|
286
377
|
}
|
|
287
378
|
},
|
|
379
|
+
"GetTableMetadata": {
|
|
380
|
+
"input": {
|
|
381
|
+
"type": "structure",
|
|
382
|
+
"required": [
|
|
383
|
+
"CatalogName",
|
|
384
|
+
"DatabaseName",
|
|
385
|
+
"TableName"
|
|
386
|
+
],
|
|
387
|
+
"members": {
|
|
388
|
+
"CatalogName": {},
|
|
389
|
+
"DatabaseName": {},
|
|
390
|
+
"TableName": {}
|
|
391
|
+
}
|
|
392
|
+
},
|
|
393
|
+
"output": {
|
|
394
|
+
"type": "structure",
|
|
395
|
+
"members": {
|
|
396
|
+
"TableMetadata": {
|
|
397
|
+
"shape": "S2h"
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
},
|
|
288
402
|
"GetWorkGroup": {
|
|
289
403
|
"input": {
|
|
290
404
|
"type": "structure",
|
|
@@ -307,7 +421,7 @@
|
|
|
307
421
|
"Name": {},
|
|
308
422
|
"State": {},
|
|
309
423
|
"Configuration": {
|
|
310
|
-
"shape": "
|
|
424
|
+
"shape": "S1e"
|
|
311
425
|
},
|
|
312
426
|
"Description": {},
|
|
313
427
|
"CreationTime": {
|
|
@@ -318,6 +432,60 @@
|
|
|
318
432
|
}
|
|
319
433
|
}
|
|
320
434
|
},
|
|
435
|
+
"ListDataCatalogs": {
|
|
436
|
+
"input": {
|
|
437
|
+
"type": "structure",
|
|
438
|
+
"members": {
|
|
439
|
+
"NextToken": {},
|
|
440
|
+
"MaxResults": {
|
|
441
|
+
"type": "integer"
|
|
442
|
+
}
|
|
443
|
+
}
|
|
444
|
+
},
|
|
445
|
+
"output": {
|
|
446
|
+
"type": "structure",
|
|
447
|
+
"members": {
|
|
448
|
+
"DataCatalogsSummary": {
|
|
449
|
+
"type": "list",
|
|
450
|
+
"member": {
|
|
451
|
+
"type": "structure",
|
|
452
|
+
"members": {
|
|
453
|
+
"CatalogName": {},
|
|
454
|
+
"Type": {}
|
|
455
|
+
}
|
|
456
|
+
}
|
|
457
|
+
},
|
|
458
|
+
"NextToken": {}
|
|
459
|
+
}
|
|
460
|
+
}
|
|
461
|
+
},
|
|
462
|
+
"ListDatabases": {
|
|
463
|
+
"input": {
|
|
464
|
+
"type": "structure",
|
|
465
|
+
"required": [
|
|
466
|
+
"CatalogName"
|
|
467
|
+
],
|
|
468
|
+
"members": {
|
|
469
|
+
"CatalogName": {},
|
|
470
|
+
"NextToken": {},
|
|
471
|
+
"MaxResults": {
|
|
472
|
+
"type": "integer"
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
},
|
|
476
|
+
"output": {
|
|
477
|
+
"type": "structure",
|
|
478
|
+
"members": {
|
|
479
|
+
"DatabaseList": {
|
|
480
|
+
"type": "list",
|
|
481
|
+
"member": {
|
|
482
|
+
"shape": "S1u"
|
|
483
|
+
}
|
|
484
|
+
},
|
|
485
|
+
"NextToken": {}
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
},
|
|
321
489
|
"ListNamedQueries": {
|
|
322
490
|
"input": {
|
|
323
491
|
"type": "structure",
|
|
@@ -360,6 +528,36 @@
|
|
|
360
528
|
}
|
|
361
529
|
}
|
|
362
530
|
},
|
|
531
|
+
"ListTableMetadata": {
|
|
532
|
+
"input": {
|
|
533
|
+
"type": "structure",
|
|
534
|
+
"required": [
|
|
535
|
+
"CatalogName",
|
|
536
|
+
"DatabaseName"
|
|
537
|
+
],
|
|
538
|
+
"members": {
|
|
539
|
+
"CatalogName": {},
|
|
540
|
+
"DatabaseName": {},
|
|
541
|
+
"Expression": {},
|
|
542
|
+
"NextToken": {},
|
|
543
|
+
"MaxResults": {
|
|
544
|
+
"type": "integer"
|
|
545
|
+
}
|
|
546
|
+
}
|
|
547
|
+
},
|
|
548
|
+
"output": {
|
|
549
|
+
"type": "structure",
|
|
550
|
+
"members": {
|
|
551
|
+
"TableMetadataList": {
|
|
552
|
+
"type": "list",
|
|
553
|
+
"member": {
|
|
554
|
+
"shape": "S2h"
|
|
555
|
+
}
|
|
556
|
+
},
|
|
557
|
+
"NextToken": {}
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
},
|
|
363
561
|
"ListTagsForResource": {
|
|
364
562
|
"input": {
|
|
365
563
|
"type": "structure",
|
|
@@ -378,7 +576,7 @@
|
|
|
378
576
|
"type": "structure",
|
|
379
577
|
"members": {
|
|
380
578
|
"Tags": {
|
|
381
|
-
"shape": "
|
|
579
|
+
"shape": "S15"
|
|
382
580
|
},
|
|
383
581
|
"NextToken": {}
|
|
384
582
|
}
|
|
@@ -471,7 +669,7 @@
|
|
|
471
669
|
"members": {
|
|
472
670
|
"ResourceARN": {},
|
|
473
671
|
"Tags": {
|
|
474
|
-
"shape": "
|
|
672
|
+
"shape": "S15"
|
|
475
673
|
}
|
|
476
674
|
}
|
|
477
675
|
},
|
|
@@ -500,6 +698,27 @@
|
|
|
500
698
|
"members": {}
|
|
501
699
|
}
|
|
502
700
|
},
|
|
701
|
+
"UpdateDataCatalog": {
|
|
702
|
+
"input": {
|
|
703
|
+
"type": "structure",
|
|
704
|
+
"required": [
|
|
705
|
+
"Name",
|
|
706
|
+
"Type"
|
|
707
|
+
],
|
|
708
|
+
"members": {
|
|
709
|
+
"Name": {},
|
|
710
|
+
"Type": {},
|
|
711
|
+
"Description": {},
|
|
712
|
+
"Parameters": {
|
|
713
|
+
"shape": "S12"
|
|
714
|
+
}
|
|
715
|
+
}
|
|
716
|
+
},
|
|
717
|
+
"output": {
|
|
718
|
+
"type": "structure",
|
|
719
|
+
"members": {}
|
|
720
|
+
}
|
|
721
|
+
},
|
|
503
722
|
"UpdateWorkGroup": {
|
|
504
723
|
"input": {
|
|
505
724
|
"type": "structure",
|
|
@@ -652,10 +871,26 @@
|
|
|
652
871
|
"Sr": {
|
|
653
872
|
"type": "structure",
|
|
654
873
|
"members": {
|
|
655
|
-
"Database": {}
|
|
874
|
+
"Database": {},
|
|
875
|
+
"Catalog": {}
|
|
656
876
|
}
|
|
657
877
|
},
|
|
658
|
-
"
|
|
878
|
+
"S12": {
|
|
879
|
+
"type": "map",
|
|
880
|
+
"key": {},
|
|
881
|
+
"value": {}
|
|
882
|
+
},
|
|
883
|
+
"S15": {
|
|
884
|
+
"type": "list",
|
|
885
|
+
"member": {
|
|
886
|
+
"type": "structure",
|
|
887
|
+
"members": {
|
|
888
|
+
"Key": {},
|
|
889
|
+
"Value": {}
|
|
890
|
+
}
|
|
891
|
+
}
|
|
892
|
+
},
|
|
893
|
+
"S1e": {
|
|
659
894
|
"type": "structure",
|
|
660
895
|
"members": {
|
|
661
896
|
"ResultConfiguration": {
|
|
@@ -675,13 +910,55 @@
|
|
|
675
910
|
}
|
|
676
911
|
}
|
|
677
912
|
},
|
|
678
|
-
"
|
|
913
|
+
"S1u": {
|
|
914
|
+
"type": "structure",
|
|
915
|
+
"required": [
|
|
916
|
+
"Name"
|
|
917
|
+
],
|
|
918
|
+
"members": {
|
|
919
|
+
"Name": {},
|
|
920
|
+
"Description": {},
|
|
921
|
+
"Parameters": {
|
|
922
|
+
"shape": "S12"
|
|
923
|
+
}
|
|
924
|
+
}
|
|
925
|
+
},
|
|
926
|
+
"S2h": {
|
|
927
|
+
"type": "structure",
|
|
928
|
+
"required": [
|
|
929
|
+
"Name"
|
|
930
|
+
],
|
|
931
|
+
"members": {
|
|
932
|
+
"Name": {},
|
|
933
|
+
"CreateTime": {
|
|
934
|
+
"type": "timestamp"
|
|
935
|
+
},
|
|
936
|
+
"LastAccessTime": {
|
|
937
|
+
"type": "timestamp"
|
|
938
|
+
},
|
|
939
|
+
"TableType": {},
|
|
940
|
+
"Columns": {
|
|
941
|
+
"shape": "S2k"
|
|
942
|
+
},
|
|
943
|
+
"PartitionKeys": {
|
|
944
|
+
"shape": "S2k"
|
|
945
|
+
},
|
|
946
|
+
"Parameters": {
|
|
947
|
+
"shape": "S12"
|
|
948
|
+
}
|
|
949
|
+
}
|
|
950
|
+
},
|
|
951
|
+
"S2k": {
|
|
679
952
|
"type": "list",
|
|
680
953
|
"member": {
|
|
681
954
|
"type": "structure",
|
|
955
|
+
"required": [
|
|
956
|
+
"Name"
|
|
957
|
+
],
|
|
682
958
|
"members": {
|
|
683
|
-
"
|
|
684
|
-
"
|
|
959
|
+
"Name": {},
|
|
960
|
+
"Type": {},
|
|
961
|
+
"Comment": {}
|
|
685
962
|
}
|
|
686
963
|
}
|
|
687
964
|
}
|
|
@@ -2,23 +2,47 @@
|
|
|
2
2
|
"pagination": {
|
|
3
3
|
"GetQueryResults": {
|
|
4
4
|
"input_token": "NextToken",
|
|
5
|
+
"limit_key": "MaxResults",
|
|
6
|
+
"output_token": "NextToken"
|
|
7
|
+
},
|
|
8
|
+
"ListDataCatalogs": {
|
|
9
|
+
"input_token": "NextToken",
|
|
10
|
+
"limit_key": "MaxResults",
|
|
5
11
|
"output_token": "NextToken",
|
|
6
|
-
"
|
|
12
|
+
"result_key": "DataCatalogsSummary"
|
|
7
13
|
},
|
|
8
|
-
"
|
|
14
|
+
"ListDatabases": {
|
|
9
15
|
"input_token": "NextToken",
|
|
16
|
+
"limit_key": "MaxResults",
|
|
10
17
|
"output_token": "NextToken",
|
|
11
|
-
"
|
|
18
|
+
"result_key": "DatabaseList"
|
|
19
|
+
},
|
|
20
|
+
"ListNamedQueries": {
|
|
21
|
+
"input_token": "NextToken",
|
|
22
|
+
"limit_key": "MaxResults",
|
|
23
|
+
"output_token": "NextToken"
|
|
12
24
|
},
|
|
13
25
|
"ListQueryExecutions": {
|
|
14
26
|
"input_token": "NextToken",
|
|
27
|
+
"limit_key": "MaxResults",
|
|
28
|
+
"output_token": "NextToken"
|
|
29
|
+
},
|
|
30
|
+
"ListTableMetadata": {
|
|
31
|
+
"input_token": "NextToken",
|
|
32
|
+
"limit_key": "MaxResults",
|
|
15
33
|
"output_token": "NextToken",
|
|
16
|
-
"
|
|
34
|
+
"result_key": "TableMetadataList"
|
|
17
35
|
},
|
|
18
|
-
"
|
|
36
|
+
"ListTagsForResource": {
|
|
19
37
|
"input_token": "NextToken",
|
|
38
|
+
"limit_key": "MaxResults",
|
|
20
39
|
"output_token": "NextToken",
|
|
21
|
-
"
|
|
40
|
+
"result_key": "Tags"
|
|
41
|
+
},
|
|
42
|
+
"ListWorkGroups": {
|
|
43
|
+
"input_token": "NextToken",
|
|
44
|
+
"limit_key": "MaxResults",
|
|
45
|
+
"output_token": "NextToken"
|
|
22
46
|
}
|
|
23
47
|
}
|
|
24
|
-
}
|
|
48
|
+
}
|