Skip to content

Commit

Permalink
chore: codegen for sensitive shapes
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr committed May 27, 2020
1 parent a05c5a2 commit ce4bb51
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions clients/client-ebs/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,7 @@ export interface ListChangedBlocksResponse {
export namespace ListChangedBlocksResponse {
export const filterSensitiveLog = (obj: ListChangedBlocksResponse): any => ({
...obj,
...(obj.ChangedBlocks && {
ChangedBlocks: obj.ChangedBlocks.map(item => SENSITIVE_STRING)
})
...(obj.ChangedBlocks && { ChangedBlocks: SENSITIVE_STRING })
});
export const isa = (o: any): o is ListChangedBlocksResponse =>
__isa(o, "ListChangedBlocksResponse");
Expand Down

0 comments on commit ce4bb51

Please sign in to comment.