@@ -9548,9 +9548,9 @@ const deserializeAws_queryDkimAttributes = (
9548
9548
context : __SerdeContext
9549
9549
) : { [ key : string ] : IdentityDkimAttributes } => {
9550
9550
const mapParams : any = { } ;
9551
- Object . keys ( output ) . forEach ( key => {
9552
- mapParams [ key ] = deserializeAws_queryIdentityDkimAttributes (
9553
- output [ key ] ,
9551
+ output . forEach ( ( pair : any ) => {
9552
+ mapParams [ pair [ " key" ] ] = deserializeAws_queryIdentityDkimAttributes (
9553
+ pair [ "value" ] ,
9554
9554
context
9555
9555
) ;
9556
9556
} ) ;
@@ -10567,9 +10567,11 @@ const deserializeAws_queryMailFromDomainAttributes = (
10567
10567
context : __SerdeContext
10568
10568
) : { [ key : string ] : IdentityMailFromDomainAttributes } => {
10569
10569
const mapParams : any = { } ;
10570
- Object . keys ( output ) . forEach ( key => {
10571
- mapParams [ key ] = deserializeAws_queryIdentityMailFromDomainAttributes (
10572
- output [ key ] ,
10570
+ output . forEach ( ( pair : any ) => {
10571
+ mapParams [
10572
+ pair [ "key" ]
10573
+ ] = deserializeAws_queryIdentityMailFromDomainAttributes (
10574
+ pair [ "value" ] ,
10573
10575
context
10574
10576
) ;
10575
10577
} ) ;
@@ -10627,9 +10629,9 @@ const deserializeAws_queryNotificationAttributes = (
10627
10629
context : __SerdeContext
10628
10630
) : { [ key : string ] : IdentityNotificationAttributes } => {
10629
10631
const mapParams : any = { } ;
10630
- Object . keys ( output ) . forEach ( key => {
10631
- mapParams [ key ] = deserializeAws_queryIdentityNotificationAttributes (
10632
- output [ key ] ,
10632
+ output . forEach ( ( pair : any ) => {
10633
+ mapParams [ pair [ " key" ] ] = deserializeAws_queryIdentityNotificationAttributes (
10634
+ pair [ "value" ] ,
10633
10635
context
10634
10636
) ;
10635
10637
} ) ;
@@ -10641,8 +10643,8 @@ const deserializeAws_queryPolicyMap = (
10641
10643
context : __SerdeContext
10642
10644
) : { [ key : string ] : string } => {
10643
10645
const mapParams : any = { } ;
10644
- Object . keys ( output ) . forEach ( key => {
10645
- mapParams [ key ] = output [ key ] ;
10646
+ output . forEach ( ( pair : any ) => {
10647
+ mapParams [ pair [ " key" ] ] = pair [ "value" ] ;
10646
10648
} ) ;
10647
10649
return mapParams ;
10648
10650
} ;
@@ -11438,9 +11440,9 @@ const deserializeAws_queryVerificationAttributes = (
11438
11440
context : __SerdeContext
11439
11441
) : { [ key : string ] : IdentityVerificationAttributes } => {
11440
11442
const mapParams : any = { } ;
11441
- Object . keys ( output ) . forEach ( key => {
11442
- mapParams [ key ] = deserializeAws_queryIdentityVerificationAttributes (
11443
- output [ key ] ,
11443
+ output . forEach ( ( pair : any ) => {
11444
+ mapParams [ pair [ " key" ] ] = deserializeAws_queryIdentityVerificationAttributes (
11445
+ pair [ "value" ] ,
11444
11446
context
11445
11447
) ;
11446
11448
} ) ;
0 commit comments