@aws-sdk/client-sagemaker 3.252.0 → 3.256.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).toString() }),
13668
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
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).toString() }),
13681
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
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 }),
@@ -15015,6 +15015,9 @@ const serializeAws_json1_1HyperParameterTrainingJobDefinition = (input, context)
15015
15015
  }),
15016
15016
  ...(input.EnableManagedSpotTraining != null && { EnableManagedSpotTraining: input.EnableManagedSpotTraining }),
15017
15017
  ...(input.EnableNetworkIsolation != null && { EnableNetworkIsolation: input.EnableNetworkIsolation }),
15018
+ ...(input.Environment != null && {
15019
+ Environment: serializeAws_json1_1HyperParameterTrainingJobEnvironmentMap(input.Environment, context),
15020
+ }),
15018
15021
  ...(input.HyperParameterRanges != null && {
15019
15022
  HyperParameterRanges: serializeAws_json1_1ParameterRanges(input.HyperParameterRanges, context),
15020
15023
  }),
@@ -15053,6 +15056,15 @@ const serializeAws_json1_1HyperParameterTrainingJobDefinitions = (input, context
15053
15056
  return serializeAws_json1_1HyperParameterTrainingJobDefinition(entry, context);
15054
15057
  });
15055
15058
  };
15059
+ const serializeAws_json1_1HyperParameterTrainingJobEnvironmentMap = (input, context) => {
15060
+ return Object.entries(input).reduce((acc, [key, value]) => {
15061
+ if (value === null) {
15062
+ return acc;
15063
+ }
15064
+ acc[key] = value;
15065
+ return acc;
15066
+ }, {});
15067
+ };
15056
15068
  const serializeAws_json1_1HyperParameterTuningInstanceConfig = (input, context) => {
15057
15069
  return {
15058
15070
  ...(input.InstanceCount != null && { InstanceCount: input.InstanceCount }),
@@ -15179,8 +15191,8 @@ const serializeAws_json1_1InferenceExperimentDataStorageConfig = (input, context
15179
15191
  };
15180
15192
  const serializeAws_json1_1InferenceExperimentSchedule = (input, context) => {
15181
15193
  return {
15182
- ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
15183
- ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
15194
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
15195
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
15184
15196
  };
15185
15197
  };
15186
15198
  const serializeAws_json1_1InferenceSpecification = (input, context) => {
@@ -15415,8 +15427,8 @@ const serializeAws_json1_1LineageEntityParameters = (input, context) => {
15415
15427
  const serializeAws_json1_1ListActionsRequest = (input, context) => {
15416
15428
  return {
15417
15429
  ...(input.ActionType != null && { ActionType: input.ActionType }),
15418
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
15419
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
15430
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
15431
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
15420
15432
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15421
15433
  ...(input.NextToken != null && { NextToken: input.NextToken }),
15422
15434
  ...(input.SortBy != null && { SortBy: input.SortBy }),
@@ -15426,11 +15438,9 @@ const serializeAws_json1_1ListActionsRequest = (input, context) => {
15426
15438
  };
15427
15439
  const serializeAws_json1_1ListAlgorithmsInput = (input, context) => {
15428
15440
  return {
15429
- ...(input.CreationTimeAfter != null && {
15430
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15431
- }),
15441
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15432
15442
  ...(input.CreationTimeBefore != null && {
15433
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15443
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15434
15444
  }),
15435
15445
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15436
15446
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15450,18 +15460,14 @@ const serializeAws_json1_1ListAliasesRequest = (input, context) => {
15450
15460
  };
15451
15461
  const serializeAws_json1_1ListAppImageConfigsRequest = (input, context) => {
15452
15462
  return {
15453
- ...(input.CreationTimeAfter != null && {
15454
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15455
- }),
15463
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15456
15464
  ...(input.CreationTimeBefore != null && {
15457
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15465
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15458
15466
  }),
15459
15467
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15460
- ...(input.ModifiedTimeAfter != null && {
15461
- ModifiedTimeAfter: Math.round(input.ModifiedTimeAfter.getTime() / 1000).toString(),
15462
- }),
15468
+ ...(input.ModifiedTimeAfter != null && { ModifiedTimeAfter: Math.round(input.ModifiedTimeAfter.getTime() / 1000) }),
15463
15469
  ...(input.ModifiedTimeBefore != null && {
15464
- ModifiedTimeBefore: Math.round(input.ModifiedTimeBefore.getTime() / 1000).toString(),
15470
+ ModifiedTimeBefore: Math.round(input.ModifiedTimeBefore.getTime() / 1000),
15465
15471
  }),
15466
15472
  ...(input.NameContains != null && { NameContains: input.NameContains }),
15467
15473
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -15483,8 +15489,8 @@ const serializeAws_json1_1ListAppsRequest = (input, context) => {
15483
15489
  const serializeAws_json1_1ListArtifactsRequest = (input, context) => {
15484
15490
  return {
15485
15491
  ...(input.ArtifactType != null && { ArtifactType: input.ArtifactType }),
15486
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
15487
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
15492
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
15493
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
15488
15494
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15489
15495
  ...(input.NextToken != null && { NextToken: input.NextToken }),
15490
15496
  ...(input.SortBy != null && { SortBy: input.SortBy }),
@@ -15495,8 +15501,8 @@ const serializeAws_json1_1ListArtifactsRequest = (input, context) => {
15495
15501
  const serializeAws_json1_1ListAssociationsRequest = (input, context) => {
15496
15502
  return {
15497
15503
  ...(input.AssociationType != null && { AssociationType: input.AssociationType }),
15498
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
15499
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
15504
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
15505
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
15500
15506
  ...(input.DestinationArn != null && { DestinationArn: input.DestinationArn }),
15501
15507
  ...(input.DestinationType != null && { DestinationType: input.DestinationType }),
15502
15508
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -15509,17 +15515,15 @@ const serializeAws_json1_1ListAssociationsRequest = (input, context) => {
15509
15515
  };
15510
15516
  const serializeAws_json1_1ListAutoMLJobsRequest = (input, context) => {
15511
15517
  return {
15512
- ...(input.CreationTimeAfter != null && {
15513
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15514
- }),
15518
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15515
15519
  ...(input.CreationTimeBefore != null && {
15516
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15520
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15517
15521
  }),
15518
15522
  ...(input.LastModifiedTimeAfter != null && {
15519
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15523
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15520
15524
  }),
15521
15525
  ...(input.LastModifiedTimeBefore != null && {
15522
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15526
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15523
15527
  }),
15524
15528
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15525
15529
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15542,17 +15546,15 @@ const serializeAws_json1_1ListCandidatesForAutoMLJobRequest = (input, context) =
15542
15546
  };
15543
15547
  const serializeAws_json1_1ListCodeRepositoriesInput = (input, context) => {
15544
15548
  return {
15545
- ...(input.CreationTimeAfter != null && {
15546
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15547
- }),
15549
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15548
15550
  ...(input.CreationTimeBefore != null && {
15549
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15551
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15550
15552
  }),
15551
15553
  ...(input.LastModifiedTimeAfter != null && {
15552
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15554
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15553
15555
  }),
15554
15556
  ...(input.LastModifiedTimeBefore != null && {
15555
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15557
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15556
15558
  }),
15557
15559
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15558
15560
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15563,17 +15565,15 @@ const serializeAws_json1_1ListCodeRepositoriesInput = (input, context) => {
15563
15565
  };
15564
15566
  const serializeAws_json1_1ListCompilationJobsRequest = (input, context) => {
15565
15567
  return {
15566
- ...(input.CreationTimeAfter != null && {
15567
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15568
- }),
15568
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15569
15569
  ...(input.CreationTimeBefore != null && {
15570
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15570
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15571
15571
  }),
15572
15572
  ...(input.LastModifiedTimeAfter != null && {
15573
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15573
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15574
15574
  }),
15575
15575
  ...(input.LastModifiedTimeBefore != null && {
15576
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15576
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15577
15577
  }),
15578
15578
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15579
15579
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15586,8 +15586,8 @@ const serializeAws_json1_1ListCompilationJobsRequest = (input, context) => {
15586
15586
  const serializeAws_json1_1ListContextsRequest = (input, context) => {
15587
15587
  return {
15588
15588
  ...(input.ContextType != null && { ContextType: input.ContextType }),
15589
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
15590
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
15589
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
15590
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
15591
15591
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15592
15592
  ...(input.NextToken != null && { NextToken: input.NextToken }),
15593
15593
  ...(input.SortBy != null && { SortBy: input.SortBy }),
@@ -15597,11 +15597,9 @@ const serializeAws_json1_1ListContextsRequest = (input, context) => {
15597
15597
  };
15598
15598
  const serializeAws_json1_1ListDataQualityJobDefinitionsRequest = (input, context) => {
15599
15599
  return {
15600
- ...(input.CreationTimeAfter != null && {
15601
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15602
- }),
15600
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15603
15601
  ...(input.CreationTimeBefore != null && {
15604
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15602
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15605
15603
  }),
15606
15604
  ...(input.EndpointName != null && { EndpointName: input.EndpointName }),
15607
15605
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -15613,17 +15611,15 @@ const serializeAws_json1_1ListDataQualityJobDefinitionsRequest = (input, context
15613
15611
  };
15614
15612
  const serializeAws_json1_1ListDeviceFleetsRequest = (input, context) => {
15615
15613
  return {
15616
- ...(input.CreationTimeAfter != null && {
15617
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15618
- }),
15614
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15619
15615
  ...(input.CreationTimeBefore != null && {
15620
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15616
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15621
15617
  }),
15622
15618
  ...(input.LastModifiedTimeAfter != null && {
15623
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15619
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15624
15620
  }),
15625
15621
  ...(input.LastModifiedTimeBefore != null && {
15626
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15622
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15627
15623
  }),
15628
15624
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15629
15625
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15636,7 +15632,7 @@ const serializeAws_json1_1ListDevicesRequest = (input, context) => {
15636
15632
  return {
15637
15633
  ...(input.DeviceFleetName != null && { DeviceFleetName: input.DeviceFleetName }),
15638
15634
  ...(input.LatestHeartbeatAfter != null && {
15639
- LatestHeartbeatAfter: Math.round(input.LatestHeartbeatAfter.getTime() / 1000).toString(),
15635
+ LatestHeartbeatAfter: Math.round(input.LatestHeartbeatAfter.getTime() / 1000),
15640
15636
  }),
15641
15637
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15642
15638
  ...(input.ModelName != null && { ModelName: input.ModelName }),
@@ -15651,18 +15647,16 @@ const serializeAws_json1_1ListDomainsRequest = (input, context) => {
15651
15647
  };
15652
15648
  const serializeAws_json1_1ListEdgeDeploymentPlansRequest = (input, context) => {
15653
15649
  return {
15654
- ...(input.CreationTimeAfter != null && {
15655
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15656
- }),
15650
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15657
15651
  ...(input.CreationTimeBefore != null && {
15658
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15652
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15659
15653
  }),
15660
15654
  ...(input.DeviceFleetNameContains != null && { DeviceFleetNameContains: input.DeviceFleetNameContains }),
15661
15655
  ...(input.LastModifiedTimeAfter != null && {
15662
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15656
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15663
15657
  }),
15664
15658
  ...(input.LastModifiedTimeBefore != null && {
15665
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15659
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15666
15660
  }),
15667
15661
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15668
15662
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15673,17 +15667,15 @@ const serializeAws_json1_1ListEdgeDeploymentPlansRequest = (input, context) => {
15673
15667
  };
15674
15668
  const serializeAws_json1_1ListEdgePackagingJobsRequest = (input, context) => {
15675
15669
  return {
15676
- ...(input.CreationTimeAfter != null && {
15677
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15678
- }),
15670
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15679
15671
  ...(input.CreationTimeBefore != null && {
15680
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15672
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15681
15673
  }),
15682
15674
  ...(input.LastModifiedTimeAfter != null && {
15683
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15675
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15684
15676
  }),
15685
15677
  ...(input.LastModifiedTimeBefore != null && {
15686
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15678
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15687
15679
  }),
15688
15680
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15689
15681
  ...(input.ModelNameContains != null && { ModelNameContains: input.ModelNameContains }),
@@ -15696,11 +15688,9 @@ const serializeAws_json1_1ListEdgePackagingJobsRequest = (input, context) => {
15696
15688
  };
15697
15689
  const serializeAws_json1_1ListEndpointConfigsInput = (input, context) => {
15698
15690
  return {
15699
- ...(input.CreationTimeAfter != null && {
15700
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15701
- }),
15691
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15702
15692
  ...(input.CreationTimeBefore != null && {
15703
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15693
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15704
15694
  }),
15705
15695
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15706
15696
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15711,17 +15701,15 @@ const serializeAws_json1_1ListEndpointConfigsInput = (input, context) => {
15711
15701
  };
15712
15702
  const serializeAws_json1_1ListEndpointsInput = (input, context) => {
15713
15703
  return {
15714
- ...(input.CreationTimeAfter != null && {
15715
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15716
- }),
15704
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15717
15705
  ...(input.CreationTimeBefore != null && {
15718
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15706
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15719
15707
  }),
15720
15708
  ...(input.LastModifiedTimeAfter != null && {
15721
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15709
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15722
15710
  }),
15723
15711
  ...(input.LastModifiedTimeBefore != null && {
15724
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15712
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15725
15713
  }),
15726
15714
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15727
15715
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15733,8 +15721,8 @@ const serializeAws_json1_1ListEndpointsInput = (input, context) => {
15733
15721
  };
15734
15722
  const serializeAws_json1_1ListExperimentsRequest = (input, context) => {
15735
15723
  return {
15736
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
15737
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
15724
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
15725
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
15738
15726
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15739
15727
  ...(input.NextToken != null && { NextToken: input.NextToken }),
15740
15728
  ...(input.SortBy != null && { SortBy: input.SortBy }),
@@ -15743,11 +15731,9 @@ const serializeAws_json1_1ListExperimentsRequest = (input, context) => {
15743
15731
  };
15744
15732
  const serializeAws_json1_1ListFeatureGroupsRequest = (input, context) => {
15745
15733
  return {
15746
- ...(input.CreationTimeAfter != null && {
15747
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15748
- }),
15734
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15749
15735
  ...(input.CreationTimeBefore != null && {
15750
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15736
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15751
15737
  }),
15752
15738
  ...(input.FeatureGroupStatusEquals != null && { FeatureGroupStatusEquals: input.FeatureGroupStatusEquals }),
15753
15739
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -15760,11 +15746,9 @@ const serializeAws_json1_1ListFeatureGroupsRequest = (input, context) => {
15760
15746
  };
15761
15747
  const serializeAws_json1_1ListFlowDefinitionsRequest = (input, context) => {
15762
15748
  return {
15763
- ...(input.CreationTimeAfter != null && {
15764
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15765
- }),
15749
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15766
15750
  ...(input.CreationTimeBefore != null && {
15767
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15751
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15768
15752
  }),
15769
15753
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15770
15754
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -15773,11 +15757,9 @@ const serializeAws_json1_1ListFlowDefinitionsRequest = (input, context) => {
15773
15757
  };
15774
15758
  const serializeAws_json1_1ListHubContentsRequest = (input, context) => {
15775
15759
  return {
15776
- ...(input.CreationTimeAfter != null && {
15777
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15778
- }),
15760
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15779
15761
  ...(input.CreationTimeBefore != null && {
15780
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15762
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15781
15763
  }),
15782
15764
  ...(input.HubContentType != null && { HubContentType: input.HubContentType }),
15783
15765
  ...(input.HubName != null && { HubName: input.HubName }),
@@ -15791,11 +15773,9 @@ const serializeAws_json1_1ListHubContentsRequest = (input, context) => {
15791
15773
  };
15792
15774
  const serializeAws_json1_1ListHubContentVersionsRequest = (input, context) => {
15793
15775
  return {
15794
- ...(input.CreationTimeAfter != null && {
15795
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15796
- }),
15776
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15797
15777
  ...(input.CreationTimeBefore != null && {
15798
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15778
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15799
15779
  }),
15800
15780
  ...(input.HubContentName != null && { HubContentName: input.HubContentName }),
15801
15781
  ...(input.HubContentType != null && { HubContentType: input.HubContentType }),
@@ -15810,17 +15790,15 @@ const serializeAws_json1_1ListHubContentVersionsRequest = (input, context) => {
15810
15790
  };
15811
15791
  const serializeAws_json1_1ListHubsRequest = (input, context) => {
15812
15792
  return {
15813
- ...(input.CreationTimeAfter != null && {
15814
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15815
- }),
15793
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15816
15794
  ...(input.CreationTimeBefore != null && {
15817
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15795
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15818
15796
  }),
15819
15797
  ...(input.LastModifiedTimeAfter != null && {
15820
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15798
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15821
15799
  }),
15822
15800
  ...(input.LastModifiedTimeBefore != null && {
15823
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15801
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15824
15802
  }),
15825
15803
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15826
15804
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15831,11 +15809,9 @@ const serializeAws_json1_1ListHubsRequest = (input, context) => {
15831
15809
  };
15832
15810
  const serializeAws_json1_1ListHumanTaskUisRequest = (input, context) => {
15833
15811
  return {
15834
- ...(input.CreationTimeAfter != null && {
15835
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15836
- }),
15812
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15837
15813
  ...(input.CreationTimeBefore != null && {
15838
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15814
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15839
15815
  }),
15840
15816
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15841
15817
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -15844,17 +15820,15 @@ const serializeAws_json1_1ListHumanTaskUisRequest = (input, context) => {
15844
15820
  };
15845
15821
  const serializeAws_json1_1ListHyperParameterTuningJobsRequest = (input, context) => {
15846
15822
  return {
15847
- ...(input.CreationTimeAfter != null && {
15848
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15849
- }),
15823
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15850
15824
  ...(input.CreationTimeBefore != null && {
15851
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15825
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15852
15826
  }),
15853
15827
  ...(input.LastModifiedTimeAfter != null && {
15854
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15828
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15855
15829
  }),
15856
15830
  ...(input.LastModifiedTimeBefore != null && {
15857
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15831
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15858
15832
  }),
15859
15833
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15860
15834
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15866,17 +15840,15 @@ const serializeAws_json1_1ListHyperParameterTuningJobsRequest = (input, context)
15866
15840
  };
15867
15841
  const serializeAws_json1_1ListImagesRequest = (input, context) => {
15868
15842
  return {
15869
- ...(input.CreationTimeAfter != null && {
15870
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15871
- }),
15843
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15872
15844
  ...(input.CreationTimeBefore != null && {
15873
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15845
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15874
15846
  }),
15875
15847
  ...(input.LastModifiedTimeAfter != null && {
15876
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15848
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15877
15849
  }),
15878
15850
  ...(input.LastModifiedTimeBefore != null && {
15879
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15851
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15880
15852
  }),
15881
15853
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15882
15854
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15887,18 +15859,16 @@ const serializeAws_json1_1ListImagesRequest = (input, context) => {
15887
15859
  };
15888
15860
  const serializeAws_json1_1ListImageVersionsRequest = (input, context) => {
15889
15861
  return {
15890
- ...(input.CreationTimeAfter != null && {
15891
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15892
- }),
15862
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15893
15863
  ...(input.CreationTimeBefore != null && {
15894
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15864
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15895
15865
  }),
15896
15866
  ...(input.ImageName != null && { ImageName: input.ImageName }),
15897
15867
  ...(input.LastModifiedTimeAfter != null && {
15898
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15868
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15899
15869
  }),
15900
15870
  ...(input.LastModifiedTimeBefore != null && {
15901
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15871
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15902
15872
  }),
15903
15873
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15904
15874
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -15908,17 +15878,15 @@ const serializeAws_json1_1ListImageVersionsRequest = (input, context) => {
15908
15878
  };
15909
15879
  const serializeAws_json1_1ListInferenceExperimentsRequest = (input, context) => {
15910
15880
  return {
15911
- ...(input.CreationTimeAfter != null && {
15912
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15913
- }),
15881
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15914
15882
  ...(input.CreationTimeBefore != null && {
15915
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15883
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15916
15884
  }),
15917
15885
  ...(input.LastModifiedTimeAfter != null && {
15918
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15886
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15919
15887
  }),
15920
15888
  ...(input.LastModifiedTimeBefore != null && {
15921
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15889
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15922
15890
  }),
15923
15891
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15924
15892
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15931,17 +15899,15 @@ const serializeAws_json1_1ListInferenceExperimentsRequest = (input, context) =>
15931
15899
  };
15932
15900
  const serializeAws_json1_1ListInferenceRecommendationsJobsRequest = (input, context) => {
15933
15901
  return {
15934
- ...(input.CreationTimeAfter != null && {
15935
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15936
- }),
15902
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15937
15903
  ...(input.CreationTimeBefore != null && {
15938
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15904
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15939
15905
  }),
15940
15906
  ...(input.LastModifiedTimeAfter != null && {
15941
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15907
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15942
15908
  }),
15943
15909
  ...(input.LastModifiedTimeBefore != null && {
15944
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15910
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15945
15911
  }),
15946
15912
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15947
15913
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -15962,11 +15928,9 @@ const serializeAws_json1_1ListInferenceRecommendationsJobStepsRequest = (input,
15962
15928
  };
15963
15929
  const serializeAws_json1_1ListLabelingJobsForWorkteamRequest = (input, context) => {
15964
15930
  return {
15965
- ...(input.CreationTimeAfter != null && {
15966
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15967
- }),
15931
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15968
15932
  ...(input.CreationTimeBefore != null && {
15969
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15933
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15970
15934
  }),
15971
15935
  ...(input.JobReferenceCodeContains != null && { JobReferenceCodeContains: input.JobReferenceCodeContains }),
15972
15936
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -15978,17 +15942,15 @@ const serializeAws_json1_1ListLabelingJobsForWorkteamRequest = (input, context)
15978
15942
  };
15979
15943
  const serializeAws_json1_1ListLabelingJobsRequest = (input, context) => {
15980
15944
  return {
15981
- ...(input.CreationTimeAfter != null && {
15982
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
15983
- }),
15945
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
15984
15946
  ...(input.CreationTimeBefore != null && {
15985
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15947
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
15986
15948
  }),
15987
15949
  ...(input.LastModifiedTimeAfter != null && {
15988
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
15950
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
15989
15951
  }),
15990
15952
  ...(input.LastModifiedTimeBefore != null && {
15991
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
15953
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
15992
15954
  }),
15993
15955
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
15994
15956
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16007,8 +15969,8 @@ const serializeAws_json1_1ListLineageEntityParameterKey = (input, context) => {
16007
15969
  };
16008
15970
  const serializeAws_json1_1ListLineageGroupsRequest = (input, context) => {
16009
15971
  return {
16010
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16011
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
15972
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
15973
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16012
15974
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16013
15975
  ...(input.NextToken != null && { NextToken: input.NextToken }),
16014
15976
  ...(input.SortBy != null && { SortBy: input.SortBy }),
@@ -16017,11 +15979,9 @@ const serializeAws_json1_1ListLineageGroupsRequest = (input, context) => {
16017
15979
  };
16018
15980
  const serializeAws_json1_1ListModelBiasJobDefinitionsRequest = (input, context) => {
16019
15981
  return {
16020
- ...(input.CreationTimeAfter != null && {
16021
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16022
- }),
15982
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16023
15983
  ...(input.CreationTimeBefore != null && {
16024
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15984
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16025
15985
  }),
16026
15986
  ...(input.EndpointName != null && { EndpointName: input.EndpointName }),
16027
15987
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -16033,11 +15993,9 @@ const serializeAws_json1_1ListModelBiasJobDefinitionsRequest = (input, context)
16033
15993
  };
16034
15994
  const serializeAws_json1_1ListModelCardExportJobsRequest = (input, context) => {
16035
15995
  return {
16036
- ...(input.CreationTimeAfter != null && {
16037
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16038
- }),
15996
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16039
15997
  ...(input.CreationTimeBefore != null && {
16040
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
15998
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16041
15999
  }),
16042
16000
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16043
16001
  ...(input.ModelCardExportJobNameContains != null && {
@@ -16053,11 +16011,9 @@ const serializeAws_json1_1ListModelCardExportJobsRequest = (input, context) => {
16053
16011
  };
16054
16012
  const serializeAws_json1_1ListModelCardsRequest = (input, context) => {
16055
16013
  return {
16056
- ...(input.CreationTimeAfter != null && {
16057
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16058
- }),
16014
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16059
16015
  ...(input.CreationTimeBefore != null && {
16060
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16016
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16061
16017
  }),
16062
16018
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16063
16019
  ...(input.ModelCardStatus != null && { ModelCardStatus: input.ModelCardStatus }),
@@ -16069,11 +16025,9 @@ const serializeAws_json1_1ListModelCardsRequest = (input, context) => {
16069
16025
  };
16070
16026
  const serializeAws_json1_1ListModelCardVersionsRequest = (input, context) => {
16071
16027
  return {
16072
- ...(input.CreationTimeAfter != null && {
16073
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16074
- }),
16028
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16075
16029
  ...(input.CreationTimeBefore != null && {
16076
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16030
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16077
16031
  }),
16078
16032
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16079
16033
  ...(input.ModelCardName != null && { ModelCardName: input.ModelCardName }),
@@ -16085,11 +16039,9 @@ const serializeAws_json1_1ListModelCardVersionsRequest = (input, context) => {
16085
16039
  };
16086
16040
  const serializeAws_json1_1ListModelExplainabilityJobDefinitionsRequest = (input, context) => {
16087
16041
  return {
16088
- ...(input.CreationTimeAfter != null && {
16089
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16090
- }),
16042
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16091
16043
  ...(input.CreationTimeBefore != null && {
16092
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16044
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16093
16045
  }),
16094
16046
  ...(input.EndpointName != null && { EndpointName: input.EndpointName }),
16095
16047
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -16110,11 +16062,9 @@ const serializeAws_json1_1ListModelMetadataRequest = (input, context) => {
16110
16062
  };
16111
16063
  const serializeAws_json1_1ListModelPackageGroupsInput = (input, context) => {
16112
16064
  return {
16113
- ...(input.CreationTimeAfter != null && {
16114
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16115
- }),
16065
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16116
16066
  ...(input.CreationTimeBefore != null && {
16117
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16067
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16118
16068
  }),
16119
16069
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16120
16070
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16125,11 +16075,9 @@ const serializeAws_json1_1ListModelPackageGroupsInput = (input, context) => {
16125
16075
  };
16126
16076
  const serializeAws_json1_1ListModelPackagesInput = (input, context) => {
16127
16077
  return {
16128
- ...(input.CreationTimeAfter != null && {
16129
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16130
- }),
16078
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16131
16079
  ...(input.CreationTimeBefore != null && {
16132
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16080
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16133
16081
  }),
16134
16082
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16135
16083
  ...(input.ModelApprovalStatus != null && { ModelApprovalStatus: input.ModelApprovalStatus }),
@@ -16143,11 +16091,9 @@ const serializeAws_json1_1ListModelPackagesInput = (input, context) => {
16143
16091
  };
16144
16092
  const serializeAws_json1_1ListModelQualityJobDefinitionsRequest = (input, context) => {
16145
16093
  return {
16146
- ...(input.CreationTimeAfter != null && {
16147
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16148
- }),
16094
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16149
16095
  ...(input.CreationTimeBefore != null && {
16150
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16096
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16151
16097
  }),
16152
16098
  ...(input.EndpointName != null && { EndpointName: input.EndpointName }),
16153
16099
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -16159,11 +16105,9 @@ const serializeAws_json1_1ListModelQualityJobDefinitionsRequest = (input, contex
16159
16105
  };
16160
16106
  const serializeAws_json1_1ListModelsInput = (input, context) => {
16161
16107
  return {
16162
- ...(input.CreationTimeAfter != null && {
16163
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16164
- }),
16108
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16165
16109
  ...(input.CreationTimeBefore != null && {
16166
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16110
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16167
16111
  }),
16168
16112
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16169
16113
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16174,11 +16118,9 @@ const serializeAws_json1_1ListModelsInput = (input, context) => {
16174
16118
  };
16175
16119
  const serializeAws_json1_1ListMonitoringAlertHistoryRequest = (input, context) => {
16176
16120
  return {
16177
- ...(input.CreationTimeAfter != null && {
16178
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16179
- }),
16121
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16180
16122
  ...(input.CreationTimeBefore != null && {
16181
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16123
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16182
16124
  }),
16183
16125
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16184
16126
  ...(input.MonitoringAlertName != null && { MonitoringAlertName: input.MonitoringAlertName }),
@@ -16198,18 +16140,16 @@ const serializeAws_json1_1ListMonitoringAlertsRequest = (input, context) => {
16198
16140
  };
16199
16141
  const serializeAws_json1_1ListMonitoringExecutionsRequest = (input, context) => {
16200
16142
  return {
16201
- ...(input.CreationTimeAfter != null && {
16202
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16203
- }),
16143
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16204
16144
  ...(input.CreationTimeBefore != null && {
16205
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16145
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16206
16146
  }),
16207
16147
  ...(input.EndpointName != null && { EndpointName: input.EndpointName }),
16208
16148
  ...(input.LastModifiedTimeAfter != null && {
16209
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16149
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16210
16150
  }),
16211
16151
  ...(input.LastModifiedTimeBefore != null && {
16212
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16152
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16213
16153
  }),
16214
16154
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16215
16155
  ...(input.MonitoringJobDefinitionName != null && {
@@ -16219,10 +16159,10 @@ const serializeAws_json1_1ListMonitoringExecutionsRequest = (input, context) =>
16219
16159
  ...(input.MonitoringTypeEquals != null && { MonitoringTypeEquals: input.MonitoringTypeEquals }),
16220
16160
  ...(input.NextToken != null && { NextToken: input.NextToken }),
16221
16161
  ...(input.ScheduledTimeAfter != null && {
16222
- ScheduledTimeAfter: Math.round(input.ScheduledTimeAfter.getTime() / 1000).toString(),
16162
+ ScheduledTimeAfter: Math.round(input.ScheduledTimeAfter.getTime() / 1000),
16223
16163
  }),
16224
16164
  ...(input.ScheduledTimeBefore != null && {
16225
- ScheduledTimeBefore: Math.round(input.ScheduledTimeBefore.getTime() / 1000).toString(),
16165
+ ScheduledTimeBefore: Math.round(input.ScheduledTimeBefore.getTime() / 1000),
16226
16166
  }),
16227
16167
  ...(input.SortBy != null && { SortBy: input.SortBy }),
16228
16168
  ...(input.SortOrder != null && { SortOrder: input.SortOrder }),
@@ -16231,18 +16171,16 @@ const serializeAws_json1_1ListMonitoringExecutionsRequest = (input, context) =>
16231
16171
  };
16232
16172
  const serializeAws_json1_1ListMonitoringSchedulesRequest = (input, context) => {
16233
16173
  return {
16234
- ...(input.CreationTimeAfter != null && {
16235
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16236
- }),
16174
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16237
16175
  ...(input.CreationTimeBefore != null && {
16238
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16176
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16239
16177
  }),
16240
16178
  ...(input.EndpointName != null && { EndpointName: input.EndpointName }),
16241
16179
  ...(input.LastModifiedTimeAfter != null && {
16242
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16180
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16243
16181
  }),
16244
16182
  ...(input.LastModifiedTimeBefore != null && {
16245
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16183
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16246
16184
  }),
16247
16185
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16248
16186
  ...(input.MonitoringJobDefinitionName != null && {
@@ -16258,17 +16196,15 @@ const serializeAws_json1_1ListMonitoringSchedulesRequest = (input, context) => {
16258
16196
  };
16259
16197
  const serializeAws_json1_1ListNotebookInstanceLifecycleConfigsInput = (input, context) => {
16260
16198
  return {
16261
- ...(input.CreationTimeAfter != null && {
16262
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16263
- }),
16199
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16264
16200
  ...(input.CreationTimeBefore != null && {
16265
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16201
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16266
16202
  }),
16267
16203
  ...(input.LastModifiedTimeAfter != null && {
16268
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16204
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16269
16205
  }),
16270
16206
  ...(input.LastModifiedTimeBefore != null && {
16271
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16207
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16272
16208
  }),
16273
16209
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16274
16210
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16282,20 +16218,18 @@ const serializeAws_json1_1ListNotebookInstancesInput = (input, context) => {
16282
16218
  ...(input.AdditionalCodeRepositoryEquals != null && {
16283
16219
  AdditionalCodeRepositoryEquals: input.AdditionalCodeRepositoryEquals,
16284
16220
  }),
16285
- ...(input.CreationTimeAfter != null && {
16286
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16287
- }),
16221
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16288
16222
  ...(input.CreationTimeBefore != null && {
16289
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16223
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16290
16224
  }),
16291
16225
  ...(input.DefaultCodeRepositoryContains != null && {
16292
16226
  DefaultCodeRepositoryContains: input.DefaultCodeRepositoryContains,
16293
16227
  }),
16294
16228
  ...(input.LastModifiedTimeAfter != null && {
16295
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16229
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16296
16230
  }),
16297
16231
  ...(input.LastModifiedTimeBefore != null && {
16298
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16232
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16299
16233
  }),
16300
16234
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16301
16235
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16310,8 +16244,8 @@ const serializeAws_json1_1ListNotebookInstancesInput = (input, context) => {
16310
16244
  };
16311
16245
  const serializeAws_json1_1ListPipelineExecutionsRequest = (input, context) => {
16312
16246
  return {
16313
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16314
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
16247
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
16248
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16315
16249
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16316
16250
  ...(input.NextToken != null && { NextToken: input.NextToken }),
16317
16251
  ...(input.PipelineName != null && { PipelineName: input.PipelineName }),
@@ -16336,8 +16270,8 @@ const serializeAws_json1_1ListPipelineParametersForExecutionRequest = (input, co
16336
16270
  };
16337
16271
  const serializeAws_json1_1ListPipelinesRequest = (input, context) => {
16338
16272
  return {
16339
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16340
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
16273
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
16274
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16341
16275
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16342
16276
  ...(input.NextToken != null && { NextToken: input.NextToken }),
16343
16277
  ...(input.PipelineNamePrefix != null && { PipelineNamePrefix: input.PipelineNamePrefix }),
@@ -16347,17 +16281,15 @@ const serializeAws_json1_1ListPipelinesRequest = (input, context) => {
16347
16281
  };
16348
16282
  const serializeAws_json1_1ListProcessingJobsRequest = (input, context) => {
16349
16283
  return {
16350
- ...(input.CreationTimeAfter != null && {
16351
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16352
- }),
16284
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16353
16285
  ...(input.CreationTimeBefore != null && {
16354
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16286
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16355
16287
  }),
16356
16288
  ...(input.LastModifiedTimeAfter != null && {
16357
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16289
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16358
16290
  }),
16359
16291
  ...(input.LastModifiedTimeBefore != null && {
16360
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16292
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16361
16293
  }),
16362
16294
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16363
16295
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16369,11 +16301,9 @@ const serializeAws_json1_1ListProcessingJobsRequest = (input, context) => {
16369
16301
  };
16370
16302
  const serializeAws_json1_1ListProjectsInput = (input, context) => {
16371
16303
  return {
16372
- ...(input.CreationTimeAfter != null && {
16373
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16374
- }),
16304
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16375
16305
  ...(input.CreationTimeBefore != null && {
16376
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16306
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16377
16307
  }),
16378
16308
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16379
16309
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16406,18 +16336,14 @@ const serializeAws_json1_1ListStageDevicesRequest = (input, context) => {
16406
16336
  const serializeAws_json1_1ListStudioLifecycleConfigsRequest = (input, context) => {
16407
16337
  return {
16408
16338
  ...(input.AppTypeEquals != null && { AppTypeEquals: input.AppTypeEquals }),
16409
- ...(input.CreationTimeAfter != null && {
16410
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16411
- }),
16339
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16412
16340
  ...(input.CreationTimeBefore != null && {
16413
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16341
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16414
16342
  }),
16415
16343
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16416
- ...(input.ModifiedTimeAfter != null && {
16417
- ModifiedTimeAfter: Math.round(input.ModifiedTimeAfter.getTime() / 1000).toString(),
16418
- }),
16344
+ ...(input.ModifiedTimeAfter != null && { ModifiedTimeAfter: Math.round(input.ModifiedTimeAfter.getTime() / 1000) }),
16419
16345
  ...(input.ModifiedTimeBefore != null && {
16420
- ModifiedTimeBefore: Math.round(input.ModifiedTimeBefore.getTime() / 1000).toString(),
16346
+ ModifiedTimeBefore: Math.round(input.ModifiedTimeBefore.getTime() / 1000),
16421
16347
  }),
16422
16348
  ...(input.NameContains != null && { NameContains: input.NameContains }),
16423
16349
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -16453,17 +16379,15 @@ const serializeAws_json1_1ListTrainingJobsForHyperParameterTuningJobRequest = (i
16453
16379
  };
16454
16380
  const serializeAws_json1_1ListTrainingJobsRequest = (input, context) => {
16455
16381
  return {
16456
- ...(input.CreationTimeAfter != null && {
16457
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16458
- }),
16382
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16459
16383
  ...(input.CreationTimeBefore != null && {
16460
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16384
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16461
16385
  }),
16462
16386
  ...(input.LastModifiedTimeAfter != null && {
16463
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16387
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16464
16388
  }),
16465
16389
  ...(input.LastModifiedTimeBefore != null && {
16466
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16390
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16467
16391
  }),
16468
16392
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16469
16393
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16476,17 +16400,15 @@ const serializeAws_json1_1ListTrainingJobsRequest = (input, context) => {
16476
16400
  };
16477
16401
  const serializeAws_json1_1ListTransformJobsRequest = (input, context) => {
16478
16402
  return {
16479
- ...(input.CreationTimeAfter != null && {
16480
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16481
- }),
16403
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16482
16404
  ...(input.CreationTimeBefore != null && {
16483
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16405
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16484
16406
  }),
16485
16407
  ...(input.LastModifiedTimeAfter != null && {
16486
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16408
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16487
16409
  }),
16488
16410
  ...(input.LastModifiedTimeBefore != null && {
16489
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16411
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16490
16412
  }),
16491
16413
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16492
16414
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16505,8 +16427,8 @@ const serializeAws_json1_1ListTrialComponentKey256 = (input, context) => {
16505
16427
  };
16506
16428
  const serializeAws_json1_1ListTrialComponentsRequest = (input, context) => {
16507
16429
  return {
16508
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16509
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
16430
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
16431
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16510
16432
  ...(input.ExperimentName != null && { ExperimentName: input.ExperimentName }),
16511
16433
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16512
16434
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -16518,8 +16440,8 @@ const serializeAws_json1_1ListTrialComponentsRequest = (input, context) => {
16518
16440
  };
16519
16441
  const serializeAws_json1_1ListTrialsRequest = (input, context) => {
16520
16442
  return {
16521
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16522
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
16443
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
16444
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16523
16445
  ...(input.ExperimentName != null && { ExperimentName: input.ExperimentName }),
16524
16446
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16525
16447
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -17513,15 +17435,13 @@ const serializeAws_json1_1PutModelPackageGroupPolicyInput = (input, context) =>
17513
17435
  };
17514
17436
  const serializeAws_json1_1QueryFilters = (input, context) => {
17515
17437
  return {
17516
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
17517
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
17438
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
17439
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
17518
17440
  ...(input.LineageTypes != null && {
17519
17441
  LineageTypes: serializeAws_json1_1QueryLineageTypes(input.LineageTypes, context),
17520
17442
  }),
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
- }),
17443
+ ...(input.ModifiedAfter != null && { ModifiedAfter: Math.round(input.ModifiedAfter.getTime() / 1000) }),
17444
+ ...(input.ModifiedBefore != null && { ModifiedBefore: Math.round(input.ModifiedBefore.getTime() / 1000) }),
17525
17445
  ...(input.Properties != null && { Properties: serializeAws_json1_1QueryProperties(input.Properties, context) }),
17526
17446
  ...(input.Types != null && { Types: serializeAws_json1_1QueryTypes(input.Types, context) }),
17527
17447
  };
@@ -18752,7 +18672,7 @@ const serializeAws_json1_1UpdateTrainingJobRequest = (input, context) => {
18752
18672
  const serializeAws_json1_1UpdateTrialComponentRequest = (input, context) => {
18753
18673
  return {
18754
18674
  ...(input.DisplayName != null && { DisplayName: input.DisplayName }),
18755
- ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
18675
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
18756
18676
  ...(input.InputArtifacts != null && {
18757
18677
  InputArtifacts: serializeAws_json1_1TrialComponentArtifacts(input.InputArtifacts, context),
18758
18678
  }),
@@ -18771,7 +18691,7 @@ const serializeAws_json1_1UpdateTrialComponentRequest = (input, context) => {
18771
18691
  ...(input.ParametersToRemove != null && {
18772
18692
  ParametersToRemove: serializeAws_json1_1ListTrialComponentKey256(input.ParametersToRemove, context),
18773
18693
  }),
18774
- ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
18694
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
18775
18695
  ...(input.Status != null && { Status: serializeAws_json1_1TrialComponentStatus(input.Status, context) }),
18776
18696
  ...(input.TrialComponentName != null && { TrialComponentName: input.TrialComponentName }),
18777
18697
  };
@@ -23317,6 +23237,9 @@ const deserializeAws_json1_1HyperParameterTrainingJobDefinition = (output, conte
23317
23237
  EnableInterContainerTrafficEncryption: __expectBoolean(output.EnableInterContainerTrafficEncryption),
23318
23238
  EnableManagedSpotTraining: __expectBoolean(output.EnableManagedSpotTraining),
23319
23239
  EnableNetworkIsolation: __expectBoolean(output.EnableNetworkIsolation),
23240
+ Environment: output.Environment != null
23241
+ ? deserializeAws_json1_1HyperParameterTrainingJobEnvironmentMap(output.Environment, context)
23242
+ : undefined,
23320
23243
  HyperParameterRanges: output.HyperParameterRanges != null
23321
23244
  ? deserializeAws_json1_1ParameterRanges(output.HyperParameterRanges, context)
23322
23245
  : undefined,
@@ -23355,6 +23278,15 @@ const deserializeAws_json1_1HyperParameterTrainingJobDefinitions = (output, cont
23355
23278
  });
23356
23279
  return retVal;
23357
23280
  };
23281
+ const deserializeAws_json1_1HyperParameterTrainingJobEnvironmentMap = (output, context) => {
23282
+ return Object.entries(output).reduce((acc, [key, value]) => {
23283
+ if (value === null) {
23284
+ return acc;
23285
+ }
23286
+ acc[key] = __expectString(value);
23287
+ return acc;
23288
+ }, {});
23289
+ };
23358
23290
  const deserializeAws_json1_1HyperParameterTrainingJobSummaries = (output, context) => {
23359
23291
  const retVal = (output || [])
23360
23292
  .filter((e) => e != null)