Skip to content

Commit 84be8b0

Browse files
committed
chore: codegen for sensitive shapes
1 parent 010cda3 commit 84be8b0

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

clients/client-ebs/models/index.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -203,9 +203,7 @@ export interface ListChangedBlocksResponse {
203203
export namespace ListChangedBlocksResponse {
204204
export const filterSensitiveLog = (obj: ListChangedBlocksResponse): any => ({
205205
...obj,
206-
...(obj.ChangedBlocks && {
207-
ChangedBlocks: obj.ChangedBlocks.map(item => SENSITIVE_STRING)
208-
})
206+
...(obj.ChangedBlocks && { ChangedBlocks: SENSITIVE_STRING })
209207
});
210208
export const isa = (o: any): o is ListChangedBlocksResponse =>
211209
__isa(o, "ListChangedBlocksResponse");

0 commit comments

Comments
 (0)