Skip to content

Commit 38e0f7b

Browse files
Merging v1.5.67 release
2 parents 43d2ae8 + fe662d4 commit 38e0f7b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+546
-210
lines changed

CHANGELOG.md

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

3+
## [1.5.67] - 10/23/2025
4+
5+
### Features
6+
* (**account**) Update endpoint ruleset parameters casing
7+
* (**applicationautoscaling**) Update endpoint ruleset parameters casing
8+
* (**applicationdiscoveryservice**) Update endpoint ruleset parameters casing
9+
* (**bedrockagentcore**) Fixing the service documentation name
10+
* (**bedrockagentcorecontrol**) Fixing the service documentation name
11+
* (**chimesdkvoice**) Update endpoint ruleset parameters casing
12+
* (**cloudtraildata**) Update endpoint ruleset parameters casing
13+
* (**codebuild**) Update endpoint ruleset parameters casing
14+
* (**codestarconnections**) Update endpoint ruleset parameters casing
15+
* (**configservice**) Update endpoint ruleset parameters casing
16+
* (**connectcontactlens**) Update endpoint ruleset parameters casing
17+
* (**costandusagereportservice**) Update endpoint ruleset parameters casing
18+
* (**databasemigrationservice**) Update endpoint ruleset parameters casing
19+
* (**docdbelastic**) Update endpoint ruleset parameters casing
20+
* (**drs**) Update endpoint ruleset parameters casing
21+
* (**dsql**) Add support for resource-based policies for Aurora DSQL clusters. This will enable you to implement Block Public Access (BPA) which will help restrict access to your Aurora DSQL public or VPC endpoints.
22+
* (**ebs**) Update endpoint ruleset parameters casing
23+
* (**ecr**) Update endpoint ruleset parameters casing
24+
* (**ecrpublic**) Update endpoint ruleset parameters casing
25+
* (**healthlake**) Update endpoint ruleset parameters casing
26+
* (**internetmonitor**) Update endpoint ruleset parameters casing
27+
* (**iotevents**) Update endpoint ruleset parameters casing
28+
* (**iotjobsdataplane**) Update endpoint ruleset parameters casing
29+
* (**kinesisvideoarchivedmedia**) Update endpoint ruleset parameters casing
30+
* (**kinesisvideowebrtcstorage**) Update endpoint ruleset parameters casing
31+
* (**lambda**) Add NodeJs 24 (nodejs24.x) support to AWS Lambda.
32+
* (**macie2**) Update endpoint ruleset parameters casing
33+
* (**managedblockchainquery**) Update endpoint ruleset parameters casing
34+
* (**marketplacecommerceanalytics**) Update endpoint ruleset parameters casing
35+
* (**mediatailor**) Update endpoint ruleset parameters casing
36+
* (**mgn**) Update endpoint ruleset parameters casing
37+
* (**migrationhub**) Update endpoint ruleset parameters casing
38+
* (**mpa**) Update endpoint ruleset parameters casing
39+
* (**neptunedata**) Update endpoint ruleset parameters casing
40+
* (**networkmonitor**) Update endpoint ruleset parameters casing
41+
* (**omics**) Update endpoint ruleset parameters casing
42+
* (**opensearchserverless**) Update endpoint ruleset parameters casing
43+
* (**pcaconnectorscep**) Update endpoint ruleset parameters casing
44+
* (**personalizeevents**) Update endpoint ruleset parameters casing
45+
* (**pinpointemail**) Update endpoint ruleset parameters casing
46+
* (**resiliencehub**) Update endpoint ruleset parameters casing
47+
* (**rum**) Update endpoint ruleset parameters casing
48+
* (**sagemaker**) Update endpoint ruleset parameters casing
49+
* (**sagemakeredge**) Update endpoint ruleset parameters casing
50+
* (**savingsplans**) Update endpoint ruleset parameters casing
51+
* (**securitylake**) Update endpoint ruleset parameters casing
52+
* (**sesv2**) Update endpoint ruleset parameters casing
53+
* (**storagegateway**) Update endpoint ruleset parameters casing
54+
* (**synthetics**) Update endpoint ruleset parameters casing
55+
56+
### Documentation
57+
* (**odb**) Doc-only update that removes duplicate values from descriptions of ODB peering APIs.
58+
359
## [1.5.66] - 10/22/2025
460

