Skip to content

Commit 04c9a50

Browse files
author
awstools
committed
Updates SDK to v2.1219.0
1 parent f0da17f commit 04c9a50

21 files changed

+3943
-2340
lines changed

.changes/2.1219.0.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "CloudTrail",
5+
"description": "This release includes support for importing existing trails into CloudTrail Lake."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "EC2",
10+
"description": "This release adds CapacityAllocations field to DescribeCapacityReservations"
11+
},
12+
{
13+
"type": "feature",
14+
"category": "MediaConnect",
15+
"description": "This change allows the customer to use the SRT Caller protocol as part of their flows"
16+
},
17+
{
18+
"type": "feature",
19+
"category": "RDS",
20+
"description": "This release adds support for Amazon RDS Proxy with SQL Server compatibility."
21+
}
22+
]

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1218.0-->
2+
<!--LATEST=2.1219.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1219.0
6+
* feature: CloudTrail: This release includes support for importing existing trails into CloudTrail Lake.
7+
* feature: EC2: This release adds CapacityAllocations field to DescribeCapacityReservations
8+
* feature: MediaConnect: This change allows the customer to use the SRT Caller protocol as part of their flows
9+
* feature: RDS: This release adds support for Amazon RDS Proxy with SQL Server compatibility.
10+
511
## 2.1218.0
612
* feature: CodeStarNotifications: This release adds tag based access control for the UntagResource API.
713

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
2929
To use the SDK in the browser, simply add the following script tag to your
3030
HTML pages:
3131

32-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1218.0.min.js"></script>
32+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1219.0.min.js"></script>
3333

3434
You can also build a custom browser SDK with your specified set of AWS services.
3535
This can allow you to reduce the SDK's size, specify different API versions of

apis/cloudtrail-2013-11-01.min.json

