@@ -9918,13 +9918,16 @@ const deserializeAws_queryDkimAttributes = (
9918
9918
output : any ,
9919
9919
context : __SerdeContext
9920
9920
) : { [ key : string ] : IdentityDkimAttributes } => {
9921
- return output . reduce ( ( acc : any , pair : any ) => {
9922
- acc [ pair [ "key" ] ] = deserializeAws_queryIdentityDkimAttributes (
9923
- pair [ "value" ] ,
9924
- context
9925
- ) ;
9926
- return acc ;
9927
- } , { } ) ;
9921
+ return output . reduce (
9922
+ ( acc : any , pair : any ) => ( {
9923
+ ...acc ,
9924
+ [ pair [ "key" ] ] : deserializeAws_queryIdentityDkimAttributes (
9925
+ pair [ "value" ] ,
9926
+ context
9927
+ )
9928
+ } ) ,
9929
+ { }
9930
+ ) ;
9928
9931
} ;
9929
9932
9930
9933
const deserializeAws_queryEventDestination = (
@@ -10877,13 +10880,16 @@ const deserializeAws_queryMailFromDomainAttributes = (
10877
10880
output : any ,
10878
10881
context : __SerdeContext
10879
10882
) : { [ key : string ] : IdentityMailFromDomainAttributes } => {
10880
- return output . reduce ( ( acc : any , pair : any ) => {
10881
- acc [ pair [ "key" ] ] = deserializeAws_queryIdentityMailFromDomainAttributes (
10882
- pair [ "value" ] ,
10883
- context
10884
- ) ;
10885
- return acc ;
10886
- } , { } ) ;
10883
+ return output . reduce (
10884
+ ( acc : any , pair : any ) => ( {
10885
+ ...acc ,
10886
+ [ pair [ "key" ] ] : deserializeAws_queryIdentityMailFromDomainAttributes (
10887
+ pair [ "value" ] ,
10888
+ context
10889
+ )
10890
+ } ) ,
10891
+ { }
10892
+ ) ;
10887
10893
} ;
10888
10894
10889
10895
const deserializeAws_queryMailFromDomainNotVerifiedException = (
@@ -10936,23 +10942,29 @@ const deserializeAws_queryNotificationAttributes = (
10936
10942
output : any ,
10937
10943
context : __SerdeContext
10938
10944
) : { [ key : string ] : IdentityNotificationAttributes } => {
10939
- return output . reduce ( ( acc : any , pair : any ) => {
10940
- acc [ pair [ "key" ] ] = deserializeAws_queryIdentityNotificationAttributes (
10941
- pair [ "value" ] ,
10942
- context
10943
- ) ;
10944
- return acc ;
10945
- } , { } ) ;
10945
+ return output . reduce (
10946
+ ( acc : any , pair : any ) => ( {
10947
+ ...acc ,
10948
+ [ pair [ "key" ] ] : deserializeAws_queryIdentityNotificationAttributes (
10949
+ pair [ "value" ] ,
10950
+ context
10951
+ )
10952
+ } ) ,
10953
+ { }
10954
+ ) ;
10946
10955
} ;
10947
10956
10948
10957
const deserializeAws_queryPolicyMap = (
10949
10958
output : any ,
10950
10959
context : __SerdeContext
10951
10960
) : { [ key : string ] : string } => {
10952
- return output . reduce ( ( acc : any , pair : any ) => {
10953
- acc [ pair [ "key" ] ] = pair [ "value" ] ;
10954
- return acc ;
10955
- } , { } ) ;
10961
+ return output . reduce (
10962
+ ( acc : any , pair : any ) => ( {
10963
+ ...acc ,
10964
+ [ pair [ "key" ] ] : pair [ "value" ]
10965
+ } ) ,
10966
+ { }
10967
+ ) ;
10956
10968
} ;
10957
10969
10958
10970
const deserializeAws_queryPolicyNameList = (
@@ -11733,13 +11745,16 @@ const deserializeAws_queryVerificationAttributes = (
11733
11745
output : any ,
11734
11746
context : __SerdeContext
11735
11747
) : { [ key : string ] : IdentityVerificationAttributes } => {
11736
- return output . reduce ( ( acc : any , pair : any ) => {
11737
- acc [ pair [ "key" ] ] = deserializeAws_queryIdentityVerificationAttributes (
11738
- pair [ "value" ] ,
11739
- context
11740
- ) ;
11741
- return acc ;
11742
- } , { } ) ;
11748
+ return output . reduce (
11749
+ ( acc : any , pair : any ) => ( {
11750
+ ...acc ,
11751
+ [ pair [ "key" ] ] : deserializeAws_queryIdentityVerificationAttributes (
11752
+ pair [ "value" ] ,
11753
+ context
11754
+ )
11755
+ } ) ,
11756
+ { }
11757
+ ) ;
11743
11758
} ;
11744
11759
11745
11760
const deserializeAws_queryVerificationTokenList = (
0 commit comments