Skip to content

Commit 5bd00c9

Browse files
Release v1.44.109 (2022-09-30) (#4574)
Release v1.44.109 (2022-09-30) === ### Service Client Updates * `service/codedeploy`: Updates service API and documentation * This release allows you to override the alarm configurations when creating a deployment. * `service/devops-guru`: Updates service API and documentation * `service/dlm`: Updates service API and documentation * `service/runtime.sagemaker`: Updates service API and documentation * `service/sagemaker`: Updates service API and documentation * A new parameter called ExplainerConfig is added to CreateEndpointConfig API to enable SageMaker Clarify online explainability feature. * `service/sso-oidc`: Updates service documentation
1 parent 05ed0fb commit 5bd00c9

File tree

25 files changed

+2569
-546
lines changed

25 files changed

+2569
-546
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
Release v1.44.109 (2022-09-30)
2+
===
3+
4+
### Service Client Updates
5+
* `service/codedeploy`: Updates service API and documentation
6+
* This release allows you to override the alarm configurations when creating a deployment.
7+
* `service/devops-guru`: Updates service API and documentation
8+
* `service/dlm`: Updates service API and documentation
9+
* `service/runtime.sagemaker`: Updates service API and documentation
10+
* `service/sagemaker`: Updates service API and documentation
11+
* A new parameter called ExplainerConfig is added to CreateEndpointConfig API to enable SageMaker Clarify online explainability feature.
12+
* `service/sso-oidc`: Updates service documentation
13+
114
Release v1.44.108 (2022-09-29)
215
===
316

aws/endpoints/defaults.go

Lines changed: 61 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aws/version.go

Lines changed: 1 addition & 1 deletion
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.108"
8+
const SDKVersion = "1.44.109"

models/apis/codedeploy/2014-10-06/api-2.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,8 @@
206206
{"shape":"DescriptionTooLongException"},
207207
{"shape":"DeploymentLimitExceededException"},
208208
{"shape":"InvalidTargetInstancesException"},
209+
{"shape":"InvalidAlarmConfigException"},
210+
{"shape":"AlarmsLimitExceededException"},
209211
{"shape":"InvalidAutoRollbackConfigException"},
210212
{"shape":"InvalidLoadBalancerInfoException"},
211213
{"shape":"InvalidFileExistsBehaviorException"},
@@ -1264,7 +1266,8 @@
12641266
"targetInstances":{"shape":"TargetInstances"},
12651267
"autoRollbackConfiguration":{"shape":"AutoRollbackConfiguration"},
12661268
"updateOutdatedInstancesOnly":{"shape":"Boolean"},
1267-
"fileExistsBehavior":{"shape":"FileExistsBehavior"}
1269+
"fileExistsBehavior":{"shape":"FileExistsBehavior"},
1270+
"overrideAlarmConfiguration":{"shape":"AlarmConfiguration"}
12681271
}
12691272
},
12701273
"CreateDeploymentOutput":{
@@ -1511,7 +1514,8 @@
15111514
"deploymentStatusMessages":{"shape":"DeploymentStatusMessageList"},
15121515
"computePlatform":{"shape":"ComputePlatform"},
15131516
"externalId":{"shape":"ExternalId"},
1514-
"relatedDeployments":{"shape":"RelatedDeployments"}
1517+
"relatedDeployments":{"shape":"RelatedDeployments"},
1518+
"overrideAlarmConfiguration":{"shape":"AlarmConfiguration"}
15151519
}
15161520
},
15171521
"DeploymentIsNotInReadyStateException":{

models/apis/codedeploy/2014-10-06/docs-2.json

Lines changed: 100 additions & 98 deletions
Large diffs are not rendered by default.

models/apis/devops-guru/2020-12-01/api-2.json

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1694,7 +1694,8 @@
16941694
"type":"structure",
16951695
"required":["Sns"],
16961696
"members":{
1697-
"Sns":{"shape":"SnsChannelConfig"}
1697+
"Sns":{"shape":"SnsChannelConfig"},
1698+
"Filters":{"shape":"NotificationFilterConfig"}
16981699
}
16991700
},
17001701
"NotificationChannelId":{
@@ -1703,6 +1704,29 @@
17031704
"min":36,
17041705
"pattern":"^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$"
17051706
},
1707+
"NotificationFilterConfig":{
1708+
"type":"structure",
1709+
"members":{
1710+
"Severities":{"shape":"InsightSeverities"},
1711+
"MessageTypes":{"shape":"NotificationMessageTypes"}
1712+
}
1713+
},
1714+
"NotificationMessageType":{
1715+
"type":"string",
1716+
"enum":[
1717+
"NEW_INSIGHT",
1718+
"CLOSED_INSIGHT",
1719+
"NEW_ASSOCIATION",
1720+
"SEVERITY_UPGRADED",
1721+
"NEW_RECOMMENDATION"
1722+
]
1723+
},
1724+
"NotificationMessageTypes":{
1725+
"type":"list",
1726+
"member":{"shape":"NotificationMessageType"},
1727+
"max":5,
1728+
"min":0
1729+
},
17061730
"NumMetricsAnalyzed":{"type":"integer"},
17071731
"NumOpenProactiveInsights":{"type":"integer"},
17081732
"NumOpenReactiveInsights":{"type":"integer"},

models/apis/devops-guru/2020-12-01/docs-2.json

Lines changed: 31 additions & 12 deletions
Large diffs are not rendered by default.

models/apis/dlm/2018-01-12/api-2.json

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,20 @@
152152
"min":0,
153153
"pattern":"[0-9A-Za-z _-]+"
154154
},
155+
"ArchiveRetainRule":{
156+
"type":"structure",
157+
"required":["RetentionArchiveTier"],
158+
"members":{
159+
"RetentionArchiveTier":{"shape":"RetentionArchiveTier"}
160+
}
161+
},
162+
"ArchiveRule":{
163+
"type":"structure",
164+
"required":["RetainRule"],
165+
"members":{
166+
"RetainRule":{"shape":"ArchiveRetainRule"}
167+
}
168+
},
155169
"AvailabilityZone":{
156170
"type":"string",
157171
"max":16,
@@ -612,6 +626,14 @@
612626
"min":1
613627
},
614628
"RetainRule":{
629+
"type":"structure",
630+
"members":{
631+
"Count":{"shape":"StandardTierRetainRuleCount"},
632+
"Interval":{"shape":"StandardTierRetainRuleInterval"},
633+
"IntervalUnit":{"shape":"RetentionIntervalUnitValues"}
634+
}
635+
},
636+
"RetentionArchiveTier":{
615637
"type":"structure",
616638
"members":{
617639
"Count":{"shape":"Count"},
@@ -640,7 +662,8 @@
640662
"FastRestoreRule":{"shape":"FastRestoreRule"},
641663
"CrossRegionCopyRules":{"shape":"CrossRegionCopyRules"},
642664
"ShareRules":{"shape":"ShareRules"},
643-
"DeprecateRule":{"shape":"DeprecateRule"}
665+
"DeprecateRule":{"shape":"DeprecateRule"},
666+
"ArchiveRule":{"shape":"ArchiveRule"}
644667
}
645668
},
646669
"ScheduleList":{
@@ -688,6 +711,15 @@
688711
"max":50,
689712
"min":0
690713
},
714+
"StandardTierRetainRuleCount":{
715+
"type":"integer",
716+
"max":1000,
717+
"min":0
718+
},
719+
"StandardTierRetainRuleInterval":{
720+
"type":"integer",
721+
"min":0
722+
},
691723
"StatusMessage":{
692724
"type":"string",
693725
"max":500,

0 commit comments

Comments
 (0)