Skip to content

Commit 76296e1

Browse files
Release v1.44.72 (2022-08-09) (#4506)
Release v1.44.72 (2022-08-09) === ### Service Client Updates * `service/location`: Updates service API and documentation * `service/monitoring`: Updates service API and documentation * Various quota increases related to dimensions and custom metrics * `service/sagemaker`: Updates service API and documentation * Amazon SageMaker Automatic Model Tuning now supports specifying multiple alternate EC2 instance types to make tuning jobs more robust when the preferred instance type is not available due to insufficient capacity. * `service/sagemaker-a2i-runtime`: Updates service API
1 parent 114784d commit 76296e1

File tree

14 files changed

+553
-68
lines changed

14 files changed

+553
-68
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
Release v1.44.72 (2022-08-09)
2+
===
3+
4+
### Service Client Updates
5+
* `service/location`: Updates service API and documentation
6+
* `service/monitoring`: Updates service API and documentation
7+
* Various quota increases related to dimensions and custom metrics
8+
* `service/sagemaker`: Updates service API and documentation
9+
* Amazon SageMaker Automatic Model Tuning now supports specifying multiple alternate EC2 instance types to make tuning jobs more robust when the preferred instance type is not available due to insufficient capacity.
10+
* `service/sagemaker-a2i-runtime`: Updates service API
11+
112
Release v1.44.71 (2022-08-08)
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.71"
8+
const SDKVersion = "1.44.72"

models/apis/location/2020-11-19/api-2.json

+13
Original file line numberDiff line numberDiff line change
@@ -1513,6 +1513,18 @@
15131513
"Weight":{"shape":"TruckWeight"}
15141514
}
15151515
},
1516+
"Circle":{
1517+
"type":"structure",
1518+
"required":[
1519+
"Center",
1520+
"Radius"
1521+
],
1522+
"members":{
1523+
"Center":{"shape":"Position"},
1524+
"Radius":{"shape":"Double"}
1525+
},
1526+
"sensitive":true
1527+
},
15161528
"ConflictException":{
15171529
"type":"structure",
15181530
"required":["Message"],
@@ -2058,6 +2070,7 @@
20582070
"GeofenceGeometry":{
20592071
"type":"structure",
20602072
"members":{
2073+
"Circle":{"shape":"Circle"},
20612074
"Polygon":{"shape":"LinearRings"}
20622075
}
20632076
},

models/apis/location/2020-11-19/docs-2.json

+22-14
Large diffs are not rendered by default.

models/apis/monitoring/2010-08-01/api-2.json

+4-7
Original file line numberDiff line numberDiff line change
@@ -1119,13 +1119,13 @@
11191119
},
11201120
"DimensionValue":{
11211121
"type":"string",
1122-
"max":255,
1122+
"max":1024,
11231123
"min":1
11241124
},
11251125
"Dimensions":{
11261126
"type":"list",
11271127
"member":{"shape":"Dimension"},
1128-
"max":10
1128+
"max":30
11291129
},
11301130
"DisableAlarmActionsInput":{
11311131
"type":"structure",
@@ -1182,10 +1182,7 @@
11821182
"min":1
11831183
},
11841184
"ExceptionType":{"type":"string"},
1185-
"ExtendedStatistic":{
1186-
"type":"string",
1187-
"pattern":"p(\\d{1,2}(\\.\\d{0,2})?|100)"
1188-
},
1185+
"ExtendedStatistic":{"type":"string"},
11891186
"ExtendedStatistics":{
11901187
"type":"list",
11911188
"member":{"shape":"ExtendedStatistic"},
@@ -1790,7 +1787,7 @@
17901787
},
17911788
"MetricExpression":{
17921789
"type":"string",
1793-
"max":1024,
1790+
"max":2048,
17941791
"min":1
17951792
},
17961793
"MetricId":{

models/apis/monitoring/2010-08-01/docs-2.json

+6-6
Large diffs are not rendered by default.

models/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"metadata":{
44
"apiVersion":"2019-11-07",
55
"endpointPrefix":"a2i-runtime.sagemaker",
6-
"jsonVersion":"1.1",
76
"protocol":"rest-json",
87
"serviceFullName":"Amazon Augmented AI Runtime",
98
"serviceId":"SageMaker A2I Runtime",
@@ -353,7 +352,10 @@
353352
"error":{"httpStatusCode":429},
354353
"exception":true
355354
},
356-
"Timestamp":{"type":"timestamp"},
355+
"Timestamp":{
356+
"type":"timestamp",
357+
"timestampFormat":"iso8601"
358+
},
357359
"ValidationException":{
358360
"type":"structure",
359361
"members":{

models/apis/sagemaker/2017-07-24/api-2.json

+36-2
Original file line numberDiff line numberDiff line change
@@ -9575,7 +9575,6 @@
95759575
"AlgorithmSpecification",
95769576
"RoleArn",
95779577
"OutputDataConfig",
9578-
"ResourceConfig",
95799578
"StoppingCondition"
95809579
],
95819580
"members":{
@@ -9594,7 +9593,8 @@
95949593
"EnableInterContainerTrafficEncryption":{"shape":"Boolean"},
95959594
"EnableManagedSpotTraining":{"shape":"Boolean"},
95969595
"CheckpointConfig":{"shape":"CheckpointConfig"},
9597-
"RetryStrategy":{"shape":"RetryStrategy"}
9596+
"RetryStrategy":{"shape":"RetryStrategy"},
9597+
"HyperParameterTuningResourceConfig":{"shape":"HyperParameterTuningResourceConfig"}
95989598
}
95999599
},
96009600
"HyperParameterTrainingJobDefinitionName":{
@@ -9637,6 +9637,29 @@
96379637
"ObjectiveStatus":{"shape":"ObjectiveStatus"}
96389638
}
96399639
},
9640+
"HyperParameterTuningAllocationStrategy":{
9641+
"type":"string",
9642+
"enum":["Prioritized"]
9643+
},
9644+
"HyperParameterTuningInstanceConfig":{
9645+
"type":"structure",
9646+
"required":[
9647+
"InstanceType",
9648+
"InstanceCount",
9649+
"VolumeSizeInGB"
9650+
],
9651+
"members":{
9652+
"InstanceType":{"shape":"TrainingInstanceType"},
9653+
"InstanceCount":{"shape":"TrainingInstanceCount"},
9654+
"VolumeSizeInGB":{"shape":"VolumeSizeInGB"}
9655+
}
9656+
},
9657+
"HyperParameterTuningInstanceConfigs":{
9658+
"type":"list",
9659+
"member":{"shape":"HyperParameterTuningInstanceConfig"},
9660+
"max":6,
9661+
"min":1
9662+
},
96409663
"HyperParameterTuningJobArn":{
96419664
"type":"string",
96429665
"max":256,
@@ -9756,6 +9779,17 @@
97569779
"TransferLearning"
97579780
]
97589781
},
9782+
"HyperParameterTuningResourceConfig":{
9783+
"type":"structure",
9784+
"members":{
9785+
"InstanceType":{"shape":"TrainingInstanceType"},
9786+
"InstanceCount":{"shape":"TrainingInstanceCount"},
9787+
"VolumeSizeInGB":{"shape":"OptionalVolumeSizeInGB"},
9788+
"VolumeKmsKeyId":{"shape":"KmsKeyId"},
9789+
"AllocationStrategy":{"shape":"HyperParameterTuningAllocationStrategy"},
9790+
"InstanceConfigs":{"shape":"HyperParameterTuningInstanceConfigs"}
9791+
}
9792+
},
97599793
"HyperParameterValue":{
97609794
"type":"string",
97619795
"max":2500,

0 commit comments

Comments
 (0)