561
### Features

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17366,6 +17366,7 @@
1736617366
"ap-southeast-3" : { },
1736717367
"ap-southeast-4" : { },
1736817368
"ap-southeast-5" : { },
17369+
"ap-southeast-6" : { },
1736917370
"ap-southeast-7" : { },
1737017371
"ca-central-1" : { },
1737117372
"ca-west-1" : { },

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,9 @@
194194
},
195195
"us-isob-east-1" : {
196196
"description" : "US ISOB East (Ohio)"
197+
},
198+
"us-isob-west-1" : {
199+
"description" : "US ISOB West"
197200
}
198201
}
199202
}, {

codegen/sdk/aws-models/account.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -156,26 +156,26 @@
156156
"required": true,
157157
"default": false,
158158
"documentation": "When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.",
159-
"type": "Boolean"
159+
"type": "boolean"
160160
},
161161
"UseFIPS": {
162162
"builtIn": "AWS::UseFIPS",
163163
"required": true,
164164
"default": false,
165165
"documentation": "When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.",
166-
"type": "Boolean"
166+
"type": "boolean"
167167
},
168168
"Endpoint": {
169169
"builtIn": "SDK::Endpoint",
170170
"required": false,
171171
"documentation": "Override the endpoint used to send this request",
172-
"type": "String"
172+
"type": "string"
173173
},
174174
"Region": {
175175
"builtIn": "AWS::Region",
176176
"required": false,
177177
"documentation": "The AWS region used to dispatch the request.",
178-
"type": "String"
178+
"type": "string"
179179
}
180180
},
181181
"rules": [

codegen/sdk/aws-models/application-auto-scaling.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -159,27 +159,27 @@
159159
"builtIn": "AWS::Region",
160160
"required": false,
161161
"documentation": "The AWS region used to dispatch the request.",
162-
"type": "String"
162+
"type": "string"
163163
},
164164
"UseDualStack": {
165165
"builtIn": "AWS::UseDualStack",
166166
"required": true,
167167
"default": false,
168168
"documentation": "When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.",
169-
"type": "Boolean"
169+
"type": "boolean"
170170
},
171171
"UseFIPS": {
172172
"builtIn": "AWS::UseFIPS",
173173
"required": true,
174174
"default": false,
175175
"documentation": "When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.",
176-
"type": "Boolean"
176+
"type": "boolean"
177177
},
178178
"Endpoint": {
179179
"builtIn": "SDK::Endpoint",
180180
"required": false,
181181
"documentation": "Override the endpoint used to send this request",
182-
"type": "String"
182+
"type": "string"
183183
}
184184
},
185185
"rules": [

codegen/sdk/aws-models/application-discovery-service.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -143,27 +143,27 @@
143143
"builtIn": "AWS::Region",
144144
"required": false,
145145
"documentation": "The AWS region used to dispatch the request.",
146-
"type": "String"
146+
"type": "string"
147147
},
148148
"UseDualStack": {
149149
"builtIn": "AWS::UseDualStack",
150150
"required": true,
151151
"default": false,
152152
"documentation": "When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.",
153-
"type": "Boolean"
153+
"type": "boolean"
154154
},
155155
"UseFIPS": {
156156
"builtIn": "AWS::UseFIPS",
157157
"required": true,
158158
"default": false,
159159
"documentation": "When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.",
160-
"type": "Boolean"
160+
"type": "boolean"
161161
},
162162
"Endpoint": {
163163
"builtIn": "SDK::Endpoint",
164164
"required": false,
165165
"documentation": "Override the endpoint used to send this request",
166-
"type": "String"
166+
"type": "string"
167167
}
168168
},
169169
"rules": [

codegen/sdk/aws-models/bedrock-agentcore-control.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@
471471
"maxAge": 86400
472472
},
473473
"smithy.api#documentation": "<note> <p> is in preview release and is subject to change.</p> </note> <p>Welcome to the Amazon Bedrock AgentCore Control plane API reference. Control plane actions configure, create, modify, and monitor Amazon Web Services resources.</p>",
474-
"smithy.api#title": "Amazon Bedrock Agent Core Control Plane Fronting Layer",
474+
"smithy.api#title": "Amazon Bedrock AgentCore Control",
475475
"smithy.rules#endpointRuleSet": {
476476
"version": "1.0",
477477
"parameters": {

codegen/sdk/aws-models/bedrock-agentcore.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130
]
131131
},
132132
"smithy.api#documentation": "<note> <p>Amazon Bedrock AgentCore is in preview release and is subject to change.</p> </note> <p>Welcome to the Amazon Bedrock AgentCore Data Plane API reference. Data Plane actions process and handle data or workloads within Amazon Web Services services. </p>",
133-
"smithy.api#title": "Amazon Bedrock AgentCore Data Plane Fronting Layer",
133+
"smithy.api#title": "Amazon Bedrock AgentCore",
134134
"smithy.rules#endpointRuleSet": {
135135
"version": "1.0",
136136
"parameters": {

codegen/sdk/aws-models/chime-sdk-voice.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -989,27 +989,27 @@
989989
"builtIn": "AWS::Region",
990990
"required": false,
991991
"documentation": "The AWS region used to dispatch the request.",
992-
"type": "String"
992+
"type": "string"
993993
},
994994
"UseDualStack": {
995995
"builtIn": "AWS::UseDualStack",
996996
"required": true,
997997
"default": false,
998998
"documentation": "When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.",
999-
"type": "Boolean"
999+
"type": "boolean"
10001000
},
10011001
"UseFIPS": {
10021002
"builtIn": "AWS::UseFIPS",
10031003
"required": true,
10041004
"default": false,
10051005
"documentation": "When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.",
1006-
"type": "Boolean"
1006+
"type": "boolean"
10071007
},
10081008
"Endpoint": {
10091009
"builtIn": "SDK::Endpoint",
10101010
"required": false,
10111011
"documentation": "Override the endpoint used to send this request",
1012-
"type": "String"
1012+
"type": "string"
10131013
}
10141014
},
10151015
"rules": [

codegen/sdk/aws-models/cloudtrail-data.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,27 +145,27 @@
145145
"builtIn": "AWS::Region",
146146
"required": false,
147147
"documentation": "The AWS region used to dispatch the request.",
148-
"type": "String"
148+
"type": "string"
149149
},
150150
"UseDualStack": {
151151
"builtIn": "AWS::UseDualStack",
152152
"required": true,
153153
"default": false,
154154
"documentation": "When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.",
155-
"type": "Boolean"
155+
"type": "boolean"
156156
},
157157
"UseFIPS": {
158158
"builtIn": "AWS::UseFIPS",
159159
"required": true,
160160
"default": false,
161161
"documentation": "When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.",
162-
"type": "Boolean"
162+
"type": "boolean"
163163
},
164164
"Endpoint": {
165165
"builtIn": "SDK::Endpoint",
166166
"required": false,
167167
"documentation": "Override the endpoint used to send this request",
168-
"type": "String"
168+
"type": "string"
169169
}
170170
},
171171
"rules": [

0 commit comments

Comments
 (0)