Skip to content

Commit dacaf77

Browse files
Release v1.45.22 (2023-10-04) (#5010)
Release v1.45.22 (2023-10-04) === ### Service Client Updates * `service/appconfig`: Updates service API and documentation * `service/datazone`: Updates service API, documentation, paginators, and examples * `service/mediatailor`: Updates service API and documentation * `service/mgn`: Updates service API, documentation, and paginators * `service/sagemaker`: Updates service API and documentation * Adding support for AdditionalS3DataSource, a data source used for training or inference that is in addition to the input dataset or model data.
1 parent 8f1d676 commit dacaf77

File tree

30 files changed

+56502
-427
lines changed

30 files changed

+56502
-427
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
Release v1.45.22 (2023-10-04)
2+
===
3+
4+
### Service Client Updates
5+
* `service/appconfig`: Updates service API and documentation
6+
* `service/datazone`: Updates service API, documentation, paginators, and examples
7+
* `service/mediatailor`: Updates service API and documentation
8+
* `service/mgn`: Updates service API, documentation, and paginators
9+
* `service/sagemaker`: Updates service API and documentation
10+
* Adding support for AdditionalS3DataSource, a data source used for training or inference that is in addition to the input dataset or model data.
11+
112
Release v1.45.21 (2023-10-03)
213
===
314

aws/endpoints/defaults.go

+165
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.45.21"
8+
const SDKVersion = "1.45.22"

models/apis/appconfig/2019-10-09/api-2.json

+31-9
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,9 @@
804804
"LocationUri":{"shape":"Uri"},
805805
"RetrievalRoleArn":{"shape":"RoleArn"},
806806
"Validators":{"shape":"ValidatorList"},
807-
"Type":{"shape":"ConfigurationProfileType"}
807+
"Type":{"shape":"ConfigurationProfileType"},
808+
"KmsKeyArn":{"shape":"Arn"},
809+
"KmsKeyIdentifier":{"shape":"KmsKeyIdentifier"}
808810
}
809811
},
810812
"ConfigurationProfileSummary":{
@@ -869,7 +871,8 @@
869871
"RetrievalRoleArn":{"shape":"RoleArn"},
870872
"Validators":{"shape":"ValidatorList"},
871873
"Tags":{"shape":"TagMap"},
872-
"Type":{"shape":"ConfigurationProfileType"}
874+
"Type":{"shape":"ConfigurationProfileType"},
875+
"KmsKeyIdentifier":{"shape":"KmsKeyIdentifier"}
873876
}
874877
},
875878
"CreateDeploymentStrategyRequest":{
@@ -938,7 +941,7 @@
938941
"Actions"
939942
],
940943
"members":{
941-
"Name":{"shape":"Name"},
944+
"Name":{"shape":"ExtensionOrParameterName"},
942945
"Description":{"shape":"Description"},
943946
"Actions":{"shape":"ActionsMap"},
944947
"Parameters":{"shape":"ParameterMap"},
@@ -1131,7 +1134,7 @@
11311134
"CompletedAt":{"shape":"Iso8601DateTime"},
11321135
"AppliedExtensions":{"shape":"AppliedExtensions"},
11331136
"KmsKeyArn":{"shape":"Arn"},
1134-
"KmsKeyIdentifier":{"shape":"Identifier"},
1137+
"KmsKeyIdentifier":{"shape":"KmsKeyIdentifier"},
11351138
"VersionLabel":{"shape":"VersionLabel"}
11361139
}
11371140
},
@@ -1305,6 +1308,10 @@
13051308
"NextToken":{"shape":"NextToken"}
13061309
}
13071310
},
1311+
"ExtensionOrParameterName":{
1312+
"type":"string",
1313+
"pattern":"^[^\\/#:\\n]{1,64}$"
1314+
},
13081315
"ExtensionSummaries":{
13091316
"type":"list",
13101317
"member":{"shape":"ExtensionSummary"}
@@ -1547,6 +1554,11 @@
15471554
"shape":"VersionLabel",
15481555
"location":"header",
15491556
"locationName":"VersionLabel"
1557+
},
1558+
"KmsKeyArn":{
1559+
"shape":"Arn",
1560+
"location":"header",
1561+
"locationName":"KmsKeyArn"
15501562
}
15511563
},
15521564
"payload":"Content"
@@ -1559,7 +1571,8 @@
15591571
"VersionNumber":{"shape":"Integer"},
15601572
"Description":{"shape":"Description"},
15611573
"ContentType":{"shape":"StringWithLengthBetween1And255"},
1562-
"VersionLabel":{"shape":"VersionLabel"}
1574+
"VersionLabel":{"shape":"VersionLabel"},
1575+
"KmsKeyArn":{"shape":"Arn"}
15631576
}
15641577
},
15651578
"HostedConfigurationVersionSummaryList":{
@@ -1610,6 +1623,14 @@
16101623
"type":"timestamp",
16111624
"timestampFormat":"iso8601"
16121625
},
1626+
"KmsKeyIdentifier":{
1627+
"type":"string",
1628+
"pattern":"^[\\da-f]{8}-[\\da-f]{4}-[\\da-f]{4}-[\\da-f]{4}-[\\da-f]{12}|alias/[a-zA-Z0-9/_-]{1,250}|arn:aws[a-zA-Z-]*:kms:[a-z]{2}(-gov|-iso(b?))?-[a-z]+-\\d{1}:\\d{12}:(key/[0-9a-f-]{36}|alias/[a-zA-Z0-9/_-]{1,250})$"
1629+
},
1630+
"KmsKeyIdentifierOrEmpty":{
1631+
"type":"string",
1632+
"pattern":"^\\s{0,1}|[\\da-f]{8}-[\\da-f]{4}-[\\da-f]{4}-[\\da-f]{4}-[\\da-f]{12}|alias/[a-zA-Z0-9/_-]{1,250}|arn:aws[a-zA-Z-]*:kms:[a-z]{2}(-gov|-iso(b?))?-[a-z]+-\\d{1}:\\d{12}:(key/[0-9a-f-]{36}|alias/[a-zA-Z0-9/_-]{1,250})$"
1633+
},
16131634
"ListApplicationsRequest":{
16141635
"type":"structure",
16151636
"members":{
@@ -1868,14 +1889,14 @@
18681889
},
18691890
"ParameterMap":{
18701891
"type":"map",
1871-
"key":{"shape":"Name"},
1892+
"key":{"shape":"ExtensionOrParameterName"},
18721893
"value":{"shape":"Parameter"},
18731894
"max":5,
18741895
"min":1
18751896
},
18761897
"ParameterValueMap":{
18771898
"type":"map",
1878-
"key":{"shape":"Name"},
1899+
"key":{"shape":"ExtensionOrParameterName"},
18791900
"value":{"shape":"StringWithLengthBetween1And2048"},
18801901
"max":5,
18811902
"min":0
@@ -1962,7 +1983,7 @@
19621983
"ConfigurationVersion":{"shape":"Version"},
19631984
"Description":{"shape":"Description"},
19641985
"Tags":{"shape":"TagMap"},
1965-
"KmsKeyIdentifier":{"shape":"Identifier"}
1986+
"KmsKeyIdentifier":{"shape":"KmsKeyIdentifier"}
19661987
}
19671988
},
19681989
"StopDeploymentRequest":{
@@ -2111,7 +2132,8 @@
21112132
"Name":{"shape":"Name"},
21122133
"Description":{"shape":"Description"},
21132134
"RetrievalRoleArn":{"shape":"RoleArn"},
2114-
"Validators":{"shape":"ValidatorList"}
2135+
"Validators":{"shape":"ValidatorList"},
2136+
"KmsKeyIdentifier":{"shape":"KmsKeyIdentifierOrEmpty"}
21152137
}
21162138
},
21172139
"UpdateDeploymentStrategyRequest":{

0 commit comments

Comments
 (0)