@aws-sdk/client-sagemaker 3.241.0 → 3.252.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.
@@ -13665,7 +13665,7 @@ const serializeAws_json1_1CreateTransformJobRequest = (input, context) => {
13665
13665
  const serializeAws_json1_1CreateTrialComponentRequest = (input, context) => {
13666
13666
  return {
13667
13667
  ...(input.DisplayName != null && { DisplayName: input.DisplayName }),
13668
- ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
13668
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
13669
13669
  ...(input.InputArtifacts != null && {
13670
13670
  InputArtifacts: serializeAws_json1_1TrialComponentArtifacts(input.InputArtifacts, context),
13671
13671
  }),
@@ -13678,7 +13678,7 @@ const serializeAws_json1_1CreateTrialComponentRequest = (input, context) => {
13678
13678
  ...(input.Parameters != null && {
13679
13679
  Parameters: serializeAws_json1_1TrialComponentParameters(input.Parameters, context),
13680
13680
  }),
13681
- ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
13681
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
13682
13682
  ...(input.Status != null && { Status: serializeAws_json1_1TrialComponentStatus(input.Status, context) }),
13683
13683
  ...(input.Tags != null && { Tags: serializeAws_json1_1TagList(input.Tags, context) }),
13684
13684
  ...(input.TrialComponentName != null && { TrialComponentName: input.TrialComponentName }),
@@ -15179,8 +15179,8 @@ const serializeAws_json1_1InferenceExperimentDataStorageConfig = (input, context
15179
15179
  };
15180
15180
  const serializeAws_json1_1InferenceExperimentSchedule = (input, context) => {
15181
15181
  return {
15182
- ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
15183
- ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
15182
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
15183
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
15184
15184
  };
15185
15185
  };
15186
15186
  const serializeAws_json1_1InferenceSpecification = (input, context) => {
@@ -15415,8 +15415,8 @@ const serializeAws_json1_1LineageEntityParameters = (input, context) => {
15415
15415
  const serializeAws_json1_1ListActionsRequest = (input, context) => {
15416
15416
  return {
15417
15417
  ...(input.ActionType != null && { ActionType: input.ActionType }),
15418
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
15419
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
15418
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
15419
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
15420
15420
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15421
15421
  ...(input.NextToken != null && { NextToken: input.NextToken }),
15422
15422
  ...(input.SortBy != null && { SortBy: input.SortBy }),
@@ -15426,9 +15426,11 @@ const serializeAws_json1_1ListActionsRequest = (input, context) => {
15426
15426
  };
15427
15427
  const serializeAws_json1_1ListAlgorithmsInput = (input, context) => {
15428
15428
  return {
15429
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15429
+ ...(input.CreationTimeAfter != null && {
15430
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15431
+ }),
15430
15432
  ...(input.CreationTimeBefore != null && {
15431
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15433
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15432
15434
  }),
15433
15435
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15434
15436
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15448,14 +15450,18 @@ const serializeAws_json1_1ListAliasesRequest = (input, context) => {
15448
15450
  };
15449
15451
  const serializeAws_json1_1ListAppImageConfigsRequest = (input, context) => {
15450
15452
  return {
15451
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15453
+ ...(input.CreationTimeAfter != null && {
15454
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15455
+ }),
15452
15456
  ...(input.CreationTimeBefore != null && {
15453
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15457
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15454
15458
  }),
15455
15459
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15456
- ...(input.ModifiedTimeAfter != null && { ModifiedTimeAfter: Math.round(input.ModifiedTimeAfter.getTime() / 1000) }),
15460
+ ...(input.ModifiedTimeAfter != null && {
15461
+ ModifiedTimeAfter: Math.round(input.ModifiedTimeAfter.getTime() / 1000).toString(),
15462
+ }),
15457
15463
  ...(input.ModifiedTimeBefore != null && {
15458
- ModifiedTimeBefore: Math.round(input.ModifiedTimeBefore.getTime() / 1000),
15464
+ ModifiedTimeBefore: Math.round(input.ModifiedTimeBefore.getTime() / 1000).toString(),
15459
15465
  }),
15460
15466
  ...(input.NameContains != null && { NameContains: input.NameContains }),
15461
15467
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -15477,8 +15483,8 @@ const serializeAws_json1_1ListAppsRequest = (input, context) => {
15477
15483
  const serializeAws_json1_1ListArtifactsRequest = (input, context) => {
15478
15484
  return {
15479
15485
  ...(input.ArtifactType != null && { ArtifactType: input.ArtifactType }),
15480
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
15481
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
15486
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
15487
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
15482
15488
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15483
15489
  ...(input.NextToken != null && { NextToken: input.NextToken }),
15484
15490
  ...(input.SortBy != null && { SortBy: input.SortBy }),
@@ -15489,8 +15495,8 @@ const serializeAws_json1_1ListArtifactsRequest = (input, context) => {
15489
15495
  const serializeAws_json1_1ListAssociationsRequest = (input, context) => {
15490
15496
  return {
15491
15497
  ...(input.AssociationType != null && { AssociationType: input.AssociationType }),
15492
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
15493
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
15498
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
15499
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
15494
15500
  ...(input.DestinationArn != null && { DestinationArn: input.DestinationArn }),
15495
15501
  ...(input.DestinationType != null && { DestinationType: input.DestinationType }),
15496
15502
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -15503,15 +15509,17 @@ const serializeAws_json1_1ListAssociationsRequest = (input, context) => {
15503
15509
  };
15504
15510
  const serializeAws_json1_1ListAutoMLJobsRequest = (input, context) => {
15505
15511
  return {
15506
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15512
+ ...(input.CreationTimeAfter != null && {
15513
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15514
+ }),
15507
15515
  ...(input.CreationTimeBefore != null && {
15508
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15516
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15509
15517
  }),
15510
15518
  ...(input.LastModifiedTimeAfter != null && {
15511
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15519
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15512
15520
  }),
15513
15521
  ...(input.LastModifiedTimeBefore != null && {
15514
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15522
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15515
15523
  }),
15516
15524
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15517
15525
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15534,15 +15542,17 @@ const serializeAws_json1_1ListCandidatesForAutoMLJobRequest = (input, context) =
15534
15542
  };
15535
15543
  const serializeAws_json1_1ListCodeRepositoriesInput = (input, context) => {
15536
15544
  return {
15537
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15545
+ ...(input.CreationTimeAfter != null && {
15546
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15547
+ }),
15538
15548
  ...(input.CreationTimeBefore != null && {
15539
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15549
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15540
15550
  }),
15541
15551
  ...(input.LastModifiedTimeAfter != null && {
15542
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15552
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15543
15553
  }),
15544
15554
  ...(input.LastModifiedTimeBefore != null && {
15545
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15555
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15546
15556
  }),
15547
15557
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15548
15558
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15553,15 +15563,17 @@ const serializeAws_json1_1ListCodeRepositoriesInput = (input, context) => {
15553
15563
  };
15554
15564
  const serializeAws_json1_1ListCompilationJobsRequest = (input, context) => {
15555
15565
  return {
15556
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15566
+ ...(input.CreationTimeAfter != null && {
15567
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15568
+ }),
15557
15569
  ...(input.CreationTimeBefore != null && {
15558
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15570
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15559
15571
  }),
15560
15572
  ...(input.LastModifiedTimeAfter != null && {
15561
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15573
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15562
15574
  }),
15563
15575
  ...(input.LastModifiedTimeBefore != null && {
15564
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15576
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15565
15577
  }),
15566
15578
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15567
15579
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15574,8 +15586,8 @@ const serializeAws_json1_1ListCompilationJobsRequest = (input, context) => {
15574
15586
  const serializeAws_json1_1ListContextsRequest = (input, context) => {
15575
15587
  return {
15576
15588
  ...(input.ContextType != null && { ContextType: input.ContextType }),
15577
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
15578
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
15589
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
15590
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
15579
15591
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15580
15592
  ...(input.NextToken != null && { NextToken: input.NextToken }),
15581
15593
  ...(input.SortBy != null && { SortBy: input.SortBy }),
@@ -15585,9 +15597,11 @@ const serializeAws_json1_1ListContextsRequest = (input, context) => {
15585
15597
  };
15586
15598
  const serializeAws_json1_1ListDataQualityJobDefinitionsRequest = (input, context) => {
15587
15599
  return {
15588
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15600
+ ...(input.CreationTimeAfter != null && {
15601
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15602
+ }),
15589
15603
  ...(input.CreationTimeBefore != null && {
15590
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15604
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15591
15605
  }),
15592
15606
  ...(input.EndpointName != null && { EndpointName: input.EndpointName }),
15593
15607
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -15599,15 +15613,17 @@ const serializeAws_json1_1ListDataQualityJobDefinitionsRequest = (input, context
15599
15613
  };
15600
15614
  const serializeAws_json1_1ListDeviceFleetsRequest = (input, context) => {
15601
15615
  return {
15602
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15616
+ ...(input.CreationTimeAfter != null && {
15617
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15618
+ }),
15603
15619
  ...(input.CreationTimeBefore != null && {
15604
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15620
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15605
15621
  }),
15606
15622
  ...(input.LastModifiedTimeAfter != null && {
15607
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15623
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15608
15624
  }),
15609
15625
  ...(input.LastModifiedTimeBefore != null && {
15610
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15626
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15611
15627
  }),
15612
15628
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15613
15629
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15620,7 +15636,7 @@ const serializeAws_json1_1ListDevicesRequest = (input, context) => {
15620
15636
  return {
15621
15637
  ...(input.DeviceFleetName != null && { DeviceFleetName: input.DeviceFleetName }),
15622
15638
  ...(input.LatestHeartbeatAfter != null && {
15623
- LatestHeartbeatAfter: Math.round(input.LatestHeartbeatAfter.getTime() / 1000),
15639
+ LatestHeartbeatAfter: Math.round(input.LatestHeartbeatAfter.getTime() / 1000).toString(),
15624
15640
  }),
15625
15641
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15626
15642
  ...(input.ModelName != null && { ModelName: input.ModelName }),
@@ -15635,16 +15651,18 @@ const serializeAws_json1_1ListDomainsRequest = (input, context) => {
15635
15651
  };
15636
15652
  const serializeAws_json1_1ListEdgeDeploymentPlansRequest = (input, context) => {
15637
15653
  return {
15638
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15654
+ ...(input.CreationTimeAfter != null && {
15655
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15656
+ }),
15639
15657
  ...(input.CreationTimeBefore != null && {
15640
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15658
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15641
15659
  }),
15642
15660
  ...(input.DeviceFleetNameContains != null && { DeviceFleetNameContains: input.DeviceFleetNameContains }),
15643
15661
  ...(input.LastModifiedTimeAfter != null && {
15644
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15662
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15645
15663
  }),
15646
15664
  ...(input.LastModifiedTimeBefore != null && {
15647
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15665
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15648
15666
  }),
15649
15667
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15650
15668
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15655,15 +15673,17 @@ const serializeAws_json1_1ListEdgeDeploymentPlansRequest = (input, context) => {
15655
15673
  };
15656
15674
  const serializeAws_json1_1ListEdgePackagingJobsRequest = (input, context) => {
15657
15675
  return {
15658
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15676
+ ...(input.CreationTimeAfter != null && {
15677
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15678
+ }),
15659
15679
  ...(input.CreationTimeBefore != null && {
15660
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15680
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15661
15681
  }),
15662
15682
  ...(input.LastModifiedTimeAfter != null && {
15663
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15683
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15664
15684
  }),
15665
15685
  ...(input.LastModifiedTimeBefore != null && {
15666
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15686
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15667
15687
  }),
15668
15688
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15669
15689
  ...(input.ModelNameContains != null && { ModelNameContains: input.ModelNameContains }),
@@ -15676,9 +15696,11 @@ const serializeAws_json1_1ListEdgePackagingJobsRequest = (input, context) => {
15676
15696
  };
15677
15697
  const serializeAws_json1_1ListEndpointConfigsInput = (input, context) => {
15678
15698
  return {
15679
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15699
+ ...(input.CreationTimeAfter != null && {
15700
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15701
+ }),
15680
15702
  ...(input.CreationTimeBefore != null && {
15681
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15703
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15682
15704
  }),
15683
15705
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15684
15706
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15689,15 +15711,17 @@ const serializeAws_json1_1ListEndpointConfigsInput = (input, context) => {
15689
15711
  };
15690
15712
  const serializeAws_json1_1ListEndpointsInput = (input, context) => {
15691
15713
  return {
15692
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15714
+ ...(input.CreationTimeAfter != null && {
15715
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15716
+ }),
15693
15717
  ...(input.CreationTimeBefore != null && {
15694
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15718
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15695
15719
  }),
15696
15720
  ...(input.LastModifiedTimeAfter != null && {
15697
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15721
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15698
15722
  }),
15699
15723
  ...(input.LastModifiedTimeBefore != null && {
15700
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15724
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15701
15725
  }),
15702
15726
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15703
15727
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15709,8 +15733,8 @@ const serializeAws_json1_1ListEndpointsInput = (input, context) => {
15709
15733
  };
15710
15734
  const serializeAws_json1_1ListExperimentsRequest = (input, context) => {
15711
15735
  return {
15712
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
15713
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
15736
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
15737
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
15714
15738
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15715
15739
  ...(input.NextToken != null && { NextToken: input.NextToken }),
15716
15740
  ...(input.SortBy != null && { SortBy: input.SortBy }),
@@ -15719,9 +15743,11 @@ const serializeAws_json1_1ListExperimentsRequest = (input, context) => {
15719
15743
  };
15720
15744
  const serializeAws_json1_1ListFeatureGroupsRequest = (input, context) => {
15721
15745
  return {
15722
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15746
+ ...(input.CreationTimeAfter != null && {
15747
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15748
+ }),
15723
15749
  ...(input.CreationTimeBefore != null && {
15724
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15750
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15725
15751
  }),
15726
15752
  ...(input.FeatureGroupStatusEquals != null && { FeatureGroupStatusEquals: input.FeatureGroupStatusEquals }),
15727
15753
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -15734,9 +15760,11 @@ const serializeAws_json1_1ListFeatureGroupsRequest = (input, context) => {
15734
15760
  };
15735
15761
  const serializeAws_json1_1ListFlowDefinitionsRequest = (input, context) => {
15736
15762
  return {
15737
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15763
+ ...(input.CreationTimeAfter != null && {
15764
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15765
+ }),
15738
15766
  ...(input.CreationTimeBefore != null && {
15739
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15767
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15740
15768
  }),
15741
15769
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15742
15770
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -15745,9 +15773,11 @@ const serializeAws_json1_1ListFlowDefinitionsRequest = (input, context) => {
15745
15773
  };
15746
15774
  const serializeAws_json1_1ListHubContentsRequest = (input, context) => {
15747
15775
  return {
15748
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15776
+ ...(input.CreationTimeAfter != null && {
15777
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15778
+ }),
15749
15779
  ...(input.CreationTimeBefore != null && {
15750
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15780
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15751
15781
  }),
15752
15782
  ...(input.HubContentType != null && { HubContentType: input.HubContentType }),
15753
15783
  ...(input.HubName != null && { HubName: input.HubName }),
@@ -15761,9 +15791,11 @@ const serializeAws_json1_1ListHubContentsRequest = (input, context) => {
15761
15791
  };
15762
15792
  const serializeAws_json1_1ListHubContentVersionsRequest = (input, context) => {
15763
15793
  return {
15764
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15794
+ ...(input.CreationTimeAfter != null && {
15795
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15796
+ }),
15765
15797
  ...(input.CreationTimeBefore != null && {
15766
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15798
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15767
15799
  }),
15768
15800
  ...(input.HubContentName != null && { HubContentName: input.HubContentName }),
15769
15801
  ...(input.HubContentType != null && { HubContentType: input.HubContentType }),
@@ -15778,15 +15810,17 @@ const serializeAws_json1_1ListHubContentVersionsRequest = (input, context) => {
15778
15810
  };
15779
15811
  const serializeAws_json1_1ListHubsRequest = (input, context) => {
15780
15812
  return {
15781
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15813
+ ...(input.CreationTimeAfter != null && {
15814
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15815
+ }),
15782
15816
  ...(input.CreationTimeBefore != null && {
15783
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15817
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15784
15818
  }),
15785
15819
  ...(input.LastModifiedTimeAfter != null && {
15786
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15820
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15787
15821
  }),
15788
15822
  ...(input.LastModifiedTimeBefore != null && {
15789
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15823
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15790
15824
  }),
15791
15825
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15792
15826
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15797,9 +15831,11 @@ const serializeAws_json1_1ListHubsRequest = (input, context) => {
15797
15831
  };
15798
15832
  const serializeAws_json1_1ListHumanTaskUisRequest = (input, context) => {
15799
15833
  return {
15800
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15834
+ ...(input.CreationTimeAfter != null && {
15835
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15836
+ }),
15801
15837
  ...(input.CreationTimeBefore != null && {
15802
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15838
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15803
15839
  }),
15804
15840
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15805
15841
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -15808,15 +15844,17 @@ const serializeAws_json1_1ListHumanTaskUisRequest = (input, context) => {
15808
15844
  };
15809
15845
  const serializeAws_json1_1ListHyperParameterTuningJobsRequest = (input, context) => {
15810
15846
  return {
15811
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15847
+ ...(input.CreationTimeAfter != null && {
15848
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15849
+ }),
15812
15850
  ...(input.CreationTimeBefore != null && {
15813
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15851
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15814
15852
  }),
15815
15853
  ...(input.LastModifiedTimeAfter != null && {
15816
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15854
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15817
15855
  }),
15818
15856
  ...(input.LastModifiedTimeBefore != null && {
15819
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15857
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15820
15858
  }),
15821
15859
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15822
15860
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15828,15 +15866,17 @@ const serializeAws_json1_1ListHyperParameterTuningJobsRequest = (input, context)
15828
15866
  };
15829
15867
  const serializeAws_json1_1ListImagesRequest = (input, context) => {
15830
15868
  return {
15831
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15869
+ ...(input.CreationTimeAfter != null && {
15870
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15871
+ }),
15832
15872
  ...(input.CreationTimeBefore != null && {
15833
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15873
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15834
15874
  }),
15835
15875
  ...(input.LastModifiedTimeAfter != null && {
15836
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15876
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15837
15877
  }),
15838
15878
  ...(input.LastModifiedTimeBefore != null && {
15839
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15879
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15840
15880
  }),
15841
15881
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15842
15882
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15847,16 +15887,18 @@ const serializeAws_json1_1ListImagesRequest = (input, context) => {
15847
15887
  };
15848
15888
  const serializeAws_json1_1ListImageVersionsRequest = (input, context) => {
15849
15889
  return {
15850
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15890
+ ...(input.CreationTimeAfter != null && {
15891
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15892
+ }),
15851
15893
  ...(input.CreationTimeBefore != null && {
15852
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15894
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15853
15895
  }),
15854
15896
  ...(input.ImageName != null && { ImageName: input.ImageName }),
15855
15897
  ...(input.LastModifiedTimeAfter != null && {
15856
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15898
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15857
15899
  }),
15858
15900
  ...(input.LastModifiedTimeBefore != null && {
15859
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15901
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15860
15902
  }),
15861
15903
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15862
15904
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -15866,15 +15908,17 @@ const serializeAws_json1_1ListImageVersionsRequest = (input, context) => {
15866
15908
  };
15867
15909
  const serializeAws_json1_1ListInferenceExperimentsRequest = (input, context) => {
15868
15910
  return {
15869
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15911
+ ...(input.CreationTimeAfter != null && {
15912
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15913
+ }),
15870
15914
  ...(input.CreationTimeBefore != null && {
15871
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15915
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15872
15916
  }),
15873
15917
  ...(input.LastModifiedTimeAfter != null && {
15874
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15918
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15875
15919
  }),
15876
15920
  ...(input.LastModifiedTimeBefore != null && {
15877
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15921
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15878
15922
  }),
15879
15923
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15880
15924
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15887,15 +15931,17 @@ const serializeAws_json1_1ListInferenceExperimentsRequest = (input, context) =>
15887
15931
  };
15888
15932
  const serializeAws_json1_1ListInferenceRecommendationsJobsRequest = (input, context) => {
15889
15933
  return {
15890
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15934
+ ...(input.CreationTimeAfter != null && {
15935
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15936
+ }),
15891
15937
  ...(input.CreationTimeBefore != null && {
15892
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15938
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15893
15939
  }),
15894
15940
  ...(input.LastModifiedTimeAfter != null && {
15895
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15941
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15896
15942
  }),
15897
15943
  ...(input.LastModifiedTimeBefore != null && {
15898
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15944
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15899
15945
  }),
15900
15946
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15901
15947
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15916,9 +15962,11 @@ const serializeAws_json1_1ListInferenceRecommendationsJobStepsRequest = (input,
15916
15962
  };
15917
15963
  const serializeAws_json1_1ListLabelingJobsForWorkteamRequest = (input, context) => {
15918
15964
  return {
15919
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15965
+ ...(input.CreationTimeAfter != null && {
15966
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15967
+ }),
15920
15968
  ...(input.CreationTimeBefore != null && {
15921
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15969
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15922
15970
  }),
15923
15971
  ...(input.JobReferenceCodeContains != null && { JobReferenceCodeContains: input.JobReferenceCodeContains }),
15924
15972
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -15930,15 +15978,17 @@ const serializeAws_json1_1ListLabelingJobsForWorkteamRequest = (input, context)
15930
15978
  };
15931
15979
  const serializeAws_json1_1ListLabelingJobsRequest = (input, context) => {
15932
15980
  return {
15933
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15981
+ ...(input.CreationTimeAfter != null && {
15982
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15983
+ }),
15934
15984
  ...(input.CreationTimeBefore != null && {
15935
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15985
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15936
15986
  }),
15937
15987
  ...(input.LastModifiedTimeAfter != null && {
15938
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15988
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15939
15989
  }),
15940
15990
  ...(input.LastModifiedTimeBefore != null && {
15941
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15991
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15942
15992
  }),
15943
15993
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15944
15994
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15957,8 +16007,8 @@ const serializeAws_json1_1ListLineageEntityParameterKey = (input, context) => {
15957
16007
  };
15958
16008
  const serializeAws_json1_1ListLineageGroupsRequest = (input, context) => {
15959
16009
  return {
15960
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
15961
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16010
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16011
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
15962
16012
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15963
16013
  ...(input.NextToken != null && { NextToken: input.NextToken }),
15964
16014
  ...(input.SortBy != null && { SortBy: input.SortBy }),
@@ -15967,9 +16017,11 @@ const serializeAws_json1_1ListLineageGroupsRequest = (input, context) => {
15967
16017
  };
15968
16018
  const serializeAws_json1_1ListModelBiasJobDefinitionsRequest = (input, context) => {
15969
16019
  return {
15970
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16020
+ ...(input.CreationTimeAfter != null && {
16021
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16022
+ }),
15971
16023
  ...(input.CreationTimeBefore != null && {
15972
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16024
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15973
16025
  }),
15974
16026
  ...(input.EndpointName != null && { EndpointName: input.EndpointName }),
15975
16027
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -15981,9 +16033,11 @@ const serializeAws_json1_1ListModelBiasJobDefinitionsRequest = (input, context)
15981
16033
  };
15982
16034
  const serializeAws_json1_1ListModelCardExportJobsRequest = (input, context) => {
15983
16035
  return {
15984
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16036
+ ...(input.CreationTimeAfter != null && {
16037
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16038
+ }),
15985
16039
  ...(input.CreationTimeBefore != null && {
15986
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16040
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15987
16041
  }),
15988
16042
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15989
16043
  ...(input.ModelCardExportJobNameContains != null && {
@@ -15999,9 +16053,11 @@ const serializeAws_json1_1ListModelCardExportJobsRequest = (input, context) => {
15999
16053
  };
16000
16054
  const serializeAws_json1_1ListModelCardsRequest = (input, context) => {
16001
16055
  return {
16002
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16056
+ ...(input.CreationTimeAfter != null && {
16057
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16058
+ }),
16003
16059
  ...(input.CreationTimeBefore != null && {
16004
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16060
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16005
16061
  }),
16006
16062
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16007
16063
  ...(input.ModelCardStatus != null && { ModelCardStatus: input.ModelCardStatus }),
@@ -16013,9 +16069,11 @@ const serializeAws_json1_1ListModelCardsRequest = (input, context) => {
16013
16069
  };
16014
16070
  const serializeAws_json1_1ListModelCardVersionsRequest = (input, context) => {
16015
16071
  return {
16016
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16072
+ ...(input.CreationTimeAfter != null && {
16073
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16074
+ }),
16017
16075
  ...(input.CreationTimeBefore != null && {
16018
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16076
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16019
16077
  }),
16020
16078
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16021
16079
  ...(input.ModelCardName != null && { ModelCardName: input.ModelCardName }),
@@ -16027,9 +16085,11 @@ const serializeAws_json1_1ListModelCardVersionsRequest = (input, context) => {
16027
16085
  };
16028
16086
  const serializeAws_json1_1ListModelExplainabilityJobDefinitionsRequest = (input, context) => {
16029
16087
  return {
16030
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16088
+ ...(input.CreationTimeAfter != null && {
16089
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16090
+ }),
16031
16091
  ...(input.CreationTimeBefore != null && {
16032
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16092
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16033
16093
  }),
16034
16094
  ...(input.EndpointName != null && { EndpointName: input.EndpointName }),
16035
16095
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -16050,9 +16110,11 @@ const serializeAws_json1_1ListModelMetadataRequest = (input, context) => {
16050
16110
  };
16051
16111
  const serializeAws_json1_1ListModelPackageGroupsInput = (input, context) => {
16052
16112
  return {
16053
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16113
+ ...(input.CreationTimeAfter != null && {
16114
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16115
+ }),
16054
16116
  ...(input.CreationTimeBefore != null && {
16055
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16117
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16056
16118
  }),
16057
16119
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16058
16120
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16063,9 +16125,11 @@ const serializeAws_json1_1ListModelPackageGroupsInput = (input, context) => {
16063
16125
  };
16064
16126
  const serializeAws_json1_1ListModelPackagesInput = (input, context) => {
16065
16127
  return {
16066
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16128
+ ...(input.CreationTimeAfter != null && {
16129
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16130
+ }),
16067
16131
  ...(input.CreationTimeBefore != null && {
16068
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16132
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16069
16133
  }),
16070
16134
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16071
16135
  ...(input.ModelApprovalStatus != null && { ModelApprovalStatus: input.ModelApprovalStatus }),
@@ -16079,9 +16143,11 @@ const serializeAws_json1_1ListModelPackagesInput = (input, context) => {
16079
16143
  };
16080
16144
  const serializeAws_json1_1ListModelQualityJobDefinitionsRequest = (input, context) => {
16081
16145
  return {
16082
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16146
+ ...(input.CreationTimeAfter != null && {
16147
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16148
+ }),
16083
16149
  ...(input.CreationTimeBefore != null && {
16084
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16150
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16085
16151
  }),
16086
16152
  ...(input.EndpointName != null && { EndpointName: input.EndpointName }),
16087
16153
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -16093,9 +16159,11 @@ const serializeAws_json1_1ListModelQualityJobDefinitionsRequest = (input, contex
16093
16159
  };
16094
16160
  const serializeAws_json1_1ListModelsInput = (input, context) => {
16095
16161
  return {
16096
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16162
+ ...(input.CreationTimeAfter != null && {
16163
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16164
+ }),
16097
16165
  ...(input.CreationTimeBefore != null && {
16098
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16166
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16099
16167
  }),
16100
16168
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16101
16169
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16106,9 +16174,11 @@ const serializeAws_json1_1ListModelsInput = (input, context) => {
16106
16174
  };
16107
16175
  const serializeAws_json1_1ListMonitoringAlertHistoryRequest = (input, context) => {
16108
16176
  return {
16109
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16177
+ ...(input.CreationTimeAfter != null && {
16178
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16179
+ }),
16110
16180
  ...(input.CreationTimeBefore != null && {
16111
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16181
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16112
16182
  }),
16113
16183
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16114
16184
  ...(input.MonitoringAlertName != null && { MonitoringAlertName: input.MonitoringAlertName }),
@@ -16128,16 +16198,18 @@ const serializeAws_json1_1ListMonitoringAlertsRequest = (input, context) => {
16128
16198
  };
16129
16199
  const serializeAws_json1_1ListMonitoringExecutionsRequest = (input, context) => {
16130
16200
  return {
16131
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16201
+ ...(input.CreationTimeAfter != null && {
16202
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16203
+ }),
16132
16204
  ...(input.CreationTimeBefore != null && {
16133
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16205
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16134
16206
  }),
16135
16207
  ...(input.EndpointName != null && { EndpointName: input.EndpointName }),
16136
16208
  ...(input.LastModifiedTimeAfter != null && {
16137
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16209
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16138
16210
  }),
16139
16211
  ...(input.LastModifiedTimeBefore != null && {
16140
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16212
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16141
16213
  }),
16142
16214
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16143
16215
  ...(input.MonitoringJobDefinitionName != null && {
@@ -16147,10 +16219,10 @@ const serializeAws_json1_1ListMonitoringExecutionsRequest = (input, context) =>
16147
16219
  ...(input.MonitoringTypeEquals != null && { MonitoringTypeEquals: input.MonitoringTypeEquals }),
16148
16220
  ...(input.NextToken != null && { NextToken: input.NextToken }),
16149
16221
  ...(input.ScheduledTimeAfter != null && {
16150
- ScheduledTimeAfter: Math.round(input.ScheduledTimeAfter.getTime() / 1000),
16222
+ ScheduledTimeAfter: Math.round(input.ScheduledTimeAfter.getTime() / 1000).toString(),
16151
16223
  }),
16152
16224
  ...(input.ScheduledTimeBefore != null && {
16153
- ScheduledTimeBefore: Math.round(input.ScheduledTimeBefore.getTime() / 1000),
16225
+ ScheduledTimeBefore: Math.round(input.ScheduledTimeBefore.getTime() / 1000).toString(),
16154
16226
  }),
16155
16227
  ...(input.SortBy != null && { SortBy: input.SortBy }),
16156
16228
  ...(input.SortOrder != null && { SortOrder: input.SortOrder }),
@@ -16159,16 +16231,18 @@ const serializeAws_json1_1ListMonitoringExecutionsRequest = (input, context) =>
16159
16231
  };
16160
16232
  const serializeAws_json1_1ListMonitoringSchedulesRequest = (input, context) => {
16161
16233
  return {
16162
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16234
+ ...(input.CreationTimeAfter != null && {
16235
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16236
+ }),
16163
16237
  ...(input.CreationTimeBefore != null && {
16164
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16238
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16165
16239
  }),
16166
16240
  ...(input.EndpointName != null && { EndpointName: input.EndpointName }),
16167
16241
  ...(input.LastModifiedTimeAfter != null && {
16168
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16242
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16169
16243
  }),
16170
16244
  ...(input.LastModifiedTimeBefore != null && {
16171
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16245
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16172
16246
  }),
16173
16247
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16174
16248
  ...(input.MonitoringJobDefinitionName != null && {
@@ -16184,15 +16258,17 @@ const serializeAws_json1_1ListMonitoringSchedulesRequest = (input, context) => {
16184
16258
  };
16185
16259
  const serializeAws_json1_1ListNotebookInstanceLifecycleConfigsInput = (input, context) => {
16186
16260
  return {
16187
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16261
+ ...(input.CreationTimeAfter != null && {
16262
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16263
+ }),
16188
16264
  ...(input.CreationTimeBefore != null && {
16189
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16265
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16190
16266
  }),
16191
16267
  ...(input.LastModifiedTimeAfter != null && {
16192
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16268
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16193
16269
  }),
16194
16270
  ...(input.LastModifiedTimeBefore != null && {
16195
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16271
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16196
16272
  }),
16197
16273
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16198
16274
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16206,18 +16282,20 @@ const serializeAws_json1_1ListNotebookInstancesInput = (input, context) => {
16206
16282
  ...(input.AdditionalCodeRepositoryEquals != null && {
16207
16283
  AdditionalCodeRepositoryEquals: input.AdditionalCodeRepositoryEquals,
16208
16284
  }),
16209
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16285
+ ...(input.CreationTimeAfter != null && {
16286
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16287
+ }),
16210
16288
  ...(input.CreationTimeBefore != null && {
16211
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16289
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16212
16290
  }),
16213
16291
  ...(input.DefaultCodeRepositoryContains != null && {
16214
16292
  DefaultCodeRepositoryContains: input.DefaultCodeRepositoryContains,
16215
16293
  }),
16216
16294
  ...(input.LastModifiedTimeAfter != null && {
16217
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16295
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16218
16296
  }),
16219
16297
  ...(input.LastModifiedTimeBefore != null && {
16220
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16298
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16221
16299
  }),
16222
16300
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16223
16301
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16232,8 +16310,8 @@ const serializeAws_json1_1ListNotebookInstancesInput = (input, context) => {
16232
16310
  };
16233
16311
  const serializeAws_json1_1ListPipelineExecutionsRequest = (input, context) => {
16234
16312
  return {
16235
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
16236
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16313
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16314
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
16237
16315
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16238
16316
  ...(input.NextToken != null && { NextToken: input.NextToken }),
16239
16317
  ...(input.PipelineName != null && { PipelineName: input.PipelineName }),
@@ -16258,8 +16336,8 @@ const serializeAws_json1_1ListPipelineParametersForExecutionRequest = (input, co
16258
16336
  };
16259
16337
  const serializeAws_json1_1ListPipelinesRequest = (input, context) => {
16260
16338
  return {
16261
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
16262
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16339
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16340
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
16263
16341
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16264
16342
  ...(input.NextToken != null && { NextToken: input.NextToken }),
16265
16343
  ...(input.PipelineNamePrefix != null && { PipelineNamePrefix: input.PipelineNamePrefix }),
@@ -16269,15 +16347,17 @@ const serializeAws_json1_1ListPipelinesRequest = (input, context) => {
16269
16347
  };
16270
16348
  const serializeAws_json1_1ListProcessingJobsRequest = (input, context) => {
16271
16349
  return {
16272
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16350
+ ...(input.CreationTimeAfter != null && {
16351
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16352
+ }),
16273
16353
  ...(input.CreationTimeBefore != null && {
16274
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16354
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16275
16355
  }),
16276
16356
  ...(input.LastModifiedTimeAfter != null && {
16277
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16357
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16278
16358
  }),
16279
16359
  ...(input.LastModifiedTimeBefore != null && {
16280
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16360
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16281
16361
  }),
16282
16362
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16283
16363
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16289,9 +16369,11 @@ const serializeAws_json1_1ListProcessingJobsRequest = (input, context) => {
16289
16369
  };
16290
16370
  const serializeAws_json1_1ListProjectsInput = (input, context) => {
16291
16371
  return {
16292
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16372
+ ...(input.CreationTimeAfter != null && {
16373
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16374
+ }),
16293
16375
  ...(input.CreationTimeBefore != null && {
16294
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16376
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16295
16377
  }),
16296
16378
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16297
16379
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16324,14 +16406,18 @@ const serializeAws_json1_1ListStageDevicesRequest = (input, context) => {
16324
16406
  const serializeAws_json1_1ListStudioLifecycleConfigsRequest = (input, context) => {
16325
16407
  return {
16326
16408
  ...(input.AppTypeEquals != null && { AppTypeEquals: input.AppTypeEquals }),
16327
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16409
+ ...(input.CreationTimeAfter != null && {
16410
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16411
+ }),
16328
16412
  ...(input.CreationTimeBefore != null && {
16329
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16413
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16330
16414
  }),
16331
16415
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16332
- ...(input.ModifiedTimeAfter != null && { ModifiedTimeAfter: Math.round(input.ModifiedTimeAfter.getTime() / 1000) }),
16416
+ ...(input.ModifiedTimeAfter != null && {
16417
+ ModifiedTimeAfter: Math.round(input.ModifiedTimeAfter.getTime() / 1000).toString(),
16418
+ }),
16333
16419
  ...(input.ModifiedTimeBefore != null && {
16334
- ModifiedTimeBefore: Math.round(input.ModifiedTimeBefore.getTime() / 1000),
16420
+ ModifiedTimeBefore: Math.round(input.ModifiedTimeBefore.getTime() / 1000).toString(),
16335
16421
  }),
16336
16422
  ...(input.NameContains != null && { NameContains: input.NameContains }),
16337
16423
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -16367,15 +16453,17 @@ const serializeAws_json1_1ListTrainingJobsForHyperParameterTuningJobRequest = (i
16367
16453
  };
16368
16454
  const serializeAws_json1_1ListTrainingJobsRequest = (input, context) => {
16369
16455
  return {
16370
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16456
+ ...(input.CreationTimeAfter != null && {
16457
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16458
+ }),
16371
16459
  ...(input.CreationTimeBefore != null && {
16372
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16460
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16373
16461
  }),
16374
16462
  ...(input.LastModifiedTimeAfter != null && {
16375
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16463
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16376
16464
  }),
16377
16465
  ...(input.LastModifiedTimeBefore != null && {
16378
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16466
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16379
16467
  }),
16380
16468
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16381
16469
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16388,15 +16476,17 @@ const serializeAws_json1_1ListTrainingJobsRequest = (input, context) => {
16388
16476
  };
16389
16477
  const serializeAws_json1_1ListTransformJobsRequest = (input, context) => {
16390
16478
  return {
16391
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16479
+ ...(input.CreationTimeAfter != null && {
16480
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16481
+ }),
16392
16482
  ...(input.CreationTimeBefore != null && {
16393
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16483
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16394
16484
  }),
16395
16485
  ...(input.LastModifiedTimeAfter != null && {
16396
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16486
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16397
16487
  }),
16398
16488
  ...(input.LastModifiedTimeBefore != null && {
16399
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16489
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16400
16490
  }),
16401
16491
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16402
16492
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16415,8 +16505,8 @@ const serializeAws_json1_1ListTrialComponentKey256 = (input, context) => {
16415
16505
  };
16416
16506
  const serializeAws_json1_1ListTrialComponentsRequest = (input, context) => {
16417
16507
  return {
16418
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
16419
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16508
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16509
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
16420
16510
  ...(input.ExperimentName != null && { ExperimentName: input.ExperimentName }),
16421
16511
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16422
16512
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -16428,8 +16518,8 @@ const serializeAws_json1_1ListTrialComponentsRequest = (input, context) => {
16428
16518
  };
16429
16519
  const serializeAws_json1_1ListTrialsRequest = (input, context) => {
16430
16520
  return {
16431
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
16432
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16521
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16522
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
16433
16523
  ...(input.ExperimentName != null && { ExperimentName: input.ExperimentName }),
16434
16524
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16435
16525
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -17423,13 +17513,15 @@ const serializeAws_json1_1PutModelPackageGroupPolicyInput = (input, context) =>
17423
17513
  };
17424
17514
  const serializeAws_json1_1QueryFilters = (input, context) => {
17425
17515
  return {
17426
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
17427
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
17516
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
17517
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
17428
17518
  ...(input.LineageTypes != null && {
17429
17519
  LineageTypes: serializeAws_json1_1QueryLineageTypes(input.LineageTypes, context),
17430
17520
  }),
17431
- ...(input.ModifiedAfter != null && { ModifiedAfter: Math.round(input.ModifiedAfter.getTime() / 1000) }),
17432
- ...(input.ModifiedBefore != null && { ModifiedBefore: Math.round(input.ModifiedBefore.getTime() / 1000) }),
17521
+ ...(input.ModifiedAfter != null && { ModifiedAfter: Math.round(input.ModifiedAfter.getTime() / 1000).toString() }),
17522
+ ...(input.ModifiedBefore != null && {
17523
+ ModifiedBefore: Math.round(input.ModifiedBefore.getTime() / 1000).toString(),
17524
+ }),
17433
17525
  ...(input.Properties != null && { Properties: serializeAws_json1_1QueryProperties(input.Properties, context) }),
17434
17526
  ...(input.Types != null && { Types: serializeAws_json1_1QueryTypes(input.Types, context) }),
17435
17527
  };
@@ -18660,7 +18752,7 @@ const serializeAws_json1_1UpdateTrainingJobRequest = (input, context) => {
18660
18752
  const serializeAws_json1_1UpdateTrialComponentRequest = (input, context) => {
18661
18753
  return {
18662
18754
  ...(input.DisplayName != null && { DisplayName: input.DisplayName }),
18663
- ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
18755
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
18664
18756
  ...(input.InputArtifacts != null && {
18665
18757
  InputArtifacts: serializeAws_json1_1TrialComponentArtifacts(input.InputArtifacts, context),
18666
18758
  }),
@@ -18679,7 +18771,7 @@ const serializeAws_json1_1UpdateTrialComponentRequest = (input, context) => {
18679
18771
  ...(input.ParametersToRemove != null && {
18680
18772
  ParametersToRemove: serializeAws_json1_1ListTrialComponentKey256(input.ParametersToRemove, context),
18681
18773
  }),
18682
- ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
18774
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
18683
18775
  ...(input.Status != null && { Status: serializeAws_json1_1TrialComponentStatus(input.Status, context) }),
18684
18776
  ...(input.TrialComponentName != null && { TrialComponentName: input.TrialComponentName }),
18685
18777
  };