Lines changed: 247 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -391,6 +391,45 @@
391391
},
392392
"idempotent": true
393393
},
394+
"GetImport": {
395+
"input": {
396+
"type": "structure",
397+
"required": [
398+
"ImportId"
399+
],
400+
"members": {
401+
"ImportId": {}
402+
}
403+
},
404+
"output": {
405+
"type": "structure",
406+
"members": {
407+
"ImportId": {},
408+
"Destinations": {
409+
"shape": "S1y"
410+
},
411+
"ImportSource": {
412+
"shape": "S1z"
413+
},
414+
"StartEventTime": {
415+
"type": "timestamp"
416+
},
417+
"EndEventTime": {
418+
"type": "timestamp"
419+
},
420+
"ImportStatus": {},
421+
"CreatedTimestamp": {
422+
"type": "timestamp"
423+
},
424+
"UpdatedTimestamp": {
425+
"type": "timestamp"
426+
},
427+
"ImportStatistics": {
428+
"shape": "S22"
429+
}
430+
}
431+
}
432+
},
394433
"GetInsightSelectors": {
395434
"input": {
396435
"type": "structure",
@@ -406,7 +445,7 @@
406445
"members": {
407446
"TrailARN": {},
408447
"InsightSelectors": {
409-
"shape": "S1y"
448+
"shape": "S25"
410449
}
411450
}
412451
},
@@ -625,6 +664,82 @@
625664
},
626665
"idempotent": true
627666
},
667+
"ListImportFailures": {
668+
"input": {
669+
"type": "structure",
670+
"required": [
671+
"ImportId"
672+
],
673+
"members": {
674+
"ImportId": {},
675+
"MaxResults": {
676+
"type": "integer"
677+
},
678+
"NextToken": {}
679+
}
680+
},
681+
"output": {
682+
"type": "structure",
683+
"members": {
684+
"Failures": {
685+
"type": "list",
686+
"member": {
687+
"type": "structure",
688+
"members": {
689+
"Location": {},
690+
"Status": {},
691+
"ErrorType": {},
692+
"ErrorMessage": {},
693+
"LastUpdatedTime": {
694+
"type": "timestamp"
695+
}
696+
}
697+
}
698+
},
699+
"NextToken": {}
700+
}
701+
},
702+
"idempotent": true
703+
},
704+
"ListImports": {
705+
"input": {
706+
"type": "structure",
707+
"members": {
708+
"MaxResults": {
709+
"type": "integer"
710+
},
711+
"Destination": {},
712+
"ImportStatus": {},
713+
"NextToken": {}
714+
}
715+
},
716+
"output": {
717+
"type": "structure",
718+
"members": {
719+
"Imports": {
720+
"type": "list",
721+
"member": {
722+
"type": "structure",
723+
"members": {
724+
"ImportId": {},
725+
"ImportStatus": {},
726+
"Destinations": {
727+
"shape": "S1y"
728+
},
729+
"CreatedTimestamp": {
730+
"type": "timestamp"
731+
},
732+
"UpdatedTimestamp": {
733+
"type": "timestamp"
734+
}
735+
}
736+
}
737+
},
738+
"NextToken": {}
739+
}
740+
},
741+
"idempotent": true
742+
},
628743
"ListPublicKeys": {
629744
"input": {
630745
"type": "structure",
@@ -873,7 +988,7 @@
873988
"members": {
874989
"TrailName": {},
875990
"InsightSelectors": {
876-
"shape": "S1y"
991+
"shape": "S25"
877992
}
878993
}
879994
},
@@ -882,7 +997,7 @@
882997
"members": {
883998
"TrailARN": {},
884999
"InsightSelectors": {
885-
"shape": "S1y"
1000+
"shape": "S25"
8861001
}
8871002
}
8881003
},
@@ -948,6 +1063,51 @@
9481063
}
9491064
}
9501065
},
1066+
"StartImport": {
1067+
"input": {
1068+
"type": "structure",
1069+
"members": {
1070+
"Destinations": {
1071+
"shape": "S1y"
1072+
},
1073+
"ImportSource": {
1074+
"shape": "S1z"
1075+
},
1076+
"StartEventTime": {
1077+
"type": "timestamp"
1078+
},
1079+
"EndEventTime": {
1080+
"type": "timestamp"
1081+
},
1082+
"ImportId": {}
1083+
}
1084+
},
1085+
"output": {
1086+
"type": "structure",
1087+
"members": {
1088+
"ImportId": {},
1089+
"Destinations": {
1090+
"shape": "S1y"
1091+
},
1092+
"ImportSource": {
1093+
"shape": "S1z"
1094+
},
1095+
"StartEventTime": {
1096+
"type": "timestamp"
1097+
},
1098+
"EndEventTime": {
1099+
"type": "timestamp"
1100+
},
1101+
"ImportStatus": {},
1102+
"CreatedTimestamp": {
1103+
"type": "timestamp"
1104+
},
1105+
"UpdatedTimestamp": {
1106+
"type": "timestamp"
1107+
}
1108+
}
1109+
}
1110+
},
9511111
"StartLogging": {
9521112
"input": {
9531113
"type": "structure",
@@ -982,6 +1142,45 @@
9821142
},
9831143
"idempotent": true
9841144
},
1145+
"StopImport": {
1146+
"input": {
1147+
"type": "structure",
1148+
"required": [
1149+
"ImportId"
1150+
],
1151+
"members": {
1152+
"ImportId": {}
1153+
}
1154+
},
1155+
"output": {
1156+
"type": "structure",
1157+
"members": {
1158+
"ImportId": {},
1159+
"ImportSource": {
1160+
"shape": "S1z"
1161+
},
1162+
"Destinations": {
1163+
"shape": "S1y"
1164+
},
1165+
"ImportStatus": {},
1166+
"CreatedTimestamp": {
1167+
"type": "timestamp"
1168+
},
1169+
"UpdatedTimestamp": {
1170+
"type": "timestamp"
1171+
},
1172+
"StartEventTime": {
1173+
"type": "timestamp"
1174+
},
1175+
"EndEventTime": {
1176+
"type": "timestamp"
1177+
},
1178+
"ImportStatistics": {
1179+
"shape": "S22"
1180+
}
1181+
}
1182+
}
1183+
},
9851184
"StopLogging": {
9861185
"input": {
9871186
"type": "structure",
@@ -1239,6 +1438,51 @@
12391438
}
12401439
},
12411440
"S1y": {
1441+
"type": "list",
1442+
"member": {}
1443+
},
1444+
"S1z": {
1445+
"type": "structure",
1446+
"required": [
1447+
"S3"
1448+
],
1449+
"members": {
1450+
"S3": {
1451+
"type": "structure",
1452+
"required": [
1453+
"S3LocationUri",
1454+
"S3BucketRegion",
1455+
"S3BucketAccessRoleArn"
1456+
],
1457+
"members": {
1458+
"S3LocationUri": {},
1459+
"S3BucketRegion": {},
1460+
"S3BucketAccessRoleArn": {}
1461+
}
1462+
}
1463+
}
1464+
},
1465+
"S22": {
1466+
"type": "structure",
1467+
"members": {
1468+
"PrefixesFound": {
1469+
"type": "long"
1470+
},
1471+
"PrefixesCompleted": {
1472+
"type": "long"
1473+
},
1474+
"FilesCompleted": {
1475+
"type": "long"
1476+
},
1477+
"EventsCompleted": {
1478+
"type": "long"
1479+
},
1480+
"FailedEntries": {
1481+
"type": "long"
1482+
}
1483+
}
1484+
},
1485+
"S25": {
12421486
"type": "list",
12431487
"member": {
12441488
"type": "structure",

0 commit comments

Comments
 (0)