@aws-sdk/client-redshift 3.891.0 → 3.894.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8396,7 +8396,7 @@ const de_AccountAttribute = (output, context) => {
8396
8396
  if (output[_ANt] != null) {
8397
8397
  contents[_ANt] = __expectString(output[_ANt]);
8398
8398
  }
8399
- if (output.AttributeValues === "") {
8399
+ if (String(output.AttributeValues).trim() === "") {
8400
8400
  contents[_AVt] = [];
8401
8401
  }
8402
8402
  else if (output[_AVt] != null && output[_AVt][_AVT] != null) {
@@ -8406,7 +8406,7 @@ const de_AccountAttribute = (output, context) => {
8406
8406
  };
8407
8407
  const de_AccountAttributeList = (output, context) => {
8408
8408
  const contents = {};
8409
- if (output.AccountAttributes === "") {
8409
+ if (String(output.AccountAttributes).trim() === "") {
8410
8410
  contents[_AA] = [];
8411
8411
  }
8412
8412
  else if (output[_AA] != null && output[_AA][_AAc] != null) {
@@ -8456,7 +8456,7 @@ const de_Association = (output, context) => {
8456
8456
  if (output[_CDCED] != null) {
8457
8457
  contents[_CDCED] = __expectNonNull(__parseRfc3339DateTimeWithOffset(output[_CDCED]));
8458
8458
  }
8459
- if (output.CertificateAssociations === "") {
8459
+ if (String(output.CertificateAssociations).trim() === "") {
8460
8460
  contents[_CAe] = [];
8461
8461
  }
8462
8462
  else if (output[_CAe] != null && output[_CAe][_CAer] != null) {
@@ -8570,7 +8570,7 @@ const de_AuthorizedTokenIssuer = (output, context) => {
8570
8570
  if (output[_TTIA] != null) {
8571
8571
  contents[_TTIA] = __expectString(output[_TTIA]);
8572
8572
  }
8573
- if (output.AuthorizedAudiencesList === "") {
8573
+ if (String(output.AuthorizedAudiencesList).trim() === "") {
8574
8574
  contents[_AAL] = [];
8575
8575
  }
8576
8576
  else if (output[_AAL] != null && output[_AAL][_me] != null) {
@@ -8597,7 +8597,7 @@ const de_AvailabilityZone = (output, context) => {
8597
8597
  if (output[_N] != null) {
8598
8598
  contents[_N] = __expectString(output[_N]);
8599
8599
  }
8600
- if (output.SupportedPlatforms === "") {
8600
+ if (String(output.SupportedPlatforms).trim() === "") {
8601
8601
  contents[_SP] = [];
8602
8602
  }
8603
8603
  else if (output[_SP] != null && output[_SP][_SPu] != null) {
@@ -8614,13 +8614,13 @@ const de_AvailabilityZoneList = (output, context) => {
8614
8614
  };
8615
8615
  const de_BatchDeleteClusterSnapshotsResult = (output, context) => {
8616
8616
  const contents = {};
8617
- if (output.Resources === "") {
8617
+ if (String(output.Resources).trim() === "") {
8618
8618
  contents[_R] = [];
8619
8619
  }
8620
8620
  else if (output[_R] != null && output[_R][_Str] != null) {
8621
8621
  contents[_R] = de_SnapshotIdentifierList(__getArrayIfSingleItem(output[_R][_Str]), context);
8622
8622
  }
8623
- if (output.Errors === "") {
8623
+ if (String(output.Errors).trim() === "") {
8624
8624
  contents[_Er] = [];
8625
8625
  }
8626
8626
  else if (output[_Er] != null && output[_Er][_SEM] != null) {
@@ -8644,13 +8644,13 @@ const de_BatchModifyClusterSnapshotsLimitExceededFault = (output, context) => {
8644
8644
  };
8645
8645
  const de_BatchModifyClusterSnapshotsOutputMessage = (output, context) => {
8646
8646
  const contents = {};
8647
- if (output.Resources === "") {
8647
+ if (String(output.Resources).trim() === "") {
8648
8648
  contents[_R] = [];
8649
8649
  }
8650
8650
  else if (output[_R] != null && output[_R][_Str] != null) {
8651
8651
  contents[_R] = de_SnapshotIdentifierList(__getArrayIfSingleItem(output[_R][_Str]), context);
8652
8652
  }
8653
- if (output.Errors === "") {
8653
+ if (String(output.Errors).trim() === "") {
8654
8654
  contents[_Er] = [];
8655
8655
  }
8656
8656
  else if (output[_Er] != null && output[_Er][_SEM] != null) {
@@ -8731,19 +8731,19 @@ const de_Cluster = (output, context) => {
8731
8731
  if (output[_MSRP] != null) {
8732
8732
  contents[_MSRP] = __strictParseInt32(output[_MSRP]);
8733
8733
  }
8734
- if (output.ClusterSecurityGroups === "") {
8734
+ if (String(output.ClusterSecurityGroups).trim() === "") {
8735
8735
  contents[_CSG] = [];
8736
8736
  }
8737
8737
  else if (output[_CSG] != null && output[_CSG][_CSGl] != null) {
8738
8738
  contents[_CSG] = de_ClusterSecurityGroupMembershipList(__getArrayIfSingleItem(output[_CSG][_CSGl]), context);
8739
8739
  }
8740
- if (output.VpcSecurityGroups === "") {
8740
+ if (String(output.VpcSecurityGroups).trim() === "") {
8741
8741
  contents[_VSG] = [];
8742
8742
  }
8743
8743
  else if (output[_VSG] != null && output[_VSG][_VSGp] != null) {
8744
8744
  contents[_VSG] = de_VpcSecurityGroupMembershipList(__getArrayIfSingleItem(output[_VSG][_VSGp]), context);
8745
8745
  }
8746
- if (output.ClusterParameterGroups === "") {
8746
+ if (String(output.ClusterParameterGroups).trim() === "") {
8747
8747
  contents[_CPG] = [];
8748
8748
  }
8749
8749
  else if (output[_CPG] != null && output[_CPG][_CPGl] != null) {
@@ -8794,7 +8794,7 @@ const de_Cluster = (output, context) => {
8794
8794
  if (output[_CPK] != null) {
8795
8795
  contents[_CPK] = __expectString(output[_CPK]);
8796
8796
  }
8797
- if (output.ClusterNodes === "") {
8797
+ if (String(output.ClusterNodes).trim() === "") {
8798
8798
  contents[_CN] = [];
8799
8799
  }
8800
8800
  else if (output[_CN] != null && output[_CN][_me] != null) {
@@ -8806,7 +8806,7 @@ const de_Cluster = (output, context) => {
8806
8806
  if (output[_CRN] != null) {
8807
8807
  contents[_CRN] = __expectString(output[_CRN]);
8808
8808
  }
8809
- if (output.Tags === "") {
8809
+ if (String(output.Tags).trim() === "") {
8810
8810
  contents[_T] = [];
8811
8811
  }
8812
8812
  else if (output[_T] != null && output[_T][_Ta] != null) {
@@ -8818,13 +8818,13 @@ const de_Cluster = (output, context) => {
8818
8818
  if (output[_EVR] != null) {
8819
8819
  contents[_EVR] = __parseBoolean(output[_EVR]);
8820
8820
  }
8821
- if (output.IamRoles === "") {
8821
+ if (String(output.IamRoles).trim() === "") {
8822
8822
  contents[_IR] = [];
8823
8823
  }
8824
8824
  else if (output[_IR] != null && output[_IR][_CIR] != null) {
8825
8825
  contents[_IR] = de_ClusterIamRoleList(__getArrayIfSingleItem(output[_IR][_CIR]), context);
8826
8826
  }
8827
- if (output.PendingActions === "") {
8827
+ if (String(output.PendingActions).trim() === "") {
8828
8828
  contents[_PAe] = [];
8829
8829
  }
8830
8830
  else if (output[_PAe] != null && output[_PAe][_me] != null) {
@@ -8836,7 +8836,7 @@ const de_Cluster = (output, context) => {
8836
8836
  if (output[_ERNONO] != null) {
8837
8837
  contents[_ERNONO] = __expectString(output[_ERNONO]);
8838
8838
  }
8839
- if (output.DeferredMaintenanceWindows === "") {
8839
+ if (String(output.DeferredMaintenanceWindows).trim() === "") {
8840
8840
  contents[_DMW] = [];
8841
8841
  }
8842
8842
  else if (output[_DMW] != null && output[_DMW][_DMWe] != null) {
@@ -8945,7 +8945,7 @@ const de_ClusterDbRevision = (output, context) => {
8945
8945
  if (output[_DRRD] != null) {
8946
8946
  contents[_DRRD] = __expectNonNull(__parseRfc3339DateTimeWithOffset(output[_DRRD]));
8947
8947
  }
8948
- if (output.RevisionTargets === "") {
8948
+ if (String(output.RevisionTargets).trim() === "") {
8949
8949
  contents[_RTev] = [];
8950
8950
  }
8951
8951
  else if (output[_RTev] != null && output[_RTev][_RTe] != null) {
@@ -8965,7 +8965,7 @@ const de_ClusterDbRevisionsMessage = (output, context) => {
8965
8965
  if (output[_M] != null) {
8966
8966
  contents[_M] = __expectString(output[_M]);
8967
8967
  }
8968
- if (output.ClusterDbRevisions === "") {
8968
+ if (String(output.ClusterDbRevisions).trim() === "") {
8969
8969
  contents[_CDRl] = [];
8970
8970
  }
8971
8971
  else if (output[_CDRl] != null && output[_CDRl][_CDRlu] != null) {
@@ -9058,7 +9058,7 @@ const de_ClusterParameterGroup = (output, context) => {
9058
9058
  if (output[_D] != null) {
9059
9059
  contents[_D] = __expectString(output[_D]);
9060
9060
  }
9061
- if (output.Tags === "") {
9061
+ if (String(output.Tags).trim() === "") {
9062
9062
  contents[_T] = [];
9063
9063
  }
9064
9064
  else if (output[_T] != null && output[_T][_Ta] != null) {
@@ -9075,7 +9075,7 @@ const de_ClusterParameterGroupAlreadyExistsFault = (output, context) => {
9075
9075
  };
9076
9076
  const de_ClusterParameterGroupDetails = (output, context) => {
9077
9077
  const contents = {};
9078
- if (output.Parameters === "") {
9078
+ if (String(output.Parameters).trim() === "") {
9079
9079
  contents[_Pa] = [];
9080
9080
  }
9081
9081
  else if (output[_Pa] != null && output[_Pa][_Par] != null) {
@@ -9115,7 +9115,7 @@ const de_ClusterParameterGroupsMessage = (output, context) => {
9115
9115
  if (output[_M] != null) {
9116
9116
  contents[_M] = __expectString(output[_M]);
9117
9117
  }
9118
- if (output.ParameterGroups === "") {
9118
+ if (String(output.ParameterGroups).trim() === "") {
9119
9119
  contents[_PG] = [];
9120
9120
  }
9121
9121
  else if (output[_PG] != null && output[_PG][_CPGl] != null) {
@@ -9131,7 +9131,7 @@ const de_ClusterParameterGroupStatus = (output, context) => {
9131
9131
  if (output[_PAS] != null) {
9132
9132
  contents[_PAS] = __expectString(output[_PAS]);
9133
9133
  }
9134
- if (output.ClusterParameterStatusList === "") {
9134
+ if (String(output.ClusterParameterStatusList).trim() === "") {
9135
9135
  contents[_CPSL] = [];
9136
9136
  }
9137
9137
  else if (output[_CPSL] != null && output[_CPSL][_me] != null) {
@@ -9181,19 +9181,19 @@ const de_ClusterSecurityGroup = (output, context) => {
9181
9181
  if (output[_D] != null) {
9182
9182
  contents[_D] = __expectString(output[_D]);
9183
9183
  }
9184
- if (output.EC2SecurityGroups === "") {
9184
+ if (String(output.EC2SecurityGroups).trim() === "") {
9185
9185
  contents[_ECSG] = [];
9186
9186
  }
9187
9187
  else if (output[_ECSG] != null && output[_ECSG][_ECSGe] != null) {
9188
9188
  contents[_ECSG] = de_EC2SecurityGroupList(__getArrayIfSingleItem(output[_ECSG][_ECSGe]), context);
9189
9189
  }
9190
- if (output.IPRanges === "") {
9190
+ if (String(output.IPRanges).trim() === "") {
9191
9191
  contents[_IPR] = [];
9192
9192
  }
9193
9193
  else if (output[_IPR] != null && output[_IPR][_IPRa] != null) {
9194
9194
  contents[_IPR] = de_IPRangeList(__getArrayIfSingleItem(output[_IPR][_IPRa]), context);
9195
9195
  }
9196
- if (output.Tags === "") {
9196
+ if (String(output.Tags).trim() === "") {
9197
9197
  contents[_T] = [];
9198
9198
  }
9199
9199
  else if (output[_T] != null && output[_T][_Ta] != null) {
@@ -9230,7 +9230,7 @@ const de_ClusterSecurityGroupMessage = (output, context) => {
9230
9230
  if (output[_M] != null) {
9231
9231
  contents[_M] = __expectString(output[_M]);
9232
9232
  }
9233
- if (output.ClusterSecurityGroups === "") {
9233
+ if (String(output.ClusterSecurityGroups).trim() === "") {
9234
9234
  contents[_CSG] = [];
9235
9235
  }
9236
9236
  else if (output[_CSG] != null && output[_CSG][_CSGl] != null) {
@@ -9264,7 +9264,7 @@ const de_ClustersMessage = (output, context) => {
9264
9264
  if (output[_M] != null) {
9265
9265
  contents[_M] = __expectString(output[_M]);
9266
9266
  }
9267
- if (output.Clusters === "") {
9267
+ if (String(output.Clusters).trim() === "") {
9268
9268
  contents[_Cl] = [];
9269
9269
  }
9270
9270
  else if (output[_Cl] != null && output[_Cl][_Clu] != null) {
@@ -9323,19 +9323,19 @@ const de_ClusterSubnetGroup = (output, context) => {
9323
9323
  if (output[_SGS] != null) {
9324
9324
  contents[_SGS] = __expectString(output[_SGS]);
9325
9325
  }
9326
- if (output.Subnets === "") {
9326
+ if (String(output.Subnets).trim() === "") {
9327
9327
  contents[_Su] = [];
9328
9328
  }
9329
9329
  else if (output[_Su] != null && output[_Su][_Sub] != null) {
9330
9330
  contents[_Su] = de_SubnetList(__getArrayIfSingleItem(output[_Su][_Sub]), context);
9331
9331
  }
9332
- if (output.Tags === "") {
9332
+ if (String(output.Tags).trim() === "") {
9333
9333
  contents[_T] = [];
9334
9334
  }
9335
9335
  else if (output[_T] != null && output[_T][_Ta] != null) {
9336
9336
  contents[_T] = de_TagList(__getArrayIfSingleItem(output[_T][_Ta]), context);
9337
9337
  }
9338
- if (output.SupportedClusterIpAddressTypes === "") {
9338
+ if (String(output.SupportedClusterIpAddressTypes).trim() === "") {
9339
9339
  contents[_SCIAT] = [];
9340
9340
  }
9341
9341
  else if (output[_SCIAT] != null && output[_SCIAT][_i] != null) {
@@ -9355,7 +9355,7 @@ const de_ClusterSubnetGroupMessage = (output, context) => {
9355
9355
  if (output[_M] != null) {
9356
9356
  contents[_M] = __expectString(output[_M]);
9357
9357
  }
9358
- if (output.ClusterSubnetGroups === "") {
9358
+ if (String(output.ClusterSubnetGroups).trim() === "") {
9359
9359
  contents[_CSGlu] = [];
9360
9360
  }
9361
9361
  else if (output[_CSGlu] != null && output[_CSGlu][_CSGlus] != null) {
@@ -9416,7 +9416,7 @@ const de_ClusterVersionsMessage = (output, context) => {
9416
9416
  if (output[_M] != null) {
9417
9417
  contents[_M] = __expectString(output[_M]);
9418
9418
  }
9419
- if (output.ClusterVersions === "") {
9419
+ if (String(output.ClusterVersions).trim() === "") {
9420
9420
  contents[_CVl] = [];
9421
9421
  }
9422
9422
  else if (output[_CVl] != null && output[_CVl][_CV] != null) {
@@ -9560,7 +9560,7 @@ const de_CustomDomainAssociationsMessage = (output, context) => {
9560
9560
  if (output[_M] != null) {
9561
9561
  contents[_M] = __expectString(output[_M]);
9562
9562
  }
9563
- if (output.Associations === "") {
9563
+ if (String(output.Associations).trim() === "") {
9564
9564
  contents[_As] = [];
9565
9565
  }
9566
9566
  else if (output[_As] != null && output[_As][_Ass] != null) {
@@ -9589,7 +9589,7 @@ const de_DataShare = (output, context) => {
9589
9589
  if (output[_APAC] != null) {
9590
9590
  contents[_APAC] = __parseBoolean(output[_APAC]);
9591
9591
  }
9592
- if (output.DataShareAssociations === "") {
9592
+ if (String(output.DataShareAssociations).trim() === "") {
9593
9593
  contents[_DSAat] = [];
9594
9594
  }
9595
9595
  else if (output[_DSAat] != null && output[_DSAat][_me] != null) {
@@ -9672,7 +9672,7 @@ const de_DefaultClusterParameters = (output, context) => {
9672
9672
  if (output[_M] != null) {
9673
9673
  contents[_M] = __expectString(output[_M]);
9674
9674
  }
9675
- if (output.Parameters === "") {
9675
+ if (String(output.Parameters).trim() === "") {
9676
9676
  contents[_Pa] = [];
9677
9677
  }
9678
9678
  else if (output[_Pa] != null && output[_Pa][_Par] != null) {
@@ -9751,7 +9751,7 @@ const de_DeregisterNamespaceOutputMessage = (output, context) => {
9751
9751
  };
9752
9752
  const de_DescribeAuthenticationProfilesResult = (output, context) => {
9753
9753
  const contents = {};
9754
- if (output.AuthenticationProfiles === "") {
9754
+ if (String(output.AuthenticationProfiles).trim() === "") {
9755
9755
  contents[_APu] = [];
9756
9756
  }
9757
9757
  else if (output[_APu] != null && output[_APu][_me] != null) {
@@ -9761,7 +9761,7 @@ const de_DescribeAuthenticationProfilesResult = (output, context) => {
9761
9761
  };
9762
9762
  const de_DescribeDataSharesForConsumerResult = (output, context) => {
9763
9763
  const contents = {};
9764
- if (output.DataShares === "") {
9764
+ if (String(output.DataShares).trim() === "") {
9765
9765
  contents[_DSa] = [];
9766
9766
  }
9767
9767
  else if (output[_DSa] != null && output[_DSa][_me] != null) {
@@ -9774,7 +9774,7 @@ const de_DescribeDataSharesForConsumerResult = (output, context) => {
9774
9774
  };
9775
9775
  const de_DescribeDataSharesForProducerResult = (output, context) => {
9776
9776
  const contents = {};
9777
- if (output.DataShares === "") {
9777
+ if (String(output.DataShares).trim() === "") {
9778
9778
  contents[_DSa] = [];
9779
9779
  }
9780
9780
  else if (output[_DSa] != null && output[_DSa][_me] != null) {
@@ -9787,7 +9787,7 @@ const de_DescribeDataSharesForProducerResult = (output, context) => {
9787
9787
  };
9788
9788
  const de_DescribeDataSharesResult = (output, context) => {
9789
9789
  const contents = {};
9790
- if (output.DataShares === "") {
9790
+ if (String(output.DataShares).trim() === "") {
9791
9791
  contents[_DSa] = [];
9792
9792
  }
9793
9793
  else if (output[_DSa] != null && output[_DSa][_me] != null) {
@@ -9807,7 +9807,7 @@ const de_DescribeDefaultClusterParametersResult = (output, context) => {
9807
9807
  };
9808
9808
  const de_DescribePartnersOutputMessage = (output, context) => {
9809
9809
  const contents = {};
9810
- if (output.PartnerIntegrationInfoList === "") {
9810
+ if (String(output.PartnerIntegrationInfoList).trim() === "") {
9811
9811
  contents[_PIIL] = [];
9812
9812
  }
9813
9813
  else if (output[_PIIL] != null && output[_PIIL][_PII] != null) {
@@ -9817,7 +9817,7 @@ const de_DescribePartnersOutputMessage = (output, context) => {
9817
9817
  };
9818
9818
  const de_DescribeRedshiftIdcApplicationsResult = (output, context) => {
9819
9819
  const contents = {};
9820
- if (output.RedshiftIdcApplications === "") {
9820
+ if (String(output.RedshiftIdcApplications).trim() === "") {
9821
9821
  contents[_RIAe] = [];
9822
9822
  }
9823
9823
  else if (output[_RIAe] != null && output[_RIAe][_me] != null) {
@@ -9830,7 +9830,7 @@ const de_DescribeRedshiftIdcApplicationsResult = (output, context) => {
9830
9830
  };
9831
9831
  const de_DescribeReservedNodeExchangeStatusOutputMessage = (output, context) => {
9832
9832
  const contents = {};
9833
- if (output.ReservedNodeExchangeStatusDetails === "") {
9833
+ if (String(output.ReservedNodeExchangeStatusDetails).trim() === "") {
9834
9834
  contents[_RNESD] = [];
9835
9835
  }
9836
9836
  else if (output[_RNESD] != null && output[_RNESD][_RNES] != null) {
@@ -9843,7 +9843,7 @@ const de_DescribeReservedNodeExchangeStatusOutputMessage = (output, context) =>
9843
9843
  };
9844
9844
  const de_DescribeSnapshotSchedulesOutputMessage = (output, context) => {
9845
9845
  const contents = {};
9846
- if (output.SnapshotSchedules === "") {
9846
+ if (String(output.SnapshotSchedules).trim() === "") {
9847
9847
  contents[_SS] = [];
9848
9848
  }
9849
9849
  else if (output[_SS] != null && output[_SS][_SSn] != null) {
@@ -9872,7 +9872,7 @@ const de_EC2SecurityGroup = (output, context) => {
9872
9872
  if (output[_ECSGOI] != null) {
9873
9873
  contents[_ECSGOI] = __expectString(output[_ECSGOI]);
9874
9874
  }
9875
- if (output.Tags === "") {
9875
+ if (String(output.Tags).trim() === "") {
9876
9876
  contents[_T] = [];
9877
9877
  }
9878
9878
  else if (output[_T] != null && output[_T][_Ta] != null) {
@@ -9928,7 +9928,7 @@ const de_Endpoint = (output, context) => {
9928
9928
  if (output[_P] != null) {
9929
9929
  contents[_P] = __strictParseInt32(output[_P]);
9930
9930
  }
9931
- if (output.VpcEndpoints === "") {
9931
+ if (String(output.VpcEndpoints).trim() === "") {
9932
9932
  contents[_VE] = [];
9933
9933
  }
9934
9934
  else if (output[_VE] != null && output[_VE][_VEp] != null) {
@@ -9962,7 +9962,7 @@ const de_EndpointAccess = (output, context) => {
9962
9962
  if (output[_Ad] != null) {
9963
9963
  contents[_Ad] = __expectString(output[_Ad]);
9964
9964
  }
9965
- if (output.VpcSecurityGroups === "") {
9965
+ if (String(output.VpcSecurityGroups).trim() === "") {
9966
9966
  contents[_VSG] = [];
9967
9967
  }
9968
9968
  else if (output[_VSG] != null && output[_VSG][_VSGp] != null) {
@@ -9982,7 +9982,7 @@ const de_EndpointAccesses = (output, context) => {
9982
9982
  };
9983
9983
  const de_EndpointAccessList = (output, context) => {
9984
9984
  const contents = {};
9985
- if (output.EndpointAccessList === "") {
9985
+ if (String(output.EndpointAccessList).trim() === "") {
9986
9986
  contents[_EAL] = [];
9987
9987
  }
9988
9988
  else if (output[_EAL] != null && output[_EAL][_me] != null) {
@@ -10023,7 +10023,7 @@ const de_EndpointAuthorization = (output, context) => {
10023
10023
  if (output[_AAVPC] != null) {
10024
10024
  contents[_AAVPC] = __parseBoolean(output[_AAVPC]);
10025
10025
  }
10026
- if (output.AllowedVPCs === "") {
10026
+ if (String(output.AllowedVPCs).trim() === "") {
10027
10027
  contents[_AVPC] = [];
10028
10028
  }
10029
10029
  else if (output[_AVPC] != null && output[_AVPC][_VIpc] != null) {
@@ -10043,7 +10043,7 @@ const de_EndpointAuthorizationAlreadyExistsFault = (output, context) => {
10043
10043
  };
10044
10044
  const de_EndpointAuthorizationList = (output, context) => {
10045
10045
  const contents = {};
10046
- if (output.EndpointAuthorizationList === "") {
10046
+ if (String(output.EndpointAuthorizationList).trim() === "") {
10047
10047
  contents[_EALn] = [];
10048
10048
  }
10049
10049
  else if (output[_EALn] != null && output[_EALn][_me] != null) {
@@ -10107,7 +10107,7 @@ const de_Event = (output, context) => {
10107
10107
  if (output[_Me] != null) {
10108
10108
  contents[_Me] = __expectString(output[_Me]);
10109
10109
  }
10110
- if (output.EventCategories === "") {
10110
+ if (String(output.EventCategories).trim() === "") {
10111
10111
  contents[_EC] = [];
10112
10112
  }
10113
10113
  else if (output[_EC] != null && output[_EC][_ECv] != null) {
@@ -10136,7 +10136,7 @@ const de_EventCategoriesMap = (output, context) => {
10136
10136
  if (output[_ST] != null) {
10137
10137
  contents[_ST] = __expectString(output[_ST]);
10138
10138
  }
10139
- if (output.Events === "") {
10139
+ if (String(output.Events).trim() === "") {
10140
10140
  contents[_Ev] = [];
10141
10141
  }
10142
10142
  else if (output[_Ev] != null && output[_Ev][_EIM] != null) {
@@ -10153,7 +10153,7 @@ const de_EventCategoriesMapList = (output, context) => {
10153
10153
  };
10154
10154
  const de_EventCategoriesMessage = (output, context) => {
10155
10155
  const contents = {};
10156
- if (output.EventCategoriesMapList === "") {
10156
+ if (String(output.EventCategoriesMapList).trim() === "") {
10157
10157
  contents[_ECML] = [];
10158
10158
  }
10159
10159
  else if (output[_ECML] != null && output[_ECML][_ECM] != null) {
@@ -10166,7 +10166,7 @@ const de_EventInfoMap = (output, context) => {
10166
10166
  if (output[_EIv] != null) {
10167
10167
  contents[_EIv] = __expectString(output[_EIv]);
10168
10168
  }
10169
- if (output.EventCategories === "") {
10169
+ if (String(output.EventCategories).trim() === "") {
10170
10170
  contents[_EC] = [];
10171
10171
  }
10172
10172
  else if (output[_EC] != null && output[_EC][_ECv] != null) {
@@ -10199,7 +10199,7 @@ const de_EventsMessage = (output, context) => {
10199
10199
  if (output[_M] != null) {
10200
10200
  contents[_M] = __expectString(output[_M]);
10201
10201
  }
10202
- if (output.Events === "") {
10202
+ if (String(output.Events).trim() === "") {
10203
10203
  contents[_Ev] = [];
10204
10204
  }
10205
10205
  else if (output[_Ev] != null && output[_Ev][_Eve] != null) {
@@ -10227,13 +10227,13 @@ const de_EventSubscription = (output, context) => {
10227
10227
  if (output[_ST] != null) {
10228
10228
  contents[_ST] = __expectString(output[_ST]);
10229
10229
  }
10230
- if (output.SourceIdsList === "") {
10230
+ if (String(output.SourceIdsList).trim() === "") {
10231
10231
  contents[_SILo] = [];
10232
10232
  }
10233
10233
  else if (output[_SILo] != null && output[_SILo][_SIour] != null) {
10234
10234
  contents[_SILo] = de_SourceIdsList(__getArrayIfSingleItem(output[_SILo][_SIour]), context);
10235
10235
  }
10236
- if (output.EventCategoriesList === "") {
10236
+ if (String(output.EventCategoriesList).trim() === "") {
10237
10237
  contents[_ECL] = [];
10238
10238
  }
10239
10239
  else if (output[_ECL] != null && output[_ECL][_ECv] != null) {
@@ -10245,7 +10245,7 @@ const de_EventSubscription = (output, context) => {
10245
10245
  if (output[_En] != null) {
10246
10246
  contents[_En] = __parseBoolean(output[_En]);
10247
10247
  }
10248
- if (output.Tags === "") {
10248
+ if (String(output.Tags).trim() === "") {
10249
10249
  contents[_T] = [];
10250
10250
  }
10251
10251
  else if (output[_T] != null && output[_T][_Ta] != null) {
@@ -10272,7 +10272,7 @@ const de_EventSubscriptionsMessage = (output, context) => {
10272
10272
  if (output[_M] != null) {
10273
10273
  contents[_M] = __expectString(output[_M]);
10274
10274
  }
10275
- if (output.EventSubscriptionsList === "") {
10275
+ if (String(output.EventSubscriptionsList).trim() === "") {
10276
10276
  contents[_ESL] = [];
10277
10277
  }
10278
10278
  else if (output[_ESL] != null && output[_ESL][_ES] != null) {
@@ -10292,7 +10292,7 @@ const de_GetReservedNodeExchangeConfigurationOptionsOutputMessage = (output, con
10292
10292
  if (output[_M] != null) {
10293
10293
  contents[_M] = __expectString(output[_M]);
10294
10294
  }
10295
- if (output.ReservedNodeConfigurationOptionList === "") {
10295
+ if (String(output.ReservedNodeConfigurationOptionList).trim() === "") {
10296
10296
  contents[_RNCOL] = [];
10297
10297
  }
10298
10298
  else if (output[_RNCOL] != null && output[_RNCOL][_RNCO] != null) {
@@ -10305,7 +10305,7 @@ const de_GetReservedNodeExchangeOfferingsOutputMessage = (output, context) => {
10305
10305
  if (output[_M] != null) {
10306
10306
  contents[_M] = __expectString(output[_M]);
10307
10307
  }
10308
- if (output.ReservedNodeOfferings === "") {
10308
+ if (String(output.ReservedNodeOfferings).trim() === "") {
10309
10309
  contents[_RNO] = [];
10310
10310
  }
10311
10311
  else if (output[_RNO] != null && output[_RNO][_RNOe] != null) {
@@ -10328,7 +10328,7 @@ const de_HsmClientCertificate = (output, context) => {
10328
10328
  if (output[_HCCPK] != null) {
10329
10329
  contents[_HCCPK] = __expectString(output[_HCCPK]);
10330
10330
  }
10331
- if (output.Tags === "") {
10331
+ if (String(output.Tags).trim() === "") {
10332
10332
  contents[_T] = [];
10333
10333
  }
10334
10334
  else if (output[_T] != null && output[_T][_Ta] != null) {
@@ -10355,7 +10355,7 @@ const de_HsmClientCertificateMessage = (output, context) => {
10355
10355
  if (output[_M] != null) {
10356
10356
  contents[_M] = __expectString(output[_M]);
10357
10357
  }
10358
- if (output.HsmClientCertificates === "") {
10358
+ if (String(output.HsmClientCertificates).trim() === "") {
10359
10359
  contents[_HCCs] = [];
10360
10360
  }
10361
10361
  else if (output[_HCCs] != null && output[_HCCs][_HCC] != null) {
@@ -10391,7 +10391,7 @@ const de_HsmConfiguration = (output, context) => {
10391
10391
  if (output[_HPN] != null) {
10392
10392
  contents[_HPN] = __expectString(output[_HPN]);
10393
10393
  }
10394
- if (output.Tags === "") {
10394
+ if (String(output.Tags).trim() === "") {
10395
10395
  contents[_T] = [];
10396
10396
  }
10397
10397
  else if (output[_T] != null && output[_T][_Ta] != null) {
@@ -10418,7 +10418,7 @@ const de_HsmConfigurationMessage = (output, context) => {
10418
10418
  if (output[_M] != null) {
10419
10419
  contents[_M] = __expectString(output[_M]);
10420
10420
  }
10421
- if (output.HsmConfigurations === "") {
10421
+ if (String(output.HsmConfigurations).trim() === "") {
10422
10422
  contents[_HCs] = [];
10423
10423
  }
10424
10424
  else if (output[_HCs] != null && output[_HCs][_HC] != null) {
@@ -10488,7 +10488,7 @@ const de_InboundIntegration = (output, context) => {
10488
10488
  if (output[_St] != null) {
10489
10489
  contents[_St] = __expectString(output[_St]);
10490
10490
  }
10491
- if (output.Errors === "") {
10491
+ if (String(output.Errors).trim() === "") {
10492
10492
  contents[_Er] = [];
10493
10493
  }
10494
10494
  else if (output[_Er] != null && output[_Er][_IE] != null) {
@@ -10511,7 +10511,7 @@ const de_InboundIntegrationsMessage = (output, context) => {
10511
10511
  if (output[_M] != null) {
10512
10512
  contents[_M] = __expectString(output[_M]);
10513
10513
  }
10514
- if (output.InboundIntegrations === "") {
10514
+ if (String(output.InboundIntegrations).trim() === "") {
10515
10515
  contents[_II] = [];
10516
10516
  }
10517
10517
  else if (output[_II] != null && output[_II][_IIn] != null) {
@@ -10564,7 +10564,7 @@ const de_Integration = (output, context) => {
10564
10564
  if (output[_St] != null) {
10565
10565
  contents[_St] = __expectString(output[_St]);
10566
10566
  }
10567
- if (output.Errors === "") {
10567
+ if (String(output.Errors).trim() === "") {
10568
10568
  contents[_Er] = [];
10569
10569
  }
10570
10570
  else if (output[_Er] != null && output[_Er][_IE] != null) {
@@ -10579,13 +10579,13 @@ const de_Integration = (output, context) => {
10579
10579
  if (output[_KMSKI] != null) {
10580
10580
  contents[_KMSKI] = __expectString(output[_KMSKI]);
10581
10581
  }
10582
- if (output.AdditionalEncryptionContext === "") {
10582
+ if (String(output.AdditionalEncryptionContext).trim() === "") {
10583
10583
  contents[_AEC] = {};
10584
10584
  }
10585
10585
  else if (output[_AEC] != null && output[_AEC][_e] != null) {
10586
10586
  contents[_AEC] = de_EncryptionContextMap(__getArrayIfSingleItem(output[_AEC][_e]), context);
10587
10587
  }
10588
- if (output.Tags === "") {
10588
+ if (String(output.Tags).trim() === "") {
10589
10589
  contents[_T] = [];
10590
10590
  }
10591
10591
  else if (output[_T] != null && output[_T][_Ta] != null) {
@@ -10657,7 +10657,7 @@ const de_IntegrationsMessage = (output, context) => {
10657
10657
  if (output[_M] != null) {
10658
10658
  contents[_M] = __expectString(output[_M]);
10659
10659
  }
10660
- if (output.Integrations === "") {
10660
+ if (String(output.Integrations).trim() === "") {
10661
10661
  contents[_In] = [];
10662
10662
  }
10663
10663
  else if (output[_In] != null && output[_In][_Int] != null) {
@@ -10904,7 +10904,7 @@ const de_IPRange = (output, context) => {
10904
10904
  if (output[_CIDRIP] != null) {
10905
10905
  contents[_CIDRIP] = __expectString(output[_CIDRIP]);
10906
10906
  }
10907
- if (output.Tags === "") {
10907
+ if (String(output.Tags).trim() === "") {
10908
10908
  contents[_T] = [];
10909
10909
  }
10910
10910
  else if (output[_T] != null && output[_T][_Ta] != null) {
@@ -10957,7 +10957,7 @@ const de_LimitExceededFault = (output, context) => {
10957
10957
  };
10958
10958
  const de_ListRecommendationsResult = (output, context) => {
10959
10959
  const contents = {};
10960
- if (output.Recommendations === "") {
10960
+ if (String(output.Recommendations).trim() === "") {
10961
10961
  contents[_Re] = [];
10962
10962
  }
10963
10963
  else if (output[_Re] != null && output[_Re][_Rec] != null) {
@@ -10991,7 +10991,7 @@ const de_LoggingStatus = (output, context) => {
10991
10991
  if (output[_LDT] != null) {
10992
10992
  contents[_LDT] = __expectString(output[_LDT]);
10993
10993
  }
10994
- if (output.LogExports === "") {
10994
+ if (String(output.LogExports).trim() === "") {
10995
10995
  contents[_LE] = [];
10996
10996
  }
10997
10997
  else if (output[_LE] != null && output[_LE][_me] != null) {
@@ -11014,7 +11014,7 @@ const de_MaintenanceTrack = (output, context) => {
11014
11014
  if (output[_DV] != null) {
11015
11015
  contents[_DV] = __expectString(output[_DV]);
11016
11016
  }
11017
- if (output.UpdateTargets === "") {
11017
+ if (String(output.UpdateTargets).trim() === "") {
11018
11018
  contents[_UT] = [];
11019
11019
  }
11020
11020
  else if (output[_UT] != null && output[_UT][_UTp] != null) {
@@ -11169,7 +11169,7 @@ const de_NodeConfigurationOptionList = (output, context) => {
11169
11169
  };
11170
11170
  const de_NodeConfigurationOptionsMessage = (output, context) => {
11171
11171
  const contents = {};
11172
- if (output.NodeConfigurationOptionList === "") {
11172
+ if (String(output.NodeConfigurationOptionList).trim() === "") {
11173
11173
  contents[_NCOL] = [];
11174
11174
  }
11175
11175
  else if (output[_NCOL] != null && output[_NCOL][_NCO] != null) {
@@ -11205,7 +11205,7 @@ const de_OrderableClusterOption = (output, context) => {
11205
11205
  if (output[_NT] != null) {
11206
11206
  contents[_NT] = __expectString(output[_NT]);
11207
11207
  }
11208
- if (output.AvailabilityZones === "") {
11208
+ if (String(output.AvailabilityZones).trim() === "") {
11209
11209
  contents[_AZv] = [];
11210
11210
  }
11211
11211
  else if (output[_AZv] != null && output[_AZv][_AZ] != null) {
@@ -11222,7 +11222,7 @@ const de_OrderableClusterOptionsList = (output, context) => {
11222
11222
  };
11223
11223
  const de_OrderableClusterOptionsMessage = (output, context) => {
11224
11224
  const contents = {};
11225
- if (output.OrderableClusterOptions === "") {
11225
+ if (String(output.OrderableClusterOptions).trim() === "") {
11226
11226
  contents[_OCO] = [];
11227
11227
  }
11228
11228
  else if (output[_OCO] != null && output[_OCO][_OCOr] != null) {
@@ -11442,13 +11442,13 @@ const de_Recommendation = (output, context) => {
11442
11442
  if (output[_RTeco] != null) {
11443
11443
  contents[_RTeco] = __expectString(output[_RTeco]);
11444
11444
  }
11445
- if (output.RecommendedActions === "") {
11445
+ if (String(output.RecommendedActions).trim() === "") {
11446
11446
  contents[_RAe] = [];
11447
11447
  }
11448
11448
  else if (output[_RAe] != null && output[_RAe][_RAec] != null) {
11449
11449
  contents[_RAe] = de_RecommendedActionList(__getArrayIfSingleItem(output[_RAe][_RAec]), context);
11450
11450
  }
11451
- if (output.ReferenceLinks === "") {
11451
+ if (String(output.ReferenceLinks).trim() === "") {
11452
11452
  contents[_RL] = [];
11453
11453
  }
11454
11454
  else if (output[_RL] != null && output[_RL][_RLe] != null) {
@@ -11529,13 +11529,13 @@ const de_RedshiftIdcApplication = (output, context) => {
11529
11529
  if (output[_IOS] != null) {
11530
11530
  contents[_IOS] = __expectString(output[_IOS]);
11531
11531
  }
11532
- if (output.AuthorizedTokenIssuerList === "") {
11532
+ if (String(output.AuthorizedTokenIssuerList).trim() === "") {
11533
11533
  contents[_ATIL] = [];
11534
11534
  }
11535
11535
  else if (output[_ATIL] != null && output[_ATIL][_me] != null) {
11536
11536
  contents[_ATIL] = de_AuthorizedTokenIssuerList(__getArrayIfSingleItem(output[_ATIL][_me]), context);
11537
11537
  }
11538
- if (output.ServiceIntegrations === "") {
11538
+ if (String(output.ServiceIntegrations).trim() === "") {
11539
11539
  contents[_SIe] = [];
11540
11540
  }
11541
11541
  else if (output[_SIe] != null && output[_SIe][_me] != null) {
@@ -11630,7 +11630,7 @@ const de_ReservedNode = (output, context) => {
11630
11630
  if (output[_OT] != null) {
11631
11631
  contents[_OT] = __expectString(output[_OT]);
11632
11632
  }
11633
- if (output.RecurringCharges === "") {
11633
+ if (String(output.RecurringCharges).trim() === "") {
11634
11634
  contents[_RCec] = [];
11635
11635
  }
11636
11636
  else if (output[_RCec] != null && output[_RCec][_RCecu] != null) {
@@ -11757,7 +11757,7 @@ const de_ReservedNodeOffering = (output, context) => {
11757
11757
  if (output[_OT] != null) {
11758
11758
  contents[_OT] = __expectString(output[_OT]);
11759
11759
  }
11760
- if (output.RecurringCharges === "") {
11760
+ if (String(output.RecurringCharges).trim() === "") {
11761
11761
  contents[_RCec] = [];
11762
11762
  }
11763
11763
  else if (output[_RCec] != null && output[_RCec][_RCecu] != null) {
@@ -11787,7 +11787,7 @@ const de_ReservedNodeOfferingsMessage = (output, context) => {
11787
11787
  if (output[_M] != null) {
11788
11788
  contents[_M] = __expectString(output[_M]);
11789
11789
  }
11790
- if (output.ReservedNodeOfferings === "") {
11790
+ if (String(output.ReservedNodeOfferings).trim() === "") {
11791
11791
  contents[_RNO] = [];
11792
11792
  }
11793
11793
  else if (output[_RNO] != null && output[_RNO][_RNOe] != null) {
@@ -11807,7 +11807,7 @@ const de_ReservedNodesMessage = (output, context) => {
11807
11807
  if (output[_M] != null) {
11808
11808
  contents[_M] = __expectString(output[_M]);
11809
11809
  }
11810
- if (output.ReservedNodes === "") {
11810
+ if (String(output.ReservedNodes).trim() === "") {
11811
11811
  contents[_RNese] = [];
11812
11812
  }
11813
11813
  else if (output[_RNese] != null && output[_RNese][_RNes] != null) {
@@ -11878,19 +11878,19 @@ const de_ResizeProgressMessage = (output, context) => {
11878
11878
  if (output[_St] != null) {
11879
11879
  contents[_St] = __expectString(output[_St]);
11880
11880
  }
11881
- if (output.ImportTablesCompleted === "") {
11881
+ if (String(output.ImportTablesCompleted).trim() === "") {
11882
11882
  contents[_ITC] = [];
11883
11883
  }
11884
11884
  else if (output[_ITC] != null && output[_ITC][_me] != null) {
11885
11885
  contents[_ITC] = de_ImportTablesCompleted(__getArrayIfSingleItem(output[_ITC][_me]), context);
11886
11886
  }
11887
- if (output.ImportTablesInProgress === "") {
11887
+ if (String(output.ImportTablesInProgress).trim() === "") {
11888
11888
  contents[_ITIP] = [];
11889
11889
  }
11890
11890
  else if (output[_ITIP] != null && output[_ITIP][_me] != null) {
11891
11891
  contents[_ITIP] = de_ImportTablesInProgress(__getArrayIfSingleItem(output[_ITIP][_me]), context);
11892
11892
  }
11893
- if (output.ImportTablesNotStarted === "") {
11893
+ if (String(output.ImportTablesNotStarted).trim() === "") {
11894
11894
  contents[_ITNS] = [];
11895
11895
  }
11896
11896
  else if (output[_ITNS] != null && output[_ITNS][_me] != null) {
@@ -12075,7 +12075,7 @@ const de_ScheduledAction = (output, context) => {
12075
12075
  if (output[_Sta] != null) {
12076
12076
  contents[_Sta] = __expectString(output[_Sta]);
12077
12077
  }
12078
- if (output.NextInvocations === "") {
12078
+ if (String(output.NextInvocations).trim() === "") {
12079
12079
  contents[_NI] = [];
12080
12080
  }
12081
12081
  else if (output[_NI] != null && output[_NI][_SAT] != null) {
@@ -12122,7 +12122,7 @@ const de_ScheduledActionsMessage = (output, context) => {
12122
12122
  if (output[_M] != null) {
12123
12123
  contents[_M] = __expectString(output[_M]);
12124
12124
  }
12125
- if (output.ScheduledActions === "") {
12125
+ if (String(output.ScheduledActions).trim() === "") {
12126
12126
  contents[_SAc] = [];
12127
12127
  }
12128
12128
  else if (output[_SAc] != null && output[_SAc][_SAch] != null) {
@@ -12183,7 +12183,7 @@ const de_SecondaryClusterInfo = (output, context) => {
12183
12183
  if (output[_AZ] != null) {
12184
12184
  contents[_AZ] = __expectString(output[_AZ]);
12185
12185
  }
12186
- if (output.ClusterNodes === "") {
12186
+ if (String(output.ClusterNodes).trim() === "") {
12187
12187
  contents[_CN] = [];
12188
12188
  }
12189
12189
  else if (output[_CN] != null && output[_CN][_me] != null) {
@@ -12199,7 +12199,7 @@ const de_ServiceIntegrationList = (output, context) => {
12199
12199
  });
12200
12200
  };
12201
12201
  const de_ServiceIntegrationsUnion = (output, context) => {
12202
- if (output.LakeFormation === "") {
12202
+ if (String(output.LakeFormation).trim() === "") {
12203
12203
  return {
12204
12204
  [_LF]: [],
12205
12205
  };
@@ -12209,7 +12209,7 @@ const de_ServiceIntegrationsUnion = (output, context) => {
12209
12209
  LakeFormation: de_LakeFormationServiceIntegrations(__getArrayIfSingleItem(output[_LF][_me]), context),
12210
12210
  };
12211
12211
  }
12212
- if (output.S3AccessGrants === "") {
12212
+ if (String(output.S3AccessGrants).trim() === "") {
12213
12213
  return {
12214
12214
  [_SAG]: [],
12215
12215
  };
@@ -12277,7 +12277,7 @@ const de_Snapshot = (output, context) => {
12277
12277
  if (output[_EWHSM] != null) {
12278
12278
  contents[_EWHSM] = __parseBoolean(output[_EWHSM]);
12279
12279
  }
12280
- if (output.AccountsWithRestoreAccess === "") {
12280
+ if (String(output.AccountsWithRestoreAccess).trim() === "") {
12281
12281
  contents[_AWRAc] = [];
12282
12282
  }
12283
12283
  else if (output[_AWRAc] != null && output[_AWRAc][_AWRA] != null) {
@@ -12307,13 +12307,13 @@ const de_Snapshot = (output, context) => {
12307
12307
  if (output[_SR] != null) {
12308
12308
  contents[_SR] = __expectString(output[_SR]);
12309
12309
  }
12310
- if (output.Tags === "") {
12310
+ if (String(output.Tags).trim() === "") {
12311
12311
  contents[_T] = [];
12312
12312
  }
12313
12313
  else if (output[_T] != null && output[_T][_Ta] != null) {
12314
12314
  contents[_T] = de_TagList(__getArrayIfSingleItem(output[_T][_Ta]), context);
12315
12315
  }
12316
- if (output.RestorableNodeTypes === "") {
12316
+ if (String(output.RestorableNodeTypes).trim() === "") {
12317
12317
  contents[_RNT] = [];
12318
12318
  }
12319
12319
  else if (output[_RNT] != null && output[_RNT][_NT] != null) {
@@ -12374,7 +12374,7 @@ const de_SnapshotCopyGrant = (output, context) => {
12374
12374
  if (output[_KKI] != null) {
12375
12375
  contents[_KKI] = __expectString(output[_KKI]);
12376
12376
  }
12377
- if (output.Tags === "") {
12377
+ if (String(output.Tags).trim() === "") {
12378
12378
  contents[_T] = [];
12379
12379
  }
12380
12380
  else if (output[_T] != null && output[_T][_Ta] != null) {
@@ -12401,7 +12401,7 @@ const de_SnapshotCopyGrantMessage = (output, context) => {
12401
12401
  if (output[_M] != null) {
12402
12402
  contents[_M] = __expectString(output[_M]);
12403
12403
  }
12404
- if (output.SnapshotCopyGrants === "") {
12404
+ if (String(output.SnapshotCopyGrants).trim() === "") {
12405
12405
  contents[_SCGn] = [];
12406
12406
  }
12407
12407
  else if (output[_SCGn] != null && output[_SCGn][_SCG] != null) {
@@ -12458,7 +12458,7 @@ const de_SnapshotMessage = (output, context) => {
12458
12458
  if (output[_M] != null) {
12459
12459
  contents[_M] = __expectString(output[_M]);
12460
12460
  }
12461
- if (output.Snapshots === "") {
12461
+ if (String(output.Snapshots).trim() === "") {
12462
12462
  contents[_Sna] = [];
12463
12463
  }
12464
12464
  else if (output[_Sna] != null && output[_Sna][_Sn] != null) {
@@ -12468,7 +12468,7 @@ const de_SnapshotMessage = (output, context) => {
12468
12468
  };
12469
12469
  const de_SnapshotSchedule = (output, context) => {
12470
12470
  const contents = {};
12471
- if (output.ScheduleDefinitions === "") {
12471
+ if (String(output.ScheduleDefinitions).trim() === "") {
12472
12472
  contents[_SD] = [];
12473
12473
  }
12474
12474
  else if (output[_SD] != null && output[_SD][_SDch] != null) {
@@ -12480,13 +12480,13 @@ const de_SnapshotSchedule = (output, context) => {
12480
12480
  if (output[_SDc] != null) {
12481
12481
  contents[_SDc] = __expectString(output[_SDc]);
12482
12482
  }
12483
- if (output.Tags === "") {
12483
+ if (String(output.Tags).trim() === "") {
12484
12484
  contents[_T] = [];
12485
12485
  }
12486
12486
  else if (output[_T] != null && output[_T][_Ta] != null) {
12487
12487
  contents[_T] = de_TagList(__getArrayIfSingleItem(output[_T][_Ta]), context);
12488
12488
  }
12489
- if (output.NextInvocations === "") {
12489
+ if (String(output.NextInvocations).trim() === "") {
12490
12490
  contents[_NI] = [];
12491
12491
  }
12492
12492
  else if (output[_NI] != null && output[_NI][_STna] != null) {
@@ -12495,7 +12495,7 @@ const de_SnapshotSchedule = (output, context) => {
12495
12495
  if (output[_ACC] != null) {
12496
12496
  contents[_ACC] = __strictParseInt32(output[_ACC]);
12497
12497
  }
12498
- if (output.AssociatedClusters === "") {
12498
+ if (String(output.AssociatedClusters).trim() === "") {
12499
12499
  contents[_ACs] = [];
12500
12500
  }
12501
12501
  else if (output[_ACs] != null && output[_ACs][_CATS] != null) {
@@ -12732,7 +12732,7 @@ const de_TableRestoreStatusList = (output, context) => {
12732
12732
  };
12733
12733
  const de_TableRestoreStatusMessage = (output, context) => {
12734
12734
  const contents = {};
12735
- if (output.TableRestoreStatusDetails === "") {
12735
+ if (String(output.TableRestoreStatusDetails).trim() === "") {
12736
12736
  contents[_TRSD] = [];
12737
12737
  }
12738
12738
  else if (output[_TRSD] != null && output[_TRSD][_TRS] != null) {
@@ -12775,7 +12775,7 @@ const de_TaggedResourceList = (output, context) => {
12775
12775
  };
12776
12776
  const de_TaggedResourceListMessage = (output, context) => {
12777
12777
  const contents = {};
12778
- if (output.TaggedResources === "") {
12778
+ if (String(output.TaggedResources).trim() === "") {
12779
12779
  contents[_TR] = [];
12780
12780
  }
12781
12781
  else if (output[_TR] != null && output[_TR][_TRa] != null) {
@@ -12809,7 +12809,7 @@ const de_TrackList = (output, context) => {
12809
12809
  };
12810
12810
  const de_TrackListMessage = (output, context) => {
12811
12811
  const contents = {};
12812
- if (output.MaintenanceTracks === "") {
12812
+ if (String(output.MaintenanceTracks).trim() === "") {
12813
12813
  contents[_MT] = [];
12814
12814
  }
12815
12815
  else if (output[_MT] != null && output[_MT][_MTa] != null) {
@@ -12863,7 +12863,7 @@ const de_UpdateTarget = (output, context) => {
12863
12863
  if (output[_DV] != null) {
12864
12864
  contents[_DV] = __expectString(output[_DV]);
12865
12865
  }
12866
- if (output.SupportedOperations === "") {
12866
+ if (String(output.SupportedOperations).trim() === "") {
12867
12867
  contents[_SOu] = [];
12868
12868
  }
12869
12869
  else if (output[_SOu] != null && output[_SOu][_SOup] != null) {
@@ -12894,7 +12894,7 @@ const de_UsageLimit = (output, context) => {
12894
12894
  if (output[_BA] != null) {
12895
12895
  contents[_BA] = __expectString(output[_BA]);
12896
12896
  }
12897
- if (output.Tags === "") {
12897
+ if (String(output.Tags).trim() === "") {
12898
12898
  contents[_T] = [];
12899
12899
  }
12900
12900
  else if (output[_T] != null && output[_T][_Ta] != null) {
@@ -12911,7 +12911,7 @@ const de_UsageLimitAlreadyExistsFault = (output, context) => {
12911
12911
  };
12912
12912
  const de_UsageLimitList = (output, context) => {
12913
12913
  const contents = {};
12914
- if (output.UsageLimits === "") {
12914
+ if (String(output.UsageLimits).trim() === "") {
12915
12915
  contents[_UL] = [];
12916
12916
  }
12917
12917
  else if (output[_UL] != null && output[_UL][_me] != null) {
@@ -12951,7 +12951,7 @@ const de_VpcEndpoint = (output, context) => {
12951
12951
  if (output[_VIp] != null) {
12952
12952
  contents[_VIp] = __expectString(output[_VIp]);
12953
12953
  }
12954
- if (output.NetworkInterfaces === "") {
12954
+ if (String(output.NetworkInterfaces).trim() === "") {
12955
12955
  contents[_NIe] = [];
12956
12956
  }
12957
12957
  else if (output[_NIe] != null && output[_NIe][_NIet] != null) {