@aws-sdk/client-rds 3.28.0 → 3.32.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.
@@ -1,6 +1,6 @@
1
1
  import { __assign, __awaiter, __generator, __read, __values } from "tslib";
2
2
  import { HttpRequest as __HttpRequest } from "@aws-sdk/protocol-http";
3
- import { expectString as __expectString, extendedEncodeURIComponent as __extendedEncodeURIComponent, getArrayIfSingleItem as __getArrayIfSingleItem, getValueFromTextNode as __getValueFromTextNode, parseBoolean as __parseBoolean, strictParseFloat as __strictParseFloat, strictParseInt as __strictParseInt, } from "@aws-sdk/smithy-client";
3
+ import { expectNonNull as __expectNonNull, expectString as __expectString, extendedEncodeURIComponent as __extendedEncodeURIComponent, getArrayIfSingleItem as __getArrayIfSingleItem, getValueFromTextNode as __getValueFromTextNode, parseBoolean as __parseBoolean, parseRfc3339DateTime as __parseRfc3339DateTime, strictParseFloat as __strictParseFloat, strictParseInt32 as __strictParseInt32, strictParseLong as __strictParseLong, } from "@aws-sdk/smithy-client";
4
4
  import { decodeHTML } from "entities";
5
5
  import { parse as xmlParse } from "fast-xml-parser";
