Skip to content

Commit 6eef808

Browse files
Release v1.44.258 (2023-05-05) (#4826)
Release v1.44.258 (2023-05-05) === ### Service Client Updates * `service/ec2`: Updates service API * This release adds support the inf2 and trn1n instances. inf2 instances are purpose built for deep learning inference while trn1n instances are powered by AWS Trainium accelerators and they build on the capabilities of Trainium-powered trn1 instances. * `service/inspector2`: Updates service API, documentation, and paginators * `service/mediatailor`: Updates service API and documentation * `service/sqs`: Updates service API, documentation, and paginators * Revert previous SQS protocol change.
1 parent 6a59209 commit 6eef808

File tree

20 files changed

+2564
-4074
lines changed

20 files changed

+2564
-4074
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
Release v1.44.258 (2023-05-05)
2+
===
3+
4+
### Service Client Updates
5+
* `service/ec2`: Updates service API
6+
* This release adds support the inf2 and trn1n instances. inf2 instances are purpose built for deep learning inference while trn1n instances are powered by AWS Trainium accelerators and they build on the capabilities of Trainium-powered trn1 instances.
7+
* `service/inspector2`: Updates service API, documentation, and paginators
8+
* `service/mediatailor`: Updates service API and documentation
9+
* `service/sqs`: Updates service API, documentation, and paginators
10+
* Revert previous SQS protocol change.
11+
112
Release v1.44.257 (2023-05-04)
213
===
314

aws/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.44.257"
8+
const SDKVersion = "1.44.258"

models/apis/ec2/2016-11-15/api-2.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -27062,7 +27062,12 @@
2706227062
"m6in.metal",
2706327063
"m6idn.metal",
2706427064
"r6in.metal",
27065-
"r6idn.metal"
27065+
"r6idn.metal",
27066+
"inf2.xlarge",
27067+
"inf2.8xlarge",
27068+
"inf2.24xlarge",
27069+
"inf2.48xlarge",
27070+
"trn1n.32xlarge"
2706627071
]
2706727072
},
2706827073
"InstanceTypeHypervisor":{
@@ -34439,7 +34444,7 @@
3443934444
},
3444034445
"PrivateIpAddressCount":{
3444134446
"type":"integer",
34442-
"max":7,
34447+
"max":31,
3444334448
"min":1
3444434449
},
3444534450
"PrivateIpAddressSpecification":{

models/apis/inspector2/2020-06-08/api-2.json

+212
Original file line numberDiff line numberDiff line change
@@ -503,6 +503,22 @@
503503
{"shape":"InternalServerException"}
504504
]
505505
},
506+
"SearchVulnerabilities":{
507+
"name":"SearchVulnerabilities",
508+
"http":{
509+
"method":"POST",
510+
"requestUri":"/vulnerabilities/search",
511+
"responseCode":200
512+
},
513+
"input":{"shape":"SearchVulnerabilitiesRequest"},
514+
"output":{"shape":"SearchVulnerabilitiesResponse"},
515+
"errors":[
516+
{"shape":"ValidationException"},
517+
{"shape":"AccessDeniedException"},
518+
{"shape":"ThrottlingException"},
519+
{"shape":"InternalServerException"}
520+
]
521+
},
506522
"TagResource":{
507523
"name":"TagResource",
508524
"http":{
@@ -837,6 +853,15 @@
837853
"accountId":{"shape":"AccountId"}
838854
}
839855
},
856+
"AtigData":{
857+
"type":"structure",
858+
"members":{
859+
"firstSeen":{"shape":"FirstSeen"},
860+
"lastSeen":{"shape":"LastSeen"},
861+
"targets":{"shape":"Targets"},
862+
"ttps":{"shape":"Ttps"}
863+
}
864+
},
840865
"AutoEnable":{
841866
"type":"structure",
842867
"required":[
@@ -1032,6 +1057,20 @@
10321057
"reportId":{"shape":"ReportId"}
10331058
}
10341059
},
1060+
"CisaAction":{
1061+
"type":"string",
1062+
"min":0
1063+
},
1064+
"CisaData":{
1065+
"type":"structure",
1066+
"members":{
1067+
"action":{"shape":"CisaAction"},
1068+
"dateAdded":{"shape":"CisaDateAdded"},
1069+
"dateDue":{"shape":"CisaDateDue"}
1070+
}
1071+
},
1072+
"CisaDateAdded":{"type":"timestamp"},
1073+
"CisaDateDue":{"type":"timestamp"},
10351074
"ClientToken":{
10361075
"type":"string",
10371076
"max":64,
@@ -1213,6 +1252,30 @@
12131252
"type":"string",
12141253
"enum":["USD"]
12151254
},
1255+
"Cvss2":{
1256+
"type":"structure",
1257+
"members":{
1258+
"baseScore":{"shape":"Cvss2BaseScore"},
1259+
"scoringVector":{"shape":"Cvss2ScoringVector"}
1260+
}
1261+
},
1262+
"Cvss2BaseScore":{"type":"double"},
1263+
"Cvss2ScoringVector":{
1264+
"type":"string",
1265+
"min":0
1266+
},
1267+
"Cvss3":{
1268+
"type":"structure",
1269+
"members":{
1270+
"baseScore":{"shape":"Cvss3BaseScore"},
1271+
"scoringVector":{"shape":"Cvss3ScoringVector"}
1272+
}
1273+
},
1274+
"Cvss3BaseScore":{"type":"double"},
1275+
"Cvss3ScoringVector":{
1276+
"type":"string",
1277+
"min":0
1278+
},
12161279
"CvssScore":{
12171280
"type":"structure",
12181281
"required":[
@@ -1264,6 +1327,15 @@
12641327
"type":"list",
12651328
"member":{"shape":"CvssScore"}
12661329
},
1330+
"Cwe":{
1331+
"type":"string",
1332+
"min":0
1333+
},
1334+
"Cwes":{
1335+
"type":"list",
1336+
"member":{"shape":"Cwe"},
1337+
"min":0
1338+
},
12671339
"DateFilter":{
12681340
"type":"structure",
12691341
"members":{
@@ -1343,6 +1415,12 @@
13431415
"kmsKeyArn":{"shape":"String"}
13441416
}
13451417
},
1418+
"DetectionPlatforms":{
1419+
"type":"list",
1420+
"member":{"shape":"NonEmptyString"},
1421+
"max":100,
1422+
"min":0
1423+
},
13461424
"DisableDelegatedAdminAccountRequest":{
13471425
"type":"structure",
13481426
"required":["delegatedAdminAccountId"],
@@ -1556,6 +1634,13 @@
15561634
"failedAccounts":{"shape":"FailedAccountList"}
15571635
}
15581636
},
1637+
"Epss":{
1638+
"type":"structure",
1639+
"members":{
1640+
"score":{"shape":"EpssScore"}
1641+
}
1642+
},
1643+
"EpssScore":{"type":"double"},
15591644
"ErrorCode":{
15601645
"type":"string",
15611646
"enum":[
@@ -1587,6 +1672,13 @@
15871672
"NO"
15881673
]
15891674
},
1675+
"ExploitObserved":{
1676+
"type":"structure",
1677+
"members":{
1678+
"firstSeen":{"shape":"FirstSeen"},
1679+
"lastSeen":{"shape":"LastSeen"}
1680+
}
1681+
},
15901682
"ExploitabilityDetails":{
15911683
"type":"structure",
15921684
"members":{
@@ -1842,6 +1934,7 @@
18421934
"ALL"
18431935
]
18441936
},
1937+
"FirstSeen":{"type":"timestamp"},
18451938
"FixAvailable":{
18461939
"type":"string",
18471940
"enum":[
@@ -2185,6 +2278,7 @@
21852278
"vpcId":{"shape":"VpcId"}
21862279
}
21872280
},
2281+
"LastSeen":{"type":"timestamp"},
21882282
"LayerList":{
21892283
"type":"list",
21902284
"member":{"shape":"LambdaLayerArn"},
@@ -2746,6 +2840,16 @@
27462840
"text":{"shape":"NonEmptyString"}
27472841
}
27482842
},
2843+
"RelatedVulnerabilities":{
2844+
"type":"list",
2845+
"member":{"shape":"RelatedVulnerability"},
2846+
"max":100,
2847+
"min":0
2848+
},
2849+
"RelatedVulnerability":{
2850+
"type":"string",
2851+
"min":0
2852+
},
27492853
"RelationshipStatus":{
27502854
"type":"string",
27512855
"enum":[
@@ -2987,6 +3091,29 @@
29873091
"PACKAGE"
29883092
]
29893093
},
3094+
"SearchVulnerabilitiesFilterCriteria":{
3095+
"type":"structure",
3096+
"required":["vulnerabilityIds"],
3097+
"members":{
3098+
"vulnerabilityIds":{"shape":"VulnIdList"}
3099+
}
3100+
},
3101+
"SearchVulnerabilitiesRequest":{
3102+
"type":"structure",
3103+
"required":["filterCriteria"],
3104+
"members":{
3105+
"filterCriteria":{"shape":"SearchVulnerabilitiesFilterCriteria"},
3106+
"nextToken":{"shape":"NextToken"}
3107+
}
3108+
},
3109+
"SearchVulnerabilitiesResponse":{
3110+
"type":"structure",
3111+
"required":["vulnerabilities"],
3112+
"members":{
3113+
"nextToken":{"shape":"NextToken"},
3114+
"vulnerabilities":{"shape":"Vulnerabilities"}
3115+
}
3116+
},
29903117
"SecurityGroupId":{
29913118
"type":"string",
29923119
"pattern":"^sg-([a-z0-9]{8}|[a-z0-9]{17}|\\*)$"
@@ -3213,6 +3340,16 @@
32133340
"members":{
32143341
}
32153342
},
3343+
"Target":{
3344+
"type":"string",
3345+
"max":50,
3346+
"min":0
3347+
},
3348+
"Targets":{
3349+
"type":"list",
3350+
"member":{"shape":"Target"},
3351+
"min":0
3352+
},
32163353
"ThrottlingException":{
32173354
"type":"structure",
32183355
"required":["message"],
@@ -3260,6 +3397,16 @@
32603397
"ALL"
32613398
]
32623399
},
3400+
"Ttp":{
3401+
"type":"string",
3402+
"max":30,
3403+
"min":0
3404+
},
3405+
"Ttps":{
3406+
"type":"list",
3407+
"member":{"shape":"Ttp"},
3408+
"min":0
3409+
},
32633410
"UntagResourceRequest":{
32643411
"type":"structure",
32653412
"required":[
@@ -3444,6 +3591,13 @@
34443591
"OTHER"
34453592
]
34463593
},
3594+
"VendorCreatedAt":{"type":"timestamp"},
3595+
"VendorSeverity":{
3596+
"type":"string",
3597+
"max":64,
3598+
"min":1
3599+
},
3600+
"VendorUpdatedAt":{"type":"timestamp"},
34473601
"Version":{
34483602
"type":"string",
34493603
"pattern":"^\\$LATEST|[0-9]+$"
@@ -3452,6 +3606,46 @@
34523606
"type":"string",
34533607
"pattern":"^vpc-([a-z0-9]{8}|[a-z0-9]{17}|\\*)$"
34543608
},
3609+
"VulnId":{
3610+
"type":"string",
3611+
"pattern":"^CVE-[12][0-9]{3}-[0-9]{1,10}$"
3612+
},
3613+
"VulnIdList":{
3614+
"type":"list",
3615+
"member":{"shape":"VulnId"},
3616+
"max":1,
3617+
"min":1
3618+
},
3619+
"Vulnerabilities":{
3620+
"type":"list",
3621+
"member":{"shape":"Vulnerability"},
3622+
"max":1,
3623+
"min":0
3624+
},
3625+
"Vulnerability":{
3626+
"type":"structure",
3627+
"required":["id"],
3628+
"members":{
3629+
"atigData":{"shape":"AtigData"},
3630+
"cisaData":{"shape":"CisaData"},
3631+
"cvss2":{"shape":"Cvss2"},
3632+
"cvss3":{"shape":"Cvss3"},
3633+
"cwes":{"shape":"Cwes"},
3634+
"description":{"shape":"VulnerabilityDescription"},
3635+
"detectionPlatforms":{"shape":"DetectionPlatforms"},
3636+
"epss":{"shape":"Epss"},
3637+
"exploitObserved":{"shape":"ExploitObserved"},
3638+
"id":{"shape":"NonEmptyString"},
3639+
"referenceUrls":{"shape":"VulnerabilityReferenceUrls"},
3640+
"relatedVulnerabilities":{"shape":"RelatedVulnerabilities"},
3641+
"source":{"shape":"VulnerabilitySource"},
3642+
"sourceUrl":{"shape":"VulnerabilitySourceUrl"},
3643+
"vendorCreatedAt":{"shape":"VendorCreatedAt"},
3644+
"vendorSeverity":{"shape":"VendorSeverity"},
3645+
"vendorUpdatedAt":{"shape":"VendorUpdatedAt"}
3646+
}
3647+
},
3648+
"VulnerabilityDescription":{"type":"string"},
34553649
"VulnerabilityId":{
34563650
"type":"string",
34573651
"max":128,
@@ -3461,6 +3655,24 @@
34613655
"type":"list",
34623656
"member":{"shape":"VulnerabilityId"}
34633657
},
3658+
"VulnerabilityReferenceUrl":{
3659+
"type":"string",
3660+
"min":0
3661+
},
3662+
"VulnerabilityReferenceUrls":{
3663+
"type":"list",
3664+
"member":{"shape":"VulnerabilityReferenceUrl"},
3665+
"max":100,
3666+
"min":0
3667+
},
3668+
"VulnerabilitySource":{
3669+
"type":"string",
3670+
"enum":["NVD"]
3671+
},
3672+
"VulnerabilitySourceUrl":{
3673+
"type":"string",
3674+
"min":0
3675+
},
34643676
"VulnerablePackage":{
34653677
"type":"structure",
34663678
"required":[

0 commit comments

Comments
 (0)