Skip to content

Commit ef6e2ca

Browse files
committed
chore: codegen for bugfix in filterSensitiveLog for Map of Map
1 parent 0a2b75a commit ef6e2ca

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

clients/client-api-gateway/models/index.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2040,14 +2040,13 @@ export namespace Deployment {
20402040
acc: any,
20412041
[key, value]: [string, { [key: string]: MethodSnapshot }]
20422042
) => {
2043-
(acc[key] = Object.entries(value).reduce(
2043+
acc[key] = Object.entries(value).reduce(
20442044
(acc: any, [key, value]: [string, MethodSnapshot]) => {
20452045
acc[key] = MethodSnapshot.filterSensitiveLog(value);
20462046
return acc;
20472047
},
20482048
{}
2049-
)),
2050-
{};
2049+
);
20512050
return acc;
20522051
},
20532052
{}

clients/client-pinpoint/models/index.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10260,14 +10260,13 @@ export namespace SendUsersMessageResponse {
1026010260
acc: any,
1026110261
[key, value]: [string, { [key: string]: EndpointMessageResult }]
1026210262
) => {
10263-
(acc[key] = Object.entries(value).reduce(
10263+
acc[key] = Object.entries(value).reduce(
1026410264
(acc: any, [key, value]: [string, EndpointMessageResult]) => {
1026510265
acc[key] = EndpointMessageResult.filterSensitiveLog(value);
1026610266
return acc;
1026710267
},
1026810268
{}
10269-
)),
10270-
{};
10269+
);
1027110270
return acc;
1027210271
},
1027310272
{}

0 commit comments

Comments
 (0)