Skip to content

Commit c5d956a

Browse files
authoredJul 3, 2023
Release v1.44.295 (2023-07-03) (#4901)
Release v1.44.295 (2023-07-03) === ### Service Client Updates * `service/batch`: Updates service API and documentation * This feature allows customers to use AWS Batch with Linux with ARM64 CPU Architecture and X86_64 CPU Architecture with Windows OS on Fargate Platform. * `service/sagemaker`: Updates service API and documentation * SageMaker Inference Recommender now accepts new fields SupportedEndpointType and ServerlessConfiguration to support serverless endpoints.
1 parent 86c1a36 commit c5d956a

File tree

11 files changed

+705
-219
lines changed

11 files changed

+705
-219
lines changed
 

‎CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
Release v1.44.295 (2023-07-03)
2+
===
3+
4+
### Service Client Updates
5+
* `service/batch`: Updates service API and documentation
6+
* This feature allows customers to use AWS Batch with Linux with ARM64 CPU Architecture and X86_64 CPU Architecture with Windows OS on Fargate Platform.
7+
* `service/sagemaker`: Updates service API and documentation
8+
* SageMaker Inference Recommender now accepts new fields SupportedEndpointType and ServerlessConfiguration to support serverless endpoints.
9+
110
Release v1.44.294 (2023-06-30)
211
===
312

‎aws/endpoints/defaults.go

+210-36
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎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.294"
8+
const SDKVersion = "1.44.295"

‎models/apis/batch/2016-08-10/api-2.json

+11-2
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,8 @@
589589
"secrets":{"shape":"SecretList"},
590590
"networkConfiguration":{"shape":"NetworkConfiguration"},
591591
"fargatePlatformConfiguration":{"shape":"FargatePlatformConfiguration"},
592-
"ephemeralStorage":{"shape":"EphemeralStorage"}
592+
"ephemeralStorage":{"shape":"EphemeralStorage"},
593+
"runtimePlatform":{"shape":"RuntimePlatform"}
593594
}
594595
},
595596
"ContainerOverrides":{
@@ -642,7 +643,8 @@
642643
"secrets":{"shape":"SecretList"},
643644
"networkConfiguration":{"shape":"NetworkConfiguration"},
644645
"fargatePlatformConfiguration":{"shape":"FargatePlatformConfiguration"},
645-
"ephemeralStorage":{"shape":"EphemeralStorage"}
646+
"ephemeralStorage":{"shape":"EphemeralStorage"},
647+
"runtimePlatform":{"shape":"RuntimePlatform"}
646648
}
647649
},
648650
"ContainerSummary":{
@@ -1700,6 +1702,13 @@
17001702
"evaluateOnExit":{"shape":"EvaluateOnExitList"}
17011703
}
17021704
},
1705+
"RuntimePlatform":{
1706+
"type":"structure",
1707+
"members":{
1708+
"operatingSystemFamily":{"shape":"String"},
1709+
"cpuArchitecture":{"shape":"String"}
1710+
}
1711+
},
17031712
"SchedulingPolicyDetail":{
17041713
"type":"structure",
17051714
"required":[

0 commit comments

Comments
 (0)