Skip to content

Commit e71ffe6

Browse files
Merging v1.4.15 release
2 parents 20517d9 + 7ad9e9f commit e71ffe6

File tree

8 files changed

+2202
-272
lines changed

8 files changed

+2202
-272
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [1.4.15] - 02/06/2025
4+
5+
### Features
6+
* (**cloudformation**) We added 5 new stack refactoring APIs: CreateStackRefactor, ExecuteStackRefactor, ListStackRefactors, DescribeStackRefactor, ListStackRefactorActions.
7+
* (**connectcases**) This release adds the ability to conditionally require fields on a template. Check public documentation for more information.
8+
* (**costoptimizationhub**) This release enables AWS Cost Optimization Hub to show cost optimization recommendations for Amazon Auto Scaling Groups, including those with single and mixed instance types.
9+
* (**s3**) Updated list of the valid AWS Region values for the LocationConstraint parameter for general purpose buckets.
10+
311
## [1.4.14] - 02/05/2025
412

513
### Documentation

codegen/aws-sdk-codegen/src/main/resources/aws/sdk/kotlin/codegen/endpoints.json

Lines changed: 29 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -366,6 +366,7 @@
366366
"ap-southeast-3" : { },
367367
"ap-southeast-4" : { },
368368
"ap-southeast-5" : { },
369+
"ap-southeast-7" : { },
369370
"ca-central-1" : {
370371
"variants" : [ {
371372
"hostname" : "acm-pca-fips.ca-central-1.amazonaws.com",
@@ -431,6 +432,7 @@
431432
"il-central-1" : { },
432433
"me-central-1" : { },
433434
"me-south-1" : { },
435+
"mx-central-1" : { },
434436
"sa-east-1" : { },
435437
"us-east-1" : {
436438
"variants" : [ {
@@ -1360,6 +1362,7 @@
13601362
"ap-southeast-2" : { },
13611363
"ap-southeast-3" : { },
13621364
"ap-southeast-4" : { },
1365+
"ap-southeast-5" : { },
13631366
"ca-central-1" : { },
13641367
"ca-west-1" : { },
13651368
"eu-central-1" : { },
@@ -5290,10 +5293,22 @@
52905293
"ap-south-1" : { },
52915294
"ap-southeast-1" : { },
52925295
"ap-southeast-2" : { },
5293-
"ca-central-1" : { },
5296+
"ca-central-1" : {
5297+
"variants" : [ {
5298+
"hostname" : "comprehend-fips.ca-central-1.amazonaws.com",
5299+
"tags" : [ "fips" ]
5300+
} ]
5301+
},
52945302
"eu-central-1" : { },
52955303
"eu-west-1" : { },
52965304
"eu-west-2" : { },
5305+
"fips-ca-central-1" : {
5306+
"credentialScope" : {
5307+
"region" : "ca-central-1"
5308+
},
5309+
"deprecated" : true,
5310+
"hostname" : "comprehend-fips.ca-central-1.amazonaws.com"
5311+
},
52975312
"fips-us-east-1" : {
52985313
"credentialScope" : {
52995314
"region" : "us-east-1"
@@ -17590,7 +17605,6 @@
1759017605
"ap-southeast-1" : { },
1759117606
"ap-southeast-2" : { },
1759217607
"ap-southeast-3" : { },
17593-
"api" : { },
1759417608
"ca-central-1" : { },
1759517609
"eu-central-1" : { },
1759617610
"eu-central-2" : { },
@@ -31302,7 +31316,6 @@
3130231316
},
3130331317
"quicksight" : {
3130431318
"endpoints" : {
31305-
"api" : { },
3130631319
"us-gov-west-1" : { }
3130731320
}
3130831321
},
@@ -34036,7 +34049,19 @@
3403634049
"protocols" : [ "https" ]
3403734050
},
3403834051
"endpoints" : {
34039-
"us-iso-east-1" : { }
34052+
"us-iso-east-1" : {
34053+
"variants" : [ {
34054+
"hostname" : "translate-fips.us-iso-east-1.c2s.ic.gov",
34055+
"tags" : [ "fips" ]
34056+
} ]
34057+
},
34058+
"us-iso-east-1-fips" : {
34059+
"credentialScope" : {
34060+
"region" : "us-iso-east-1"
34061+
},
34062+
"deprecated" : true,
34063+
"hostname" : "translate-fips.us-iso-east-1.c2s.ic.gov"
34064+
}
3404034065
}
3404134066
},
3404234067
"workspaces" : {
@@ -35313,7 +35338,6 @@
3531335338
},
3531435339
"quicksight" : {
3531535340
"endpoints" : {
35316-
"api" : { },
3531735341
"us-isof-east-1" : { },
3531835342
"us-isof-south-1" : { }
3531935343
}

codegen/aws-sdk-codegen/src/main/resources/aws/sdk/kotlin/codegen/partitions.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,17 @@
223223
"supportsFIPS" : true
224224
},
225225
"regionRegex" : "^us\\-isof\\-\\w+\\-\\d+$",
226-
"regions" : { }
226+
"regions" : {
227+
"aws-iso-f-global" : {
228+
"description" : "AWS ISOF global region"
229+
},
230+
"us-isof-east-1" : {
231+
"description" : "US ISOF EAST"
232+
},
233+
"us-isof-south-1" : {
234+
"description" : "US ISOF SOUTH"
235+
}
236+
}
227237
} ],
228238
"version" : "1.1"
229239
}

codegen/sdk/aws-models/cloudformation.json

Lines changed: 1039 additions & 153 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)