We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 010cda3 commit 84be8b0Copy full SHA for 84be8b0
clients/client-ebs/models/index.ts
@@ -203,9 +203,7 @@ export interface ListChangedBlocksResponse {
203
export namespace ListChangedBlocksResponse {
204
export const filterSensitiveLog = (obj: ListChangedBlocksResponse): any => ({
205
...obj,
206
- ...(obj.ChangedBlocks && {
207
- ChangedBlocks: obj.ChangedBlocks.map(item => SENSITIVE_STRING)
208
- })
+ ...(obj.ChangedBlocks && { ChangedBlocks: SENSITIVE_STRING })
209
});
210
export const isa = (o: any): o is ListChangedBlocksResponse =>
211
__isa(o, "ListChangedBlocksResponse");
0 commit comments