6
6
  export var serializeAws_queryAddRoleToDBClusterCommand = function (input, context) { return __awaiter(void 0, void 0, void 0, function () {
@@ -17387,6 +17387,9 @@ var serializeAws_queryScalingConfiguration = function (input, context) {
17387
17387
  if (input.TimeoutAction !== undefined && input.TimeoutAction !== null) {
17388
17388
  entries["TimeoutAction"] = input.TimeoutAction;
17389
17389
  }
17390
+ if (input.SecondsBeforeTimeout !== undefined && input.SecondsBeforeTimeout !== null) {
17391
+ entries["SecondsBeforeTimeout"] = input.SecondsBeforeTimeout;
17392
+ }
17390
17393
  return entries;
17391
17394
  };
17392
17395
  var serializeAws_querySourceIdsList = function (input, context) {
@@ -17699,10 +17702,10 @@ var deserializeAws_queryAccountQuota = function (output, context) {
17699
17702
  contents.AccountQuotaName = __expectString(output["AccountQuotaName"]);
17700
17703
  }
17701
17704
  if (output["Used"] !== undefined) {
17702
- contents.Used = __strictParseInt(output["Used"]);
17705
+ contents.Used = __strictParseLong(output["Used"]);
17703
17706
  }
17704
17707
  if (output["Max"] !== undefined) {
17705
- contents.Max = __strictParseInt(output["Max"]);
17708
+ contents.Max = __strictParseLong(output["Max"]);
17706
17709
  }
17707
17710
  return contents;
17708
17711
  };
@@ -17876,10 +17879,10 @@ var deserializeAws_queryCertificate = function (output, context) {
17876
17879
  contents.Thumbprint = __expectString(output["Thumbprint"]);
17877
17880
  }
17878
17881
  if (output["ValidFrom"] !== undefined) {
17879
- contents.ValidFrom = new Date(output["ValidFrom"]);
17882
+ contents.ValidFrom = __expectNonNull(__parseRfc3339DateTime(output["ValidFrom"]));
17880
17883
  }
17881
17884
  if (output["ValidTill"] !== undefined) {
17882
- contents.ValidTill = new Date(output["ValidTill"]);
17885
+ contents.ValidTill = __expectNonNull(__parseRfc3339DateTime(output["ValidTill"]));
17883
17886
  }
17884
17887
  if (output["CertificateArn"] !== undefined) {
17885
17888
  contents.CertificateArn = __expectString(output["CertificateArn"]);
@@ -17888,7 +17891,7 @@ var deserializeAws_queryCertificate = function (output, context) {
17888
17891
  contents.CustomerOverride = __parseBoolean(output["CustomerOverride"]);
17889
17892
  }
17890
17893
  if (output["CustomerOverrideValidTill"] !== undefined) {
17891
- contents.CustomerOverrideValidTill = new Date(output["CustomerOverrideValidTill"]);
17894
+ contents.CustomerOverrideValidTill = __expectNonNull(__parseRfc3339DateTime(output["CustomerOverrideValidTill"]));
17892
17895
  }
17893
17896
  return contents;
17894
17897
  };
@@ -17974,13 +17977,13 @@ var deserializeAws_queryConnectionPoolConfigurationInfo = function (output, cont
17974
17977
  InitQuery: undefined,
17975
17978
  };
17976
17979
  if (output["MaxConnectionsPercent"] !== undefined) {
17977
- contents.MaxConnectionsPercent = __strictParseInt(output["MaxConnectionsPercent"]);
17980
+ contents.MaxConnectionsPercent = __strictParseInt32(output["MaxConnectionsPercent"]);
17978
17981
  }
17979
17982
  if (output["MaxIdleConnectionsPercent"] !== undefined) {
17980
- contents.MaxIdleConnectionsPercent = __strictParseInt(output["MaxIdleConnectionsPercent"]);
17983
+ contents.MaxIdleConnectionsPercent = __strictParseInt32(output["MaxIdleConnectionsPercent"]);
17981
17984
  }
17982
17985
  if (output["ConnectionBorrowTimeout"] !== undefined) {
17983
- contents.ConnectionBorrowTimeout = __strictParseInt(output["ConnectionBorrowTimeout"]);
17986
+ contents.ConnectionBorrowTimeout = __strictParseInt32(output["ConnectionBorrowTimeout"]);
17984
17987
  }
17985
17988
  if (output.SessionPinningFilters === "") {
17986
17989
  contents.SessionPinningFilters = [];
@@ -18309,7 +18312,7 @@ var deserializeAws_queryDBCluster = function (output, context) {
18309
18312
  PendingModifiedValues: undefined,
18310
18313
  };
18311
18314
  if (output["AllocatedStorage"] !== undefined) {
18312
- contents.AllocatedStorage = __strictParseInt(output["AllocatedStorage"]);
18315
+ contents.AllocatedStorage = __strictParseInt32(output["AllocatedStorage"]);
18313
18316
  }
18314
18317
  if (output.AvailabilityZones === "") {
18315
18318
  contents.AvailabilityZones = [];
@@ -18318,7 +18321,7 @@ var deserializeAws_queryDBCluster = function (output, context) {
18318
18321
  contents.AvailabilityZones = deserializeAws_queryAvailabilityZones(__getArrayIfSingleItem(output["AvailabilityZones"]["AvailabilityZone"]), context);
18319
18322
  }
18320
18323
  if (output["BackupRetentionPeriod"] !== undefined) {
18321
- contents.BackupRetentionPeriod = __strictParseInt(output["BackupRetentionPeriod"]);
18324
+ contents.BackupRetentionPeriod = __strictParseInt32(output["BackupRetentionPeriod"]);
18322
18325
  }
18323
18326
  if (output["CharacterSetName"] !== undefined) {
18324
18327
  contents.CharacterSetName = __expectString(output["CharacterSetName"]);
@@ -18339,13 +18342,13 @@ var deserializeAws_queryDBCluster = function (output, context) {
18339
18342
  contents.Status = __expectString(output["Status"]);
18340
18343
  }
18341
18344
  if (output["AutomaticRestartTime"] !== undefined) {
18342
- contents.AutomaticRestartTime = new Date(output["AutomaticRestartTime"]);
18345
+ contents.AutomaticRestartTime = __expectNonNull(__parseRfc3339DateTime(output["AutomaticRestartTime"]));
18343
18346
  }
18344
18347
  if (output["PercentProgress"] !== undefined) {
18345
18348
  contents.PercentProgress = __expectString(output["PercentProgress"]);
18346
18349
  }
18347
18350
  if (output["EarliestRestorableTime"] !== undefined) {
18348
- contents.EarliestRestorableTime = new Date(output["EarliestRestorableTime"]);
18351
+ contents.EarliestRestorableTime = __expectNonNull(__parseRfc3339DateTime(output["EarliestRestorableTime"]));
18349
18352
  }
18350
18353
  if (output["Endpoint"] !== undefined) {
18351
18354
  contents.Endpoint = __expectString(output["Endpoint"]);
@@ -18369,10 +18372,10 @@ var deserializeAws_queryDBCluster = function (output, context) {
18369
18372
  contents.EngineVersion = __expectString(output["EngineVersion"]);
18370
18373
  }
18371
18374
  if (output["LatestRestorableTime"] !== undefined) {
18372
- contents.LatestRestorableTime = new Date(output["LatestRestorableTime"]);
18375
+ contents.LatestRestorableTime = __expectNonNull(__parseRfc3339DateTime(output["LatestRestorableTime"]));
18373
18376
  }
18374
18377
  if (output["Port"] !== undefined) {
18375
- contents.Port = __strictParseInt(output["Port"]);
18378
+ contents.Port = __strictParseInt32(output["Port"]);
18376
18379
  }
18377
18380
  if (output["MasterUsername"] !== undefined) {
18378
18381
  contents.MasterUsername = __expectString(output["MasterUsername"]);
@@ -18441,16 +18444,16 @@ var deserializeAws_queryDBCluster = function (output, context) {
18441
18444
  contents.CloneGroupId = __expectString(output["CloneGroupId"]);
18442
18445
  }
18443
18446
  if (output["ClusterCreateTime"] !== undefined) {
18444
- contents.ClusterCreateTime = new Date(output["ClusterCreateTime"]);
18447
+ contents.ClusterCreateTime = __expectNonNull(__parseRfc3339DateTime(output["ClusterCreateTime"]));
18445
18448
  }
18446
18449
  if (output["EarliestBacktrackTime"] !== undefined) {
18447
- contents.EarliestBacktrackTime = new Date(output["EarliestBacktrackTime"]);
18450
+ contents.EarliestBacktrackTime = __expectNonNull(__parseRfc3339DateTime(output["EarliestBacktrackTime"]));
18448
18451
  }
18449
18452
  if (output["BacktrackWindow"] !== undefined) {
18450
- contents.BacktrackWindow = __strictParseInt(output["BacktrackWindow"]);
18453
+ contents.BacktrackWindow = __strictParseLong(output["BacktrackWindow"]);
18451
18454
  }
18452
18455
  if (output["BacktrackConsumedChangeRecords"] !== undefined) {
18453
- contents.BacktrackConsumedChangeRecords = __strictParseInt(output["BacktrackConsumedChangeRecords"]);
18456
+ contents.BacktrackConsumedChangeRecords = __strictParseLong(output["BacktrackConsumedChangeRecords"]);
18454
18457
  }
18455
18458
  if (output.EnabledCloudwatchLogsExports === "") {
18456
18459
  contents.EnabledCloudwatchLogsExports = [];
@@ -18460,7 +18463,7 @@ var deserializeAws_queryDBCluster = function (output, context) {
18460
18463
  contents.EnabledCloudwatchLogsExports = deserializeAws_queryLogTypeList(__getArrayIfSingleItem(output["EnabledCloudwatchLogsExports"]["member"]), context);
18461
18464
  }
18462
18465
  if (output["Capacity"] !== undefined) {
18463
- contents.Capacity = __strictParseInt(output["Capacity"]);
18466
+ contents.Capacity = __strictParseInt32(output["Capacity"]);
18464
18467
  }
18465
18468
  if (output["EngineMode"] !== undefined) {
18466
18469
  contents.EngineMode = __expectString(output["EngineMode"]);
@@ -18540,13 +18543,13 @@ var deserializeAws_queryDBClusterBacktrack = function (output, context) {
18540
18543
  contents.BacktrackIdentifier = __expectString(output["BacktrackIdentifier"]);
18541
18544
  }
18542
18545
  if (output["BacktrackTo"] !== undefined) {
18543
- contents.BacktrackTo = new Date(output["BacktrackTo"]);
18546
+ contents.BacktrackTo = __expectNonNull(__parseRfc3339DateTime(output["BacktrackTo"]));
18544
18547
  }
18545
18548
  if (output["BacktrackedFrom"] !== undefined) {
18546
- contents.BacktrackedFrom = new Date(output["BacktrackedFrom"]);
18549
+ contents.BacktrackedFrom = __expectNonNull(__parseRfc3339DateTime(output["BacktrackedFrom"]));
18547
18550
  }
18548
18551
  if (output["BacktrackRequestCreationTime"] !== undefined) {
18549
- contents.BacktrackRequestCreationTime = new Date(output["BacktrackRequestCreationTime"]);
18552
+ contents.BacktrackRequestCreationTime = __expectNonNull(__parseRfc3339DateTime(output["BacktrackRequestCreationTime"]));
18550
18553
  }
18551
18554
  if (output["Status"] !== undefined) {
18552
18555
  contents.Status = __expectString(output["Status"]);
@@ -18601,13 +18604,13 @@ var deserializeAws_queryDBClusterCapacityInfo = function (output, context) {
18601
18604
  contents.DBClusterIdentifier = __expectString(output["DBClusterIdentifier"]);
18602
18605
  }
18603
18606
  if (output["PendingCapacity"] !== undefined) {
18604
- contents.PendingCapacity = __strictParseInt(output["PendingCapacity"]);
18607
+ contents.PendingCapacity = __strictParseInt32(output["PendingCapacity"]);
18605
18608
  }
18606
18609
  if (output["CurrentCapacity"] !== undefined) {
18607
- contents.CurrentCapacity = __strictParseInt(output["CurrentCapacity"]);
18610
+ contents.CurrentCapacity = __strictParseInt32(output["CurrentCapacity"]);
18608
18611
  }
18609
18612
  if (output["SecondsBeforeTimeout"] !== undefined) {
18610
- contents.SecondsBeforeTimeout = __strictParseInt(output["SecondsBeforeTimeout"]);
18613
+ contents.SecondsBeforeTimeout = __strictParseInt32(output["SecondsBeforeTimeout"]);
18611
18614
  }
18612
18615
  if (output["TimeoutAction"] !== undefined) {
18613
18616
  contents.TimeoutAction = __expectString(output["TimeoutAction"]);
@@ -18746,7 +18749,7 @@ var deserializeAws_queryDBClusterMember = function (output, context) {
18746
18749
  contents.DBClusterParameterGroupStatus = __expectString(output["DBClusterParameterGroupStatus"]);
18747
18750
  }
18748
18751
  if (output["PromotionTier"] !== undefined) {
18749
- contents.PromotionTier = __strictParseInt(output["PromotionTier"]);
18752
+ contents.PromotionTier = __strictParseInt32(output["PromotionTier"]);
18750
18753
  }
18751
18754
  return contents;
18752
18755
  };
@@ -18991,7 +18994,7 @@ var deserializeAws_queryDBClusterSnapshot = function (output, context) {
18991
18994
  contents.DBClusterIdentifier = __expectString(output["DBClusterIdentifier"]);
18992
18995
  }
18993
18996
  if (output["SnapshotCreateTime"] !== undefined) {
18994
- contents.SnapshotCreateTime = new Date(output["SnapshotCreateTime"]);
18997
+ contents.SnapshotCreateTime = __expectNonNull(__parseRfc3339DateTime(output["SnapshotCreateTime"]));
18995
18998
  }
18996
18999
  if (output["Engine"] !== undefined) {
18997
19000
  contents.Engine = __expectString(output["Engine"]);
@@ -19000,19 +19003,19 @@ var deserializeAws_queryDBClusterSnapshot = function (output, context) {
19000
19003
  contents.EngineMode = __expectString(output["EngineMode"]);
19001
19004
  }
19002
19005
  if (output["AllocatedStorage"] !== undefined) {
19003
- contents.AllocatedStorage = __strictParseInt(output["AllocatedStorage"]);
19006
+ contents.AllocatedStorage = __strictParseInt32(output["AllocatedStorage"]);
19004
19007
  }
19005
19008
  if (output["Status"] !== undefined) {
19006
19009
  contents.Status = __expectString(output["Status"]);
19007
19010
  }
19008
19011
  if (output["Port"] !== undefined) {
19009
- contents.Port = __strictParseInt(output["Port"]);
19012
+ contents.Port = __strictParseInt32(output["Port"]);
19010
19013
  }
19011
19014
  if (output["VpcId"] !== undefined) {
19012
19015
  contents.VpcId = __expectString(output["VpcId"]);
19013
19016
  }
19014
19017
  if (output["ClusterCreateTime"] !== undefined) {
19015
- contents.ClusterCreateTime = new Date(output["ClusterCreateTime"]);
19018
+ contents.ClusterCreateTime = __expectNonNull(__parseRfc3339DateTime(output["ClusterCreateTime"]));
19016
19019
  }
19017
19020
  if (output["MasterUsername"] !== undefined) {
19018
19021
  contents.MasterUsername = __expectString(output["MasterUsername"]);
@@ -19027,7 +19030,7 @@ var deserializeAws_queryDBClusterSnapshot = function (output, context) {
19027
19030
  contents.SnapshotType = __expectString(output["SnapshotType"]);
19028
19031
  }
19029
19032
  if (output["PercentProgress"] !== undefined) {
19030
- contents.PercentProgress = __strictParseInt(output["PercentProgress"]);
19033
+ contents.PercentProgress = __strictParseInt32(output["PercentProgress"]);
19031
19034
  }
19032
19035
  if (output["StorageEncrypted"] !== undefined) {
19033
19036
  contents.StorageEncrypted = __parseBoolean(output["StorageEncrypted"]);
@@ -19351,7 +19354,7 @@ var deserializeAws_queryDBInstance = function (output, context) {
19351
19354
  contents.DBInstanceStatus = __expectString(output["DBInstanceStatus"]);
19352
19355
  }
19353
19356
  if (output["AutomaticRestartTime"] !== undefined) {
19354
- contents.AutomaticRestartTime = new Date(output["AutomaticRestartTime"]);
19357
+ contents.AutomaticRestartTime = __expectNonNull(__parseRfc3339DateTime(output["AutomaticRestartTime"]));
19355
19358
  }
19356
19359
  if (output["MasterUsername"] !== undefined) {
19357
19360
  contents.MasterUsername = __expectString(output["MasterUsername"]);
@@ -19363,16 +19366,16 @@ var deserializeAws_queryDBInstance = function (output, context) {
19363
19366
  contents.Endpoint = deserializeAws_queryEndpoint(output["Endpoint"], context);
19364
19367
  }
19365
19368
  if (output["AllocatedStorage"] !== undefined) {
19366
- contents.AllocatedStorage = __strictParseInt(output["AllocatedStorage"]);
19369
+ contents.AllocatedStorage = __strictParseInt32(output["AllocatedStorage"]);
19367
19370
  }
19368
19371
  if (output["InstanceCreateTime"] !== undefined) {
19369
- contents.InstanceCreateTime = new Date(output["InstanceCreateTime"]);
19372
+ contents.InstanceCreateTime = __expectNonNull(__parseRfc3339DateTime(output["InstanceCreateTime"]));
19370
19373
  }
19371
19374
  if (output["PreferredBackupWindow"] !== undefined) {
19372
19375
  contents.PreferredBackupWindow = __expectString(output["PreferredBackupWindow"]);
19373
19376
  }
19374
19377
  if (output["BackupRetentionPeriod"] !== undefined) {
19375
- contents.BackupRetentionPeriod = __strictParseInt(output["BackupRetentionPeriod"]);
19378
+ contents.BackupRetentionPeriod = __strictParseInt32(output["BackupRetentionPeriod"]);
19376
19379
  }
19377
19380
  if (output.DBSecurityGroups === "") {
19378
19381
  contents.DBSecurityGroups = [];
@@ -19406,7 +19409,7 @@ var deserializeAws_queryDBInstance = function (output, context) {
19406
19409
  contents.PendingModifiedValues = deserializeAws_queryPendingModifiedValues(output["PendingModifiedValues"], context);
19407
19410
  }
19408
19411
  if (output["LatestRestorableTime"] !== undefined) {
19409
- contents.LatestRestorableTime = new Date(output["LatestRestorableTime"]);
19412
+ contents.LatestRestorableTime = __expectNonNull(__parseRfc3339DateTime(output["LatestRestorableTime"]));
19410
19413
  }
19411
19414
  if (output["MultiAZ"] !== undefined) {
19412
19415
  contents.MultiAZ = __parseBoolean(output["MultiAZ"]);
@@ -19441,7 +19444,7 @@ var deserializeAws_queryDBInstance = function (output, context) {
19441
19444
  contents.LicenseModel = __expectString(output["LicenseModel"]);
19442
19445
  }
19443
19446
  if (output["Iops"] !== undefined) {
19444
- contents.Iops = __strictParseInt(output["Iops"]);
19447
+ contents.Iops = __strictParseInt32(output["Iops"]);
19445
19448
  }
19446
19449
  if (output.OptionGroupMemberships === "") {
19447
19450
  contents.OptionGroupMemberships = [];
@@ -19475,7 +19478,7 @@ var deserializeAws_queryDBInstance = function (output, context) {
19475
19478
  contents.TdeCredentialArn = __expectString(output["TdeCredentialArn"]);
19476
19479
  }
19477
19480
  if (output["DbInstancePort"] !== undefined) {
19478
- contents.DbInstancePort = __strictParseInt(output["DbInstancePort"]);
19481
+ contents.DbInstancePort = __strictParseInt32(output["DbInstancePort"]);
19479
19482
  }
19480
19483
  if (output["DBClusterIdentifier"] !== undefined) {
19481
19484
  contents.DBClusterIdentifier = __expectString(output["DBClusterIdentifier"]);
@@ -19502,7 +19505,7 @@ var deserializeAws_queryDBInstance = function (output, context) {
19502
19505
  contents.CopyTagsToSnapshot = __parseBoolean(output["CopyTagsToSnapshot"]);
19503
19506
  }
19504
19507
  if (output["MonitoringInterval"] !== undefined) {
19505
- contents.MonitoringInterval = __strictParseInt(output["MonitoringInterval"]);
19508
+ contents.MonitoringInterval = __strictParseInt32(output["MonitoringInterval"]);
19506
19509
  }
19507
19510
  if (output["EnhancedMonitoringResourceArn"] !== undefined) {
19508
19511
  contents.EnhancedMonitoringResourceArn = __expectString(output["EnhancedMonitoringResourceArn"]);
@@ -19511,7 +19514,7 @@ var deserializeAws_queryDBInstance = function (output, context) {
19511
19514
  contents.MonitoringRoleArn = __expectString(output["MonitoringRoleArn"]);
19512
19515
  }
19513
19516
  if (output["PromotionTier"] !== undefined) {
19514
- contents.PromotionTier = __strictParseInt(output["PromotionTier"]);
19517
+ contents.PromotionTier = __strictParseInt32(output["PromotionTier"]);
19515
19518
  }
19516
19519
  if (output["DBInstanceArn"] !== undefined) {
19517
19520
  contents.DBInstanceArn = __expectString(output["DBInstanceArn"]);
@@ -19529,7 +19532,7 @@ var deserializeAws_queryDBInstance = function (output, context) {
19529
19532
  contents.PerformanceInsightsKMSKeyId = __expectString(output["PerformanceInsightsKMSKeyId"]);
19530
19533
  }
19531
19534
  if (output["PerformanceInsightsRetentionPeriod"] !== undefined) {
19532
- contents.PerformanceInsightsRetentionPeriod = __strictParseInt(output["PerformanceInsightsRetentionPeriod"]);
19535
+ contents.PerformanceInsightsRetentionPeriod = __strictParseInt32(output["PerformanceInsightsRetentionPeriod"]);
19533
19536
  }
19534
19537
  if (output.EnabledCloudwatchLogsExports === "") {
19535
19538
  contents.EnabledCloudwatchLogsExports = [];
@@ -19557,7 +19560,7 @@ var deserializeAws_queryDBInstance = function (output, context) {
19557
19560
  contents.ListenerEndpoint = deserializeAws_queryEndpoint(output["ListenerEndpoint"], context);
19558
19561
  }
19559
19562
  if (output["MaxAllocatedStorage"] !== undefined) {
19560
- contents.MaxAllocatedStorage = __strictParseInt(output["MaxAllocatedStorage"]);
19563
+ contents.MaxAllocatedStorage = __strictParseInt32(output["MaxAllocatedStorage"]);
19561
19564
  }
19562
19565
  if (output.TagList === "") {
19563
19566
  contents.TagList = [];
@@ -19649,13 +19652,13 @@ var deserializeAws_queryDBInstanceAutomatedBackup = function (output, context) {
19649
19652
  contents.RestoreWindow = deserializeAws_queryRestoreWindow(output["RestoreWindow"], context);
19650
19653
  }
19651
19654
  if (output["AllocatedStorage"] !== undefined) {
19652
- contents.AllocatedStorage = __strictParseInt(output["AllocatedStorage"]);
19655
+ contents.AllocatedStorage = __strictParseInt32(output["AllocatedStorage"]);
19653
19656
  }
19654
19657
  if (output["Status"] !== undefined) {
19655
19658
  contents.Status = __expectString(output["Status"]);
19656
19659
  }
19657
19660
  if (output["Port"] !== undefined) {
19658
- contents.Port = __strictParseInt(output["Port"]);
19661
+ contents.Port = __strictParseInt32(output["Port"]);
19659
19662
  }
19660
19663
  if (output["AvailabilityZone"] !== undefined) {
19661
19664
  contents.AvailabilityZone = __expectString(output["AvailabilityZone"]);
@@ -19664,7 +19667,7 @@ var deserializeAws_queryDBInstanceAutomatedBackup = function (output, context) {
19664
19667
  contents.VpcId = __expectString(output["VpcId"]);
19665
19668
  }
19666
19669
  if (output["InstanceCreateTime"] !== undefined) {
19667
- contents.InstanceCreateTime = new Date(output["InstanceCreateTime"]);
19670
+ contents.InstanceCreateTime = __expectNonNull(__parseRfc3339DateTime(output["InstanceCreateTime"]));
19668
19671
  }
19669
19672
  if (output["MasterUsername"] !== undefined) {
19670
19673
  contents.MasterUsername = __expectString(output["MasterUsername"]);
@@ -19679,7 +19682,7 @@ var deserializeAws_queryDBInstanceAutomatedBackup = function (output, context) {
19679
19682
  contents.LicenseModel = __expectString(output["LicenseModel"]);
19680
19683
  }
19681
19684
  if (output["Iops"] !== undefined) {
19682
- contents.Iops = __strictParseInt(output["Iops"]);
19685
+ contents.Iops = __strictParseInt32(output["Iops"]);
19683
19686
  }
19684
19687
  if (output["OptionGroupName"] !== undefined) {
19685
19688
  contents.OptionGroupName = __expectString(output["OptionGroupName"]);
@@ -19703,7 +19706,7 @@ var deserializeAws_queryDBInstanceAutomatedBackup = function (output, context) {
19703
19706
  contents.IAMDatabaseAuthenticationEnabled = __parseBoolean(output["IAMDatabaseAuthenticationEnabled"]);
19704
19707
  }
19705
19708
  if (output["BackupRetentionPeriod"] !== undefined) {
19706
- contents.BackupRetentionPeriod = __strictParseInt(output["BackupRetentionPeriod"]);
19709
+ contents.BackupRetentionPeriod = __strictParseInt32(output["BackupRetentionPeriod"]);
19707
19710
  }
19708
19711
  if (output["DBInstanceAutomatedBackupsArn"] !== undefined) {
19709
19712
  contents.DBInstanceAutomatedBackupsArn = __expectString(output["DBInstanceAutomatedBackupsArn"]);
@@ -20093,16 +20096,16 @@ var deserializeAws_queryDBProxy = function (output, context) {
20093
20096
  contents.RequireTLS = __parseBoolean(output["RequireTLS"]);
20094
20097
  }
20095
20098
  if (output["IdleClientTimeout"] !== undefined) {
20096
- contents.IdleClientTimeout = __strictParseInt(output["IdleClientTimeout"]);
20099
+ contents.IdleClientTimeout = __strictParseInt32(output["IdleClientTimeout"]);
20097
20100
  }
20098
20101
  if (output["DebugLogging"] !== undefined) {
20099
20102
  contents.DebugLogging = __parseBoolean(output["DebugLogging"]);
20100
20103
  }
20101
20104
  if (output["CreatedDate"] !== undefined) {
20102
- contents.CreatedDate = new Date(output["CreatedDate"]);
20105
+ contents.CreatedDate = __expectNonNull(__parseRfc3339DateTime(output["CreatedDate"]));
20103
20106
  }
20104
20107
  if (output["UpdatedDate"] !== undefined) {
20105
- contents.UpdatedDate = new Date(output["UpdatedDate"]);
20108
+ contents.UpdatedDate = __expectNonNull(__parseRfc3339DateTime(output["UpdatedDate"]));
20106
20109
  }
20107
20110
  return contents;
20108
20111
  };
@@ -20160,7 +20163,7 @@ var deserializeAws_queryDBProxyEndpoint = function (output, context) {
20160
20163
  contents.Endpoint = __expectString(output["Endpoint"]);
20161
20164
  }
20162
20165
  if (output["CreatedDate"] !== undefined) {
20163
- contents.CreatedDate = new Date(output["CreatedDate"]);
20166
+ contents.CreatedDate = __expectNonNull(__parseRfc3339DateTime(output["CreatedDate"]));
20164
20167
  }
20165
20168
  if (output["TargetRole"] !== undefined) {
20166
20169
  contents.TargetRole = __expectString(output["TargetRole"]);
@@ -20259,7 +20262,7 @@ var deserializeAws_queryDBProxyTarget = function (output, context) {
20259
20262
  contents.RdsResourceId = __expectString(output["RdsResourceId"]);
20260
20263
  }
20261
20264
  if (output["Port"] !== undefined) {
20262
- contents.Port = __strictParseInt(output["Port"]);
20265
+ contents.Port = __strictParseInt32(output["Port"]);
20263
20266
  }
20264
20267
  if (output["Type"] !== undefined) {
20265
20268
  contents.Type = __expectString(output["Type"]);
@@ -20311,10 +20314,10 @@ var deserializeAws_queryDBProxyTargetGroup = function (output, context) {
20311
20314
  contents.ConnectionPoolConfig = deserializeAws_queryConnectionPoolConfigurationInfo(output["ConnectionPoolConfig"], context);
20312
20315
  }
20313
20316
  if (output["CreatedDate"] !== undefined) {
20314
- contents.CreatedDate = new Date(output["CreatedDate"]);
20317
+ contents.CreatedDate = __expectNonNull(__parseRfc3339DateTime(output["CreatedDate"]));
20315
20318
  }
20316
20319
  if (output["UpdatedDate"] !== undefined) {
20317
- contents.UpdatedDate = new Date(output["UpdatedDate"]);
20320
+ contents.UpdatedDate = __expectNonNull(__parseRfc3339DateTime(output["UpdatedDate"]));
20318
20321
  }
20319
20322
  return contents;
20320
20323
  };
@@ -20500,19 +20503,19 @@ var deserializeAws_queryDBSnapshot = function (output, context) {
20500
20503
  contents.DBInstanceIdentifier = __expectString(output["DBInstanceIdentifier"]);
20501
20504
  }
20502
20505
  if (output["SnapshotCreateTime"] !== undefined) {
20503
- contents.SnapshotCreateTime = new Date(output["SnapshotCreateTime"]);
20506
+ contents.SnapshotCreateTime = __expectNonNull(__parseRfc3339DateTime(output["SnapshotCreateTime"]));
20504
20507
  }
20505
20508
  if (output["Engine"] !== undefined) {
20506
20509
  contents.Engine = __expectString(output["Engine"]);
20507
20510
  }
20508
20511
  if (output["AllocatedStorage"] !== undefined) {
20509
- contents.AllocatedStorage = __strictParseInt(output["AllocatedStorage"]);
20512
+ contents.AllocatedStorage = __strictParseInt32(output["AllocatedStorage"]);
20510
20513
  }
20511
20514
  if (output["Status"] !== undefined) {
20512
20515
  contents.Status = __expectString(output["Status"]);
20513
20516
  }
20514
20517
  if (output["Port"] !== undefined) {
20515
- contents.Port = __strictParseInt(output["Port"]);
20518
+ contents.Port = __strictParseInt32(output["Port"]);
20516
20519
  }
20517
20520
  if (output["AvailabilityZone"] !== undefined) {
20518
20521
  contents.AvailabilityZone = __expectString(output["AvailabilityZone"]);
@@ -20521,7 +20524,7 @@ var deserializeAws_queryDBSnapshot = function (output, context) {
20521
20524
  contents.VpcId = __expectString(output["VpcId"]);
20522
20525
  }
20523
20526
  if (output["InstanceCreateTime"] !== undefined) {
20524
- contents.InstanceCreateTime = new Date(output["InstanceCreateTime"]);
20527
+ contents.InstanceCreateTime = __expectNonNull(__parseRfc3339DateTime(output["InstanceCreateTime"]));
20525
20528
  }
20526
20529
  if (output["MasterUsername"] !== undefined) {
20527
20530
  contents.MasterUsername = __expectString(output["MasterUsername"]);
@@ -20536,13 +20539,13 @@ var deserializeAws_queryDBSnapshot = function (output, context) {
20536
20539
  contents.SnapshotType = __expectString(output["SnapshotType"]);
20537
20540
  }
20538
20541
  if (output["Iops"] !== undefined) {
20539
- contents.Iops = __strictParseInt(output["Iops"]);
20542
+ contents.Iops = __strictParseInt32(output["Iops"]);
20540
20543
  }
20541
20544
  if (output["OptionGroupName"] !== undefined) {
20542
20545
  contents.OptionGroupName = __expectString(output["OptionGroupName"]);
20543
20546
  }
20544
20547
  if (output["PercentProgress"] !== undefined) {
20545
- contents.PercentProgress = __strictParseInt(output["PercentProgress"]);
20548
+ contents.PercentProgress = __strictParseInt32(output["PercentProgress"]);
20546
20549
  }
20547
20550
  if (output["SourceRegion"] !== undefined) {
20548
20551
  contents.SourceRegion = __expectString(output["SourceRegion"]);
@@ -20587,7 +20590,7 @@ var deserializeAws_queryDBSnapshot = function (output, context) {
20587
20590
  contents.TagList = deserializeAws_queryTagList(__getArrayIfSingleItem(output["TagList"]["Tag"]), context);
20588
20591
  }
20589
20592
  if (output["OriginalSnapshotCreateTime"] !== undefined) {
20590
- contents.OriginalSnapshotCreateTime = new Date(output["OriginalSnapshotCreateTime"]);
20593
+ contents.OriginalSnapshotCreateTime = __expectNonNull(__parseRfc3339DateTime(output["OriginalSnapshotCreateTime"]));
20591
20594
  }
20592
20595
  return contents;
20593
20596
  };
@@ -20912,10 +20915,10 @@ var deserializeAws_queryDescribeDBLogFilesDetails = function (output, context) {
20912
20915
  contents.LogFileName = __expectString(output["LogFileName"]);
20913
20916
  }
20914
20917
  if (output["LastWritten"] !== undefined) {
20915
- contents.LastWritten = __strictParseInt(output["LastWritten"]);
20918
+ contents.LastWritten = __strictParseLong(output["LastWritten"]);
20916
20919
  }
20917
20920
  if (output["Size"] !== undefined) {
20918
- contents.Size = __strictParseInt(output["Size"]);
20921
+ contents.Size = __strictParseLong(output["Size"]);
20919
20922
  }
20920
20923
  return contents;
20921
20924
  };
@@ -21167,7 +21170,7 @@ var deserializeAws_queryEndpoint = function (output, context) {
21167
21170
  contents.Address = __expectString(output["Address"]);
21168
21171
  }
21169
21172
  if (output["Port"] !== undefined) {
21170
- contents.Port = __strictParseInt(output["Port"]);
21173
+ contents.Port = __strictParseInt32(output["Port"]);
21171
21174
  }
21172
21175
  if (output["HostedZoneId"] !== undefined) {
21173
21176
  contents.HostedZoneId = __expectString(output["HostedZoneId"]);
@@ -21229,7 +21232,7 @@ var deserializeAws_queryEvent = function (output, context) {
21229
21232
  contents.EventCategories = deserializeAws_queryEventCategoriesList(__getArrayIfSingleItem(output["EventCategories"]["EventCategory"]), context);
21230
21233
  }
21231
21234
  if (output["Date"] !== undefined) {
21232
- contents.Date = new Date(output["Date"]);
21235
+ contents.Date = __expectNonNull(__parseRfc3339DateTime(output["Date"]));
21233
21236
  }
21234
21237
  if (output["SourceArn"] !== undefined) {
21235
21238
  contents.SourceArn = __expectString(output["SourceArn"]);
@@ -21429,13 +21432,13 @@ var deserializeAws_queryExportTask = function (output, context) {
21429
21432
  contents.ExportOnly = deserializeAws_queryStringList(__getArrayIfSingleItem(output["ExportOnly"]["member"]), context);
21430
21433
  }
21431
21434
  if (output["SnapshotTime"] !== undefined) {
21432
- contents.SnapshotTime = new Date(output["SnapshotTime"]);
21435
+ contents.SnapshotTime = __expectNonNull(__parseRfc3339DateTime(output["SnapshotTime"]));
21433
21436
  }
21434
21437
  if (output["TaskStartTime"] !== undefined) {
21435
- contents.TaskStartTime = new Date(output["TaskStartTime"]);
21438
+ contents.TaskStartTime = __expectNonNull(__parseRfc3339DateTime(output["TaskStartTime"]));
21436
21439
  }
21437
21440
  if (output["TaskEndTime"] !== undefined) {
21438
- contents.TaskEndTime = new Date(output["TaskEndTime"]);
21441
+ contents.TaskEndTime = __expectNonNull(__parseRfc3339DateTime(output["TaskEndTime"]));
21439
21442
  }
21440
21443
  if (output["S3Bucket"] !== undefined) {
21441
21444
  contents.S3Bucket = __expectString(output["S3Bucket"]);
@@ -21453,10 +21456,10 @@ var deserializeAws_queryExportTask = function (output, context) {
21453
21456
  contents.Status = __expectString(output["Status"]);
21454
21457
  }
21455
21458
  if (output["PercentProgress"] !== undefined) {
21456
- contents.PercentProgress = __strictParseInt(output["PercentProgress"]);
21459
+ contents.PercentProgress = __strictParseInt32(output["PercentProgress"]);
21457
21460
  }
21458
21461
  if (output["TotalExtractedDataInGB"] !== undefined) {
21459
- contents.TotalExtractedDataInGB = __strictParseInt(output["TotalExtractedDataInGB"]);
21462
+ contents.TotalExtractedDataInGB = __strictParseInt32(output["TotalExtractedDataInGB"]);
21460
21463
  }
21461
21464
  if (output["FailureCause"] !== undefined) {
21462
21465
  contents.FailureCause = __expectString(output["FailureCause"]);
@@ -22271,7 +22274,7 @@ var deserializeAws_queryOption = function (output, context) {
22271
22274
  contents.Permanent = __parseBoolean(output["Permanent"]);
22272
22275
  }
22273
22276
  if (output["Port"] !== undefined) {
22274
- contents.Port = __strictParseInt(output["Port"]);
22277
+ contents.Port = __strictParseInt32(output["Port"]);
22275
22278
  }
22276
22279
  if (output["OptionVersion"] !== undefined) {
22277
22280
  contents.OptionVersion = __expectString(output["OptionVersion"]);
@@ -22417,7 +22420,7 @@ var deserializeAws_queryOptionGroupOption = function (output, context) {
22417
22420
  contents.PortRequired = __parseBoolean(output["PortRequired"]);
22418
22421
  }
22419
22422
  if (output["DefaultPort"] !== undefined) {
22420
- contents.DefaultPort = __strictParseInt(output["DefaultPort"]);
22423
+ contents.DefaultPort = __strictParseInt32(output["DefaultPort"]);
22421
22424
  }
22422
22425
  if (output.OptionsDependedOn === "") {
22423
22426
  contents.OptionsDependedOn = [];
@@ -22759,16 +22762,16 @@ var deserializeAws_queryOrderableDBInstanceOption = function (output, context) {
22759
22762
  contents.SupportsPerformanceInsights = __parseBoolean(output["SupportsPerformanceInsights"]);
22760
22763
  }
22761
22764
  if (output["MinStorageSize"] !== undefined) {
22762
- contents.MinStorageSize = __strictParseInt(output["MinStorageSize"]);
22765
+ contents.MinStorageSize = __strictParseInt32(output["MinStorageSize"]);
22763
22766
  }
22764
22767
  if (output["MaxStorageSize"] !== undefined) {
22765
- contents.MaxStorageSize = __strictParseInt(output["MaxStorageSize"]);
22768
+ contents.MaxStorageSize = __strictParseInt32(output["MaxStorageSize"]);
22766
22769
  }
22767
22770
  if (output["MinIopsPerDbInstance"] !== undefined) {
22768
- contents.MinIopsPerDbInstance = __strictParseInt(output["MinIopsPerDbInstance"]);
22771
+ contents.MinIopsPerDbInstance = __strictParseInt32(output["MinIopsPerDbInstance"]);
22769
22772
  }
22770
22773
  if (output["MaxIopsPerDbInstance"] !== undefined) {
22771
- contents.MaxIopsPerDbInstance = __strictParseInt(output["MaxIopsPerDbInstance"]);
22774
+ contents.MaxIopsPerDbInstance = __strictParseInt32(output["MaxIopsPerDbInstance"]);
22772
22775
  }
22773
22776
  if (output["MinIopsPerGib"] !== undefined) {
22774
22777
  contents.MinIopsPerGib = __strictParseFloat(output["MinIopsPerGib"]);
@@ -22940,16 +22943,16 @@ var deserializeAws_queryPendingMaintenanceAction = function (output, context) {
22940
22943
  contents.Action = __expectString(output["Action"]);
22941
22944
  }
22942
22945
  if (output["AutoAppliedAfterDate"] !== undefined) {
22943
- contents.AutoAppliedAfterDate = new Date(output["AutoAppliedAfterDate"]);
22946
+ contents.AutoAppliedAfterDate = __expectNonNull(__parseRfc3339DateTime(output["AutoAppliedAfterDate"]));
22944
22947
  }
22945
22948
  if (output["ForcedApplyDate"] !== undefined) {
22946
- contents.ForcedApplyDate = new Date(output["ForcedApplyDate"]);
22949
+ contents.ForcedApplyDate = __expectNonNull(__parseRfc3339DateTime(output["ForcedApplyDate"]));
22947
22950
  }
22948
22951
  if (output["OptInStatus"] !== undefined) {
22949
22952
  contents.OptInStatus = __expectString(output["OptInStatus"]);
22950
22953
  }
22951
22954
  if (output["CurrentApplyDate"] !== undefined) {
22952
- contents.CurrentApplyDate = new Date(output["CurrentApplyDate"]);
22955
+ contents.CurrentApplyDate = __expectNonNull(__parseRfc3339DateTime(output["CurrentApplyDate"]));
22953
22956
  }
22954
22957
  if (output["Description"] !== undefined) {
22955
22958
  contents.Description = __expectString(output["Description"]);
@@ -23016,16 +23019,16 @@ var deserializeAws_queryPendingModifiedValues = function (output, context) {
23016
23019
  contents.DBInstanceClass = __expectString(output["DBInstanceClass"]);
23017
23020
  }
23018
23021
  if (output["AllocatedStorage"] !== undefined) {
23019
- contents.AllocatedStorage = __strictParseInt(output["AllocatedStorage"]);
23022
+ contents.AllocatedStorage = __strictParseInt32(output["AllocatedStorage"]);
23020
23023
  }
23021
23024
  if (output["MasterUserPassword"] !== undefined) {
23022
23025
  contents.MasterUserPassword = __expectString(output["MasterUserPassword"]);
23023
23026
  }
23024
23027
  if (output["Port"] !== undefined) {
23025
- contents.Port = __strictParseInt(output["Port"]);
23028
+ contents.Port = __strictParseInt32(output["Port"]);
23026
23029
  }
23027
23030
  if (output["BackupRetentionPeriod"] !== undefined) {
23028
- contents.BackupRetentionPeriod = __strictParseInt(output["BackupRetentionPeriod"]);
23031
+ contents.BackupRetentionPeriod = __strictParseInt32(output["BackupRetentionPeriod"]);
23029
23032
  }
23030
23033
  if (output["MultiAZ"] !== undefined) {
23031
23034
  contents.MultiAZ = __parseBoolean(output["MultiAZ"]);
@@ -23037,7 +23040,7 @@ var deserializeAws_queryPendingModifiedValues = function (output, context) {
23037
23040
  contents.LicenseModel = __expectString(output["LicenseModel"]);
23038
23041
  }
23039
23042
  if (output["Iops"] !== undefined) {
23040
- contents.Iops = __strictParseInt(output["Iops"]);
23043
+ contents.Iops = __strictParseInt32(output["Iops"]);
23041
23044
  }
23042
23045
  if (output["DBInstanceIdentifier"] !== undefined) {
23043
23046
  contents.DBInstanceIdentifier = __expectString(output["DBInstanceIdentifier"]);
@@ -23140,13 +23143,13 @@ var deserializeAws_queryRange = function (output, context) {
23140
23143
  Step: undefined,
23141
23144
  };
23142
23145
  if (output["From"] !== undefined) {
23143
- contents.From = __strictParseInt(output["From"]);
23146
+ contents.From = __strictParseInt32(output["From"]);
23144
23147
  }
23145
23148
  if (output["To"] !== undefined) {
23146
- contents.To = __strictParseInt(output["To"]);
23149
+ contents.To = __strictParseInt32(output["To"]);
23147
23150
  }
23148
23151
  if (output["Step"] !== undefined) {
23149
- contents.Step = __strictParseInt(output["Step"]);
23152
+ contents.Step = __strictParseInt32(output["Step"]);
23150
23153
  }
23151
23154
  return contents;
23152
23155
  };
@@ -23291,10 +23294,10 @@ var deserializeAws_queryReservedDBInstance = function (output, context) {
23291
23294
  contents.DBInstanceClass = __expectString(output["DBInstanceClass"]);
23292
23295
  }
23293
23296
  if (output["StartTime"] !== undefined) {
23294
- contents.StartTime = new Date(output["StartTime"]);
23297
+ contents.StartTime = __expectNonNull(__parseRfc3339DateTime(output["StartTime"]));
23295
23298
  }
23296
23299
  if (output["Duration"] !== undefined) {
23297
- contents.Duration = __strictParseInt(output["Duration"]);
23300
+ contents.Duration = __strictParseInt32(output["Duration"]);
23298
23301
  }
23299
23302
  if (output["FixedPrice"] !== undefined) {
23300
23303
  contents.FixedPrice = __strictParseFloat(output["FixedPrice"]);
@@ -23306,7 +23309,7 @@ var deserializeAws_queryReservedDBInstance = function (output, context) {
23306
23309
  contents.CurrencyCode = __expectString(output["CurrencyCode"]);
23307
23310
  }
23308
23311
  if (output["DBInstanceCount"] !== undefined) {
23309
- contents.DBInstanceCount = __strictParseInt(output["DBInstanceCount"]);
23312
+ contents.DBInstanceCount = __strictParseInt32(output["DBInstanceCount"]);
23310
23313
  }
23311
23314
  if (output["ProductDescription"] !== undefined) {
23312
23315
  contents.ProductDescription = __expectString(output["ProductDescription"]);
@@ -23408,7 +23411,7 @@ var deserializeAws_queryReservedDBInstancesOffering = function (output, context)
23408
23411
  contents.DBInstanceClass = __expectString(output["DBInstanceClass"]);
23409
23412
  }
23410
23413
  if (output["Duration"] !== undefined) {
23411
- contents.Duration = __strictParseInt(output["Duration"]);
23414
+ contents.Duration = __strictParseInt32(output["Duration"]);
23412
23415
  }
23413
23416
  if (output["FixedPrice"] !== undefined) {
23414
23417
  contents.FixedPrice = __strictParseFloat(output["FixedPrice"]);
@@ -23558,10 +23561,10 @@ var deserializeAws_queryRestoreWindow = function (output, context) {
23558
23561
  LatestTime: undefined,
23559
23562
  };
23560
23563
  if (output["EarliestTime"] !== undefined) {
23561
- contents.EarliestTime = new Date(output["EarliestTime"]);
23564
+ contents.EarliestTime = __expectNonNull(__parseRfc3339DateTime(output["EarliestTime"]));
23562
23565
  }
23563
23566
  if (output["LatestTime"] !== undefined) {
23564
- contents.LatestTime = new Date(output["LatestTime"]);
23567
+ contents.LatestTime = __expectNonNull(__parseRfc3339DateTime(output["LatestTime"]));
23565
23568
  }
23566
23569
  return contents;
23567
23570
  };
@@ -23581,22 +23584,26 @@ var deserializeAws_queryScalingConfigurationInfo = function (output, context) {
23581
23584
  AutoPause: undefined,
23582
23585
  SecondsUntilAutoPause: undefined,
23583
23586
  TimeoutAction: undefined,
23587
+ SecondsBeforeTimeout: undefined,
23584
23588
  };
23585
23589
  if (output["MinCapacity"] !== undefined) {
23586
- contents.MinCapacity = __strictParseInt(output["MinCapacity"]);
23590
+ contents.MinCapacity = __strictParseInt32(output["MinCapacity"]);
23587
23591
  }
23588
23592
  if (output["MaxCapacity"] !== undefined) {
23589
- contents.MaxCapacity = __strictParseInt(output["MaxCapacity"]);
23593
+ contents.MaxCapacity = __strictParseInt32(output["MaxCapacity"]);
23590
23594
  }
23591
23595
  if (output["AutoPause"] !== undefined) {
23592
23596
  contents.AutoPause = __parseBoolean(output["AutoPause"]);
23593
23597
  }
23594
23598
  if (output["SecondsUntilAutoPause"] !== undefined) {
23595
- contents.SecondsUntilAutoPause = __strictParseInt(output["SecondsUntilAutoPause"]);
23599
+ contents.SecondsUntilAutoPause = __strictParseInt32(output["SecondsUntilAutoPause"]);
23596
23600
  }
23597
23601
  if (output["TimeoutAction"] !== undefined) {
23598
23602
  contents.TimeoutAction = __expectString(output["TimeoutAction"]);
23599
23603
  }
23604
+ if (output["SecondsBeforeTimeout"] !== undefined) {
23605
+ contents.SecondsBeforeTimeout = __strictParseInt32(output["SecondsBeforeTimeout"]);
23606
+ }
23600
23607
  return contents;
23601
23608
  };
23602
23609
  var deserializeAws_querySharedSnapshotQuotaExceededFault = function (output, context) {