@aws-sdk/client-sagemaker 3.252.0 → 3.254.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.
@@ -14279,7 +14279,7 @@ const serializeAws_json1_1CreateTransformJobRequest = (input, context) => {
14279
14279
  const serializeAws_json1_1CreateTrialComponentRequest = (input, context) => {
14280
14280
  return {
14281
14281
  ...(input.DisplayName != null && { DisplayName: input.DisplayName }),
14282
- ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
14282
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
14283
14283
  ...(input.InputArtifacts != null && {
14284
14284
  InputArtifacts: serializeAws_json1_1TrialComponentArtifacts(input.InputArtifacts, context),
14285
14285
  }),
@@ -14292,7 +14292,7 @@ const serializeAws_json1_1CreateTrialComponentRequest = (input, context) => {
14292
14292
  ...(input.Parameters != null && {
14293
14293
  Parameters: serializeAws_json1_1TrialComponentParameters(input.Parameters, context),
14294
14294
  }),
14295
- ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
14295
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
14296
14296
  ...(input.Status != null && { Status: serializeAws_json1_1TrialComponentStatus(input.Status, context) }),
14297
14297
  ...(input.Tags != null && { Tags: serializeAws_json1_1TagList(input.Tags, context) }),
14298
14298
  ...(input.TrialComponentName != null && { TrialComponentName: input.TrialComponentName }),
@@ -15629,6 +15629,9 @@ const serializeAws_json1_1HyperParameterTrainingJobDefinition = (input, context)
15629
15629
  }),
15630
15630
  ...(input.EnableManagedSpotTraining != null && { EnableManagedSpotTraining: input.EnableManagedSpotTraining }),
15631
15631
  ...(input.EnableNetworkIsolation != null && { EnableNetworkIsolation: input.EnableNetworkIsolation }),
15632
+ ...(input.Environment != null && {
15633
+ Environment: serializeAws_json1_1HyperParameterTrainingJobEnvironmentMap(input.Environment, context),
15634
+ }),
15632
15635
  ...(input.HyperParameterRanges != null && {
15633
15636
  HyperParameterRanges: serializeAws_json1_1ParameterRanges(input.HyperParameterRanges, context),
15634
15637
  }),
@@ -15667,6 +15670,15 @@ const serializeAws_json1_1HyperParameterTrainingJobDefinitions = (input, context
15667
15670
  return serializeAws_json1_1HyperParameterTrainingJobDefinition(entry, context);
15668
15671
  });
15669
15672
  };
15673
+ const serializeAws_json1_1HyperParameterTrainingJobEnvironmentMap = (input, context) => {
15674
+ return Object.entries(input).reduce((acc, [key, value]) => {
15675
+ if (value === null) {
15676
+ return acc;
15677
+ }
15678
+ acc[key] = value;
15679
+ return acc;
15680
+ }, {});
15681
+ };
15670
15682
  const serializeAws_json1_1HyperParameterTuningInstanceConfig = (input, context) => {
15671
15683
  return {
15672
15684
  ...(input.InstanceCount != null && { InstanceCount: input.InstanceCount }),
@@ -15793,8 +15805,8 @@ const serializeAws_json1_1InferenceExperimentDataStorageConfig = (input, context
15793
15805
  };
15794
15806
  const serializeAws_json1_1InferenceExperimentSchedule = (input, context) => {
15795
15807
  return {
15796
- ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
15797
- ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
15808
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
15809
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
15798
15810
  };
15799
15811
  };
15800
15812
  const serializeAws_json1_1InferenceSpecification = (input, context) => {
@@ -16029,8 +16041,8 @@ const serializeAws_json1_1LineageEntityParameters = (input, context) => {
16029
16041
  const serializeAws_json1_1ListActionsRequest = (input, context) => {
16030
16042
  return {
16031
16043
  ...(input.ActionType != null && { ActionType: input.ActionType }),
16032
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16033
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
16044
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
16045
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16034
16046
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16035
16047
  ...(input.NextToken != null && { NextToken: input.NextToken }),
16036
16048
  ...(input.SortBy != null && { SortBy: input.SortBy }),
@@ -16040,11 +16052,9 @@ const serializeAws_json1_1ListActionsRequest = (input, context) => {
16040
16052
  };
16041
16053
  const serializeAws_json1_1ListAlgorithmsInput = (input, context) => {
16042
16054
  return {
16043
- ...(input.CreationTimeAfter != null && {
16044
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16045
- }),
16055
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16046
16056
  ...(input.CreationTimeBefore != null && {
16047
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16057
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16048
16058
  }),
16049
16059
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16050
16060
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16064,18 +16074,14 @@ const serializeAws_json1_1ListAliasesRequest = (input, context) => {
16064
16074
  };
16065
16075
  const serializeAws_json1_1ListAppImageConfigsRequest = (input, context) => {
16066
16076
  return {
16067
- ...(input.CreationTimeAfter != null && {
16068
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16069
- }),
16077
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16070
16078
  ...(input.CreationTimeBefore != null && {
16071
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16079
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16072
16080
  }),
16073
16081
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16074
- ...(input.ModifiedTimeAfter != null && {
16075
- ModifiedTimeAfter: Math.round(input.ModifiedTimeAfter.getTime() / 1000).toString(),
16076
- }),
16082
+ ...(input.ModifiedTimeAfter != null && { ModifiedTimeAfter: Math.round(input.ModifiedTimeAfter.getTime() / 1000) }),
16077
16083
  ...(input.ModifiedTimeBefore != null && {
16078
- ModifiedTimeBefore: Math.round(input.ModifiedTimeBefore.getTime() / 1000).toString(),
16084
+ ModifiedTimeBefore: Math.round(input.ModifiedTimeBefore.getTime() / 1000),
16079
16085
  }),
16080
16086
  ...(input.NameContains != null && { NameContains: input.NameContains }),
16081
16087
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -16097,8 +16103,8 @@ const serializeAws_json1_1ListAppsRequest = (input, context) => {
16097
16103
  const serializeAws_json1_1ListArtifactsRequest = (input, context) => {
16098
16104
  return {
16099
16105
  ...(input.ArtifactType != null && { ArtifactType: input.ArtifactType }),
16100
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16101
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
16106
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
16107
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16102
16108
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16103
16109
  ...(input.NextToken != null && { NextToken: input.NextToken }),
16104
16110
  ...(input.SortBy != null && { SortBy: input.SortBy }),
@@ -16109,8 +16115,8 @@ const serializeAws_json1_1ListArtifactsRequest = (input, context) => {
16109
16115
  const serializeAws_json1_1ListAssociationsRequest = (input, context) => {
16110
16116
  return {
16111
16117
  ...(input.AssociationType != null && { AssociationType: input.AssociationType }),
16112
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16113
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
16118
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
16119
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16114
16120
  ...(input.DestinationArn != null && { DestinationArn: input.DestinationArn }),
16115
16121
  ...(input.DestinationType != null && { DestinationType: input.DestinationType }),
16116
16122
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -16123,17 +16129,15 @@ const serializeAws_json1_1ListAssociationsRequest = (input, context) => {
16123
16129
  };
16124
16130
  const serializeAws_json1_1ListAutoMLJobsRequest = (input, context) => {
16125
16131
  return {
16126
- ...(input.CreationTimeAfter != null && {
16127
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16128
- }),
16132
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16129
16133
  ...(input.CreationTimeBefore != null && {
16130
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16134
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16131
16135
  }),
16132
16136
  ...(input.LastModifiedTimeAfter != null && {
16133
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16137
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16134
16138
  }),
16135
16139
  ...(input.LastModifiedTimeBefore != null && {
16136
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16140
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16137
16141
  }),
16138
16142
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16139
16143
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16156,17 +16160,15 @@ const serializeAws_json1_1ListCandidatesForAutoMLJobRequest = (input, context) =
16156
16160
  };
16157
16161
  const serializeAws_json1_1ListCodeRepositoriesInput = (input, context) => {
16158
16162
  return {
16159
- ...(input.CreationTimeAfter != null && {
16160
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16161
- }),
16163
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16162
16164
  ...(input.CreationTimeBefore != null && {
16163
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16165
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16164
16166
  }),
16165
16167
  ...(input.LastModifiedTimeAfter != null && {
16166
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16168
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16167
16169
  }),
16168
16170
  ...(input.LastModifiedTimeBefore != null && {
16169
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16171
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16170
16172
  }),
16171
16173
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16172
16174
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16177,17 +16179,15 @@ const serializeAws_json1_1ListCodeRepositoriesInput = (input, context) => {
16177
16179
  };
16178
16180
  const serializeAws_json1_1ListCompilationJobsRequest = (input, context) => {
16179
16181
  return {
16180
- ...(input.CreationTimeAfter != null && {
16181
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16182
- }),
16182
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16183
16183
  ...(input.CreationTimeBefore != null && {
16184
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16184
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16185
16185
  }),
16186
16186
  ...(input.LastModifiedTimeAfter != null && {
16187
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16187
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16188
16188
  }),
16189
16189
  ...(input.LastModifiedTimeBefore != null && {
16190
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16190
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16191
16191
  }),
16192
16192
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16193
16193
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16200,8 +16200,8 @@ const serializeAws_json1_1ListCompilationJobsRequest = (input, context) => {
16200
16200
  const serializeAws_json1_1ListContextsRequest = (input, context) => {
16201
16201
  return {
16202
16202
  ...(input.ContextType != null && { ContextType: input.ContextType }),
16203
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16204
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
16203
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
16204
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16205
16205
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16206
16206
  ...(input.NextToken != null && { NextToken: input.NextToken }),
16207
16207
  ...(input.SortBy != null && { SortBy: input.SortBy }),
@@ -16211,11 +16211,9 @@ const serializeAws_json1_1ListContextsRequest = (input, context) => {
16211
16211
  };
16212
16212
  const serializeAws_json1_1ListDataQualityJobDefinitionsRequest = (input, context) => {
16213
16213
  return {
16214
- ...(input.CreationTimeAfter != null && {
16215
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16216
- }),
16214
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16217
16215
  ...(input.CreationTimeBefore != null && {
16218
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16216
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16219
16217
  }),
16220
16218
  ...(input.EndpointName != null && { EndpointName: input.EndpointName }),
16221
16219
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -16227,17 +16225,15 @@ const serializeAws_json1_1ListDataQualityJobDefinitionsRequest = (input, context
16227
16225
  };
16228
16226
  const serializeAws_json1_1ListDeviceFleetsRequest = (input, context) => {
16229
16227
  return {
16230
- ...(input.CreationTimeAfter != null && {
16231
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16232
- }),
16228
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16233
16229
  ...(input.CreationTimeBefore != null && {
16234
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16230
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16235
16231
  }),
16236
16232
  ...(input.LastModifiedTimeAfter != null && {
16237
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16233
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16238
16234
  }),
16239
16235
  ...(input.LastModifiedTimeBefore != null && {
16240
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16236
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16241
16237
  }),
16242
16238
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16243
16239
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16250,7 +16246,7 @@ const serializeAws_json1_1ListDevicesRequest = (input, context) => {
16250
16246
  return {
16251
16247
  ...(input.DeviceFleetName != null && { DeviceFleetName: input.DeviceFleetName }),
16252
16248
  ...(input.LatestHeartbeatAfter != null && {
16253
- LatestHeartbeatAfter: Math.round(input.LatestHeartbeatAfter.getTime() / 1000).toString(),
16249
+ LatestHeartbeatAfter: Math.round(input.LatestHeartbeatAfter.getTime() / 1000),
16254
16250
  }),
16255
16251
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16256
16252
  ...(input.ModelName != null && { ModelName: input.ModelName }),
@@ -16265,18 +16261,16 @@ const serializeAws_json1_1ListDomainsRequest = (input, context) => {
16265
16261
  };
16266
16262
  const serializeAws_json1_1ListEdgeDeploymentPlansRequest = (input, context) => {
16267
16263
  return {
16268
- ...(input.CreationTimeAfter != null && {
16269
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16270
- }),
16264
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16271
16265
  ...(input.CreationTimeBefore != null && {
16272
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16266
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16273
16267
  }),
16274
16268
  ...(input.DeviceFleetNameContains != null && { DeviceFleetNameContains: input.DeviceFleetNameContains }),
16275
16269
  ...(input.LastModifiedTimeAfter != null && {
16276
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16270
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16277
16271
  }),
16278
16272
  ...(input.LastModifiedTimeBefore != null && {
16279
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16273
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16280
16274
  }),
16281
16275
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16282
16276
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16287,17 +16281,15 @@ const serializeAws_json1_1ListEdgeDeploymentPlansRequest = (input, context) => {
16287
16281
  };
16288
16282
  const serializeAws_json1_1ListEdgePackagingJobsRequest = (input, context) => {
16289
16283
  return {
16290
- ...(input.CreationTimeAfter != null && {
16291
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16292
- }),
16284
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16293
16285
  ...(input.CreationTimeBefore != null && {
16294
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16286
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16295
16287
  }),
16296
16288
  ...(input.LastModifiedTimeAfter != null && {
16297
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16289
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16298
16290
  }),
16299
16291
  ...(input.LastModifiedTimeBefore != null && {
16300
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16292
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16301
16293
  }),
16302
16294
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16303
16295
  ...(input.ModelNameContains != null && { ModelNameContains: input.ModelNameContains }),
@@ -16310,11 +16302,9 @@ const serializeAws_json1_1ListEdgePackagingJobsRequest = (input, context) => {
16310
16302
  };
16311
16303
  const serializeAws_json1_1ListEndpointConfigsInput = (input, context) => {
16312
16304
  return {
16313
- ...(input.CreationTimeAfter != null && {
16314
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16315
- }),
16305
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16316
16306
  ...(input.CreationTimeBefore != null && {
16317
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16307
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16318
16308
  }),
16319
16309
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16320
16310
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16325,17 +16315,15 @@ const serializeAws_json1_1ListEndpointConfigsInput = (input, context) => {
16325
16315
  };
16326
16316
  const serializeAws_json1_1ListEndpointsInput = (input, context) => {
16327
16317
  return {
16328
- ...(input.CreationTimeAfter != null && {
16329
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16330
- }),
16318
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16331
16319
  ...(input.CreationTimeBefore != null && {
16332
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16320
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16333
16321
  }),
16334
16322
  ...(input.LastModifiedTimeAfter != null && {
16335
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16323
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16336
16324
  }),
16337
16325
  ...(input.LastModifiedTimeBefore != null && {
16338
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16326
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16339
16327
  }),
16340
16328
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16341
16329
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16347,8 +16335,8 @@ const serializeAws_json1_1ListEndpointsInput = (input, context) => {
16347
16335
  };
16348
16336
  const serializeAws_json1_1ListExperimentsRequest = (input, context) => {
16349
16337
  return {
16350
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16351
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
16338
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
16339
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16352
16340
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16353
16341
  ...(input.NextToken != null && { NextToken: input.NextToken }),
16354
16342
  ...(input.SortBy != null && { SortBy: input.SortBy }),
@@ -16357,11 +16345,9 @@ const serializeAws_json1_1ListExperimentsRequest = (input, context) => {
16357
16345
  };
16358
16346
  const serializeAws_json1_1ListFeatureGroupsRequest = (input, context) => {
16359
16347
  return {
16360
- ...(input.CreationTimeAfter != null && {
16361
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16362
- }),
16348
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16363
16349
  ...(input.CreationTimeBefore != null && {
16364
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16350
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16365
16351
  }),
16366
16352
  ...(input.FeatureGroupStatusEquals != null && { FeatureGroupStatusEquals: input.FeatureGroupStatusEquals }),
16367
16353
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -16374,11 +16360,9 @@ const serializeAws_json1_1ListFeatureGroupsRequest = (input, context) => {
16374
16360
  };
16375
16361
  const serializeAws_json1_1ListFlowDefinitionsRequest = (input, context) => {
16376
16362
  return {
16377
- ...(input.CreationTimeAfter != null && {
16378
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16379
- }),
16363
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16380
16364
  ...(input.CreationTimeBefore != null && {
16381
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16365
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16382
16366
  }),
16383
16367
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16384
16368
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -16387,11 +16371,9 @@ const serializeAws_json1_1ListFlowDefinitionsRequest = (input, context) => {
16387
16371
  };
16388
16372
  const serializeAws_json1_1ListHubContentsRequest = (input, context) => {
16389
16373
  return {
16390
- ...(input.CreationTimeAfter != null && {
16391
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16392
- }),
16374
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16393
16375
  ...(input.CreationTimeBefore != null && {
16394
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16376
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16395
16377
  }),
16396
16378
  ...(input.HubContentType != null && { HubContentType: input.HubContentType }),
16397
16379
  ...(input.HubName != null && { HubName: input.HubName }),
@@ -16405,11 +16387,9 @@ const serializeAws_json1_1ListHubContentsRequest = (input, context) => {
16405
16387
  };
16406
16388
  const serializeAws_json1_1ListHubContentVersionsRequest = (input, context) => {
16407
16389
  return {
16408
- ...(input.CreationTimeAfter != null && {
16409
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16410
- }),
16390
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16411
16391
  ...(input.CreationTimeBefore != null && {
16412
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16392
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16413
16393
  }),
16414
16394
  ...(input.HubContentName != null && { HubContentName: input.HubContentName }),
16415
16395
  ...(input.HubContentType != null && { HubContentType: input.HubContentType }),
@@ -16424,17 +16404,15 @@ const serializeAws_json1_1ListHubContentVersionsRequest = (input, context) => {
16424
16404
  };
16425
16405
  const serializeAws_json1_1ListHubsRequest = (input, context) => {
16426
16406
  return {
16427
- ...(input.CreationTimeAfter != null && {
16428
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16429
- }),
16407
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16430
16408
  ...(input.CreationTimeBefore != null && {
16431
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16409
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16432
16410
  }),
16433
16411
  ...(input.LastModifiedTimeAfter != null && {
16434
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16412
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16435
16413
  }),
16436
16414
  ...(input.LastModifiedTimeBefore != null && {
16437
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16415
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16438
16416
  }),
16439
16417
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16440
16418
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16445,11 +16423,9 @@ const serializeAws_json1_1ListHubsRequest = (input, context) => {
16445
16423
  };
16446
16424
  const serializeAws_json1_1ListHumanTaskUisRequest = (input, context) => {
16447
16425
  return {
16448
- ...(input.CreationTimeAfter != null && {
16449
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16450
- }),
16426
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16451
16427
  ...(input.CreationTimeBefore != null && {
16452
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16428
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16453
16429
  }),
16454
16430
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16455
16431
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -16458,17 +16434,15 @@ const serializeAws_json1_1ListHumanTaskUisRequest = (input, context) => {
16458
16434
  };
16459
16435
  const serializeAws_json1_1ListHyperParameterTuningJobsRequest = (input, context) => {
16460
16436
  return {
16461
- ...(input.CreationTimeAfter != null && {
16462
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16463
- }),
16437
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16464
16438
  ...(input.CreationTimeBefore != null && {
16465
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16439
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16466
16440
  }),
16467
16441
  ...(input.LastModifiedTimeAfter != null && {
16468
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16442
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16469
16443
  }),
16470
16444
  ...(input.LastModifiedTimeBefore != null && {
16471
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16445
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16472
16446
  }),
16473
16447
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16474
16448
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16480,17 +16454,15 @@ const serializeAws_json1_1ListHyperParameterTuningJobsRequest = (input, context)
16480
16454
  };
16481
16455
  const serializeAws_json1_1ListImagesRequest = (input, context) => {
16482
16456
  return {
16483
- ...(input.CreationTimeAfter != null && {
16484
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16485
- }),
16457
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16486
16458
  ...(input.CreationTimeBefore != null && {
16487
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16459
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16488
16460
  }),
16489
16461
  ...(input.LastModifiedTimeAfter != null && {
16490
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16462
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16491
16463
  }),
16492
16464
  ...(input.LastModifiedTimeBefore != null && {
16493
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16465
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16494
16466
  }),
16495
16467
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16496
16468
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16501,18 +16473,16 @@ const serializeAws_json1_1ListImagesRequest = (input, context) => {
16501
16473
  };
16502
16474
  const serializeAws_json1_1ListImageVersionsRequest = (input, context) => {
16503
16475
  return {
16504
- ...(input.CreationTimeAfter != null && {
16505
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16506
- }),
16476
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16507
16477
  ...(input.CreationTimeBefore != null && {
16508
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16478
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16509
16479
  }),
16510
16480
  ...(input.ImageName != null && { ImageName: input.ImageName }),
16511
16481
  ...(input.LastModifiedTimeAfter != null && {
16512
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16482
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16513
16483
  }),
16514
16484
  ...(input.LastModifiedTimeBefore != null && {
16515
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16485
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16516
16486
  }),
16517
16487
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16518
16488
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -16522,17 +16492,15 @@ const serializeAws_json1_1ListImageVersionsRequest = (input, context) => {
16522
16492
  };
16523
16493
  const serializeAws_json1_1ListInferenceExperimentsRequest = (input, context) => {
16524
16494
  return {
16525
- ...(input.CreationTimeAfter != null && {
16526
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16527
- }),
16495
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16528
16496
  ...(input.CreationTimeBefore != null && {
16529
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16497
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16530
16498
  }),
16531
16499
  ...(input.LastModifiedTimeAfter != null && {
16532
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16500
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16533
16501
  }),
16534
16502
  ...(input.LastModifiedTimeBefore != null && {
16535
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16503
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16536
16504
  }),
16537
16505
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16538
16506
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16545,17 +16513,15 @@ const serializeAws_json1_1ListInferenceExperimentsRequest = (input, context) =>
16545
16513
  };
16546
16514
  const serializeAws_json1_1ListInferenceRecommendationsJobsRequest = (input, context) => {
16547
16515
  return {
16548
- ...(input.CreationTimeAfter != null && {
16549
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16550
- }),
16516
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16551
16517
  ...(input.CreationTimeBefore != null && {
16552
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16518
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16553
16519
  }),
16554
16520
  ...(input.LastModifiedTimeAfter != null && {
16555
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16521
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16556
16522
  }),
16557
16523
  ...(input.LastModifiedTimeBefore != null && {
16558
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16524
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16559
16525
  }),
16560
16526
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16561
16527
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16576,11 +16542,9 @@ const serializeAws_json1_1ListInferenceRecommendationsJobStepsRequest = (input,
16576
16542
  };
16577
16543
  const serializeAws_json1_1ListLabelingJobsForWorkteamRequest = (input, context) => {
16578
16544
  return {
16579
- ...(input.CreationTimeAfter != null && {
16580
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16581
- }),
16545
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16582
16546
  ...(input.CreationTimeBefore != null && {
16583
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16547
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16584
16548
  }),
16585
16549
  ...(input.JobReferenceCodeContains != null && { JobReferenceCodeContains: input.JobReferenceCodeContains }),
16586
16550
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -16592,17 +16556,15 @@ const serializeAws_json1_1ListLabelingJobsForWorkteamRequest = (input, context)
16592
16556
  };
16593
16557
  const serializeAws_json1_1ListLabelingJobsRequest = (input, context) => {
16594
16558
  return {
16595
- ...(input.CreationTimeAfter != null && {
16596
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16597
- }),
16559
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16598
16560
  ...(input.CreationTimeBefore != null && {
16599
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16561
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16600
16562
  }),
16601
16563
  ...(input.LastModifiedTimeAfter != null && {
16602
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16564
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16603
16565
  }),
16604
16566
  ...(input.LastModifiedTimeBefore != null && {
16605
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16567
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16606
16568
  }),
16607
16569
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16608
16570
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16621,8 +16583,8 @@ const serializeAws_json1_1ListLineageEntityParameterKey = (input, context) => {
16621
16583
  };
16622
16584
  const serializeAws_json1_1ListLineageGroupsRequest = (input, context) => {
16623
16585
  return {
16624
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16625
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
16586
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
16587
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16626
16588
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16627
16589
  ...(input.NextToken != null && { NextToken: input.NextToken }),
16628
16590
  ...(input.SortBy != null && { SortBy: input.SortBy }),
@@ -16631,11 +16593,9 @@ const serializeAws_json1_1ListLineageGroupsRequest = (input, context) => {
16631
16593
  };
16632
16594
  const serializeAws_json1_1ListModelBiasJobDefinitionsRequest = (input, context) => {
16633
16595
  return {
16634
- ...(input.CreationTimeAfter != null && {
16635
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16636
- }),
16596
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16637
16597
  ...(input.CreationTimeBefore != null && {
16638
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16598
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16639
16599
  }),
16640
16600
  ...(input.EndpointName != null && { EndpointName: input.EndpointName }),
16641
16601
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -16647,11 +16607,9 @@ const serializeAws_json1_1ListModelBiasJobDefinitionsRequest = (input, context)
16647
16607
  };
16648
16608
  const serializeAws_json1_1ListModelCardExportJobsRequest = (input, context) => {
16649
16609
  return {
16650
- ...(input.CreationTimeAfter != null && {
16651
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16652
- }),
16610
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16653
16611
  ...(input.CreationTimeBefore != null && {
16654
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16612
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16655
16613
  }),
16656
16614
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16657
16615
  ...(input.ModelCardExportJobNameContains != null && {
@@ -16667,11 +16625,9 @@ const serializeAws_json1_1ListModelCardExportJobsRequest = (input, context) => {
16667
16625
  };
16668
16626
  const serializeAws_json1_1ListModelCardsRequest = (input, context) => {
16669
16627
  return {
16670
- ...(input.CreationTimeAfter != null && {
16671
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16672
- }),
16628
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16673
16629
  ...(input.CreationTimeBefore != null && {
16674
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16630
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16675
16631
  }),
16676
16632
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16677
16633
  ...(input.ModelCardStatus != null && { ModelCardStatus: input.ModelCardStatus }),
@@ -16683,11 +16639,9 @@ const serializeAws_json1_1ListModelCardsRequest = (input, context) => {
16683
16639
  };
16684
16640
  const serializeAws_json1_1ListModelCardVersionsRequest = (input, context) => {
16685
16641
  return {
16686
- ...(input.CreationTimeAfter != null && {
16687
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16688
- }),
16642
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16689
16643
  ...(input.CreationTimeBefore != null && {
16690
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16644
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16691
16645
  }),
16692
16646
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16693
16647
  ...(input.ModelCardName != null && { ModelCardName: input.ModelCardName }),
@@ -16699,11 +16653,9 @@ const serializeAws_json1_1ListModelCardVersionsRequest = (input, context) => {
16699
16653
  };
16700
16654
  const serializeAws_json1_1ListModelExplainabilityJobDefinitionsRequest = (input, context) => {
16701
16655
  return {
16702
- ...(input.CreationTimeAfter != null && {
16703
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16704
- }),
16656
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16705
16657
  ...(input.CreationTimeBefore != null && {
16706
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16658
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16707
16659
  }),
16708
16660
  ...(input.EndpointName != null && { EndpointName: input.EndpointName }),
16709
16661
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -16724,11 +16676,9 @@ const serializeAws_json1_1ListModelMetadataRequest = (input, context) => {
16724
16676
  };
16725
16677
  const serializeAws_json1_1ListModelPackageGroupsInput = (input, context) => {
16726
16678
  return {
16727
- ...(input.CreationTimeAfter != null && {
16728
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16729
- }),
16679
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16730
16680
  ...(input.CreationTimeBefore != null && {
16731
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16681
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16732
16682
  }),
16733
16683
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16734
16684
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16739,11 +16689,9 @@ const serializeAws_json1_1ListModelPackageGroupsInput = (input, context) => {
16739
16689
  };
16740
16690
  const serializeAws_json1_1ListModelPackagesInput = (input, context) => {
16741
16691
  return {
16742
- ...(input.CreationTimeAfter != null && {
16743
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16744
- }),
16692
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16745
16693
  ...(input.CreationTimeBefore != null && {
16746
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16694
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16747
16695
  }),
16748
16696
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16749
16697
  ...(input.ModelApprovalStatus != null && { ModelApprovalStatus: input.ModelApprovalStatus }),
@@ -16757,11 +16705,9 @@ const serializeAws_json1_1ListModelPackagesInput = (input, context) => {
16757
16705
  };
16758
16706
  const serializeAws_json1_1ListModelQualityJobDefinitionsRequest = (input, context) => {
16759
16707
  return {
16760
- ...(input.CreationTimeAfter != null && {
16761
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16762
- }),
16708
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16763
16709
  ...(input.CreationTimeBefore != null && {
16764
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16710
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16765
16711
  }),
16766
16712
  ...(input.EndpointName != null && { EndpointName: input.EndpointName }),
16767
16713
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -16773,11 +16719,9 @@ const serializeAws_json1_1ListModelQualityJobDefinitionsRequest = (input, contex
16773
16719
  };
16774
16720
  const serializeAws_json1_1ListModelsInput = (input, context) => {
16775
16721
  return {
16776
- ...(input.CreationTimeAfter != null && {
16777
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16778
- }),
16722
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16779
16723
  ...(input.CreationTimeBefore != null && {
16780
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16724
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16781
16725
  }),
16782
16726
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16783
16727
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16788,11 +16732,9 @@ const serializeAws_json1_1ListModelsInput = (input, context) => {
16788
16732
  };
16789
16733
  const serializeAws_json1_1ListMonitoringAlertHistoryRequest = (input, context) => {
16790
16734
  return {
16791
- ...(input.CreationTimeAfter != null && {
16792
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16793
- }),
16735
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16794
16736
  ...(input.CreationTimeBefore != null && {
16795
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16737
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16796
16738
  }),
16797
16739
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16798
16740
  ...(input.MonitoringAlertName != null && { MonitoringAlertName: input.MonitoringAlertName }),
@@ -16812,18 +16754,16 @@ const serializeAws_json1_1ListMonitoringAlertsRequest = (input, context) => {
16812
16754
  };
16813
16755
  const serializeAws_json1_1ListMonitoringExecutionsRequest = (input, context) => {
16814
16756
  return {
16815
- ...(input.CreationTimeAfter != null && {
16816
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16817
- }),
16757
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16818
16758
  ...(input.CreationTimeBefore != null && {
16819
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16759
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16820
16760
  }),
16821
16761
  ...(input.EndpointName != null && { EndpointName: input.EndpointName }),
16822
16762
  ...(input.LastModifiedTimeAfter != null && {
16823
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16763
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16824
16764
  }),
16825
16765
  ...(input.LastModifiedTimeBefore != null && {
16826
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16766
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16827
16767
  }),
16828
16768
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16829
16769
  ...(input.MonitoringJobDefinitionName != null && {
@@ -16833,10 +16773,10 @@ const serializeAws_json1_1ListMonitoringExecutionsRequest = (input, context) =>
16833
16773
  ...(input.MonitoringTypeEquals != null && { MonitoringTypeEquals: input.MonitoringTypeEquals }),
16834
16774
  ...(input.NextToken != null && { NextToken: input.NextToken }),
16835
16775
  ...(input.ScheduledTimeAfter != null && {
16836
- ScheduledTimeAfter: Math.round(input.ScheduledTimeAfter.getTime() / 1000).toString(),
16776
+ ScheduledTimeAfter: Math.round(input.ScheduledTimeAfter.getTime() / 1000),
16837
16777
  }),
16838
16778
  ...(input.ScheduledTimeBefore != null && {
16839
- ScheduledTimeBefore: Math.round(input.ScheduledTimeBefore.getTime() / 1000).toString(),
16779
+ ScheduledTimeBefore: Math.round(input.ScheduledTimeBefore.getTime() / 1000),
16840
16780
  }),
16841
16781
  ...(input.SortBy != null && { SortBy: input.SortBy }),
16842
16782
  ...(input.SortOrder != null && { SortOrder: input.SortOrder }),
@@ -16845,18 +16785,16 @@ const serializeAws_json1_1ListMonitoringExecutionsRequest = (input, context) =>
16845
16785
  };
16846
16786
  const serializeAws_json1_1ListMonitoringSchedulesRequest = (input, context) => {
16847
16787
  return {
16848
- ...(input.CreationTimeAfter != null && {
16849
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16850
- }),
16788
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16851
16789
  ...(input.CreationTimeBefore != null && {
16852
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16790
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16853
16791
  }),
16854
16792
  ...(input.EndpointName != null && { EndpointName: input.EndpointName }),
16855
16793
  ...(input.LastModifiedTimeAfter != null && {
16856
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16794
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16857
16795
  }),
16858
16796
  ...(input.LastModifiedTimeBefore != null && {
16859
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16797
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16860
16798
  }),
16861
16799
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16862
16800
  ...(input.MonitoringJobDefinitionName != null && {
@@ -16872,17 +16810,15 @@ const serializeAws_json1_1ListMonitoringSchedulesRequest = (input, context) => {
16872
16810
  };
16873
16811
  const serializeAws_json1_1ListNotebookInstanceLifecycleConfigsInput = (input, context) => {
16874
16812
  return {
16875
- ...(input.CreationTimeAfter != null && {
16876
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16877
- }),
16813
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16878
16814
  ...(input.CreationTimeBefore != null && {
16879
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16815
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16880
16816
  }),
16881
16817
  ...(input.LastModifiedTimeAfter != null && {
16882
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16818
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16883
16819
  }),
16884
16820
  ...(input.LastModifiedTimeBefore != null && {
16885
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16821
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16886
16822
  }),
16887
16823
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16888
16824
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16896,20 +16832,18 @@ const serializeAws_json1_1ListNotebookInstancesInput = (input, context) => {
16896
16832
  ...(input.AdditionalCodeRepositoryEquals != null && {
16897
16833
  AdditionalCodeRepositoryEquals: input.AdditionalCodeRepositoryEquals,
16898
16834
  }),
16899
- ...(input.CreationTimeAfter != null && {
16900
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16901
- }),
16835
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16902
16836
  ...(input.CreationTimeBefore != null && {
16903
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16837
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16904
16838
  }),
16905
16839
  ...(input.DefaultCodeRepositoryContains != null && {
16906
16840
  DefaultCodeRepositoryContains: input.DefaultCodeRepositoryContains,
16907
16841
  }),
16908
16842
  ...(input.LastModifiedTimeAfter != null && {
16909
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16843
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16910
16844
  }),
16911
16845
  ...(input.LastModifiedTimeBefore != null && {
16912
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16846
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16913
16847
  }),
16914
16848
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16915
16849
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16924,8 +16858,8 @@ const serializeAws_json1_1ListNotebookInstancesInput = (input, context) => {
16924
16858
  };
16925
16859
  const serializeAws_json1_1ListPipelineExecutionsRequest = (input, context) => {
16926
16860
  return {
16927
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16928
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
16861
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
16862
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16929
16863
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16930
16864
  ...(input.NextToken != null && { NextToken: input.NextToken }),
16931
16865
  ...(input.PipelineName != null && { PipelineName: input.PipelineName }),
@@ -16950,8 +16884,8 @@ const serializeAws_json1_1ListPipelineParametersForExecutionRequest = (input, co
16950
16884
  };
16951
16885
  const serializeAws_json1_1ListPipelinesRequest = (input, context) => {
16952
16886
  return {
16953
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16954
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
16887
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
16888
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16955
16889
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16956
16890
  ...(input.NextToken != null && { NextToken: input.NextToken }),
16957
16891
  ...(input.PipelineNamePrefix != null && { PipelineNamePrefix: input.PipelineNamePrefix }),
@@ -16961,17 +16895,15 @@ const serializeAws_json1_1ListPipelinesRequest = (input, context) => {
16961
16895
  };
16962
16896
  const serializeAws_json1_1ListProcessingJobsRequest = (input, context) => {
16963
16897
  return {
16964
- ...(input.CreationTimeAfter != null && {
16965
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16966
- }),
16898
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16967
16899
  ...(input.CreationTimeBefore != null && {
16968
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16900
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16969
16901
  }),
16970
16902
  ...(input.LastModifiedTimeAfter != null && {
16971
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16903
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16972
16904
  }),
16973
16905
  ...(input.LastModifiedTimeBefore != null && {
16974
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16906
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16975
16907
  }),
16976
16908
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16977
16909
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16983,11 +16915,9 @@ const serializeAws_json1_1ListProcessingJobsRequest = (input, context) => {
16983
16915
  };
16984
16916
  const serializeAws_json1_1ListProjectsInput = (input, context) => {
16985
16917
  return {
16986
- ...(input.CreationTimeAfter != null && {
16987
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16988
- }),
16918
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16989
16919
  ...(input.CreationTimeBefore != null && {
16990
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16920
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16991
16921
  }),
16992
16922
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16993
16923
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -17020,18 +16950,14 @@ const serializeAws_json1_1ListStageDevicesRequest = (input, context) => {
17020
16950
  const serializeAws_json1_1ListStudioLifecycleConfigsRequest = (input, context) => {
17021
16951
  return {
17022
16952
  ...(input.AppTypeEquals != null && { AppTypeEquals: input.AppTypeEquals }),
17023
- ...(input.CreationTimeAfter != null && {
17024
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
17025
- }),
16953
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
17026
16954
  ...(input.CreationTimeBefore != null && {
17027
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16955
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
17028
16956
  }),
17029
16957
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
17030
- ...(input.ModifiedTimeAfter != null && {
17031
- ModifiedTimeAfter: Math.round(input.ModifiedTimeAfter.getTime() / 1000).toString(),
17032
- }),
16958
+ ...(input.ModifiedTimeAfter != null && { ModifiedTimeAfter: Math.round(input.ModifiedTimeAfter.getTime() / 1000) }),
17033
16959
  ...(input.ModifiedTimeBefore != null && {
17034
- ModifiedTimeBefore: Math.round(input.ModifiedTimeBefore.getTime() / 1000).toString(),
16960
+ ModifiedTimeBefore: Math.round(input.ModifiedTimeBefore.getTime() / 1000),
17035
16961
  }),
17036
16962
  ...(input.NameContains != null && { NameContains: input.NameContains }),
17037
16963
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -17067,17 +16993,15 @@ const serializeAws_json1_1ListTrainingJobsForHyperParameterTuningJobRequest = (i
17067
16993
  };
17068
16994
  const serializeAws_json1_1ListTrainingJobsRequest = (input, context) => {
17069
16995
  return {
17070
- ...(input.CreationTimeAfter != null && {
17071
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
17072
- }),
16996
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
17073
16997
  ...(input.CreationTimeBefore != null && {
17074
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16998
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
17075
16999
  }),
17076
17000
  ...(input.LastModifiedTimeAfter != null && {
17077
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
17001
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
17078
17002
  }),
17079
17003
  ...(input.LastModifiedTimeBefore != null && {
17080
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
17004
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
17081
17005
  }),
17082
17006
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
17083
17007
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -17090,17 +17014,15 @@ const serializeAws_json1_1ListTrainingJobsRequest = (input, context) => {
17090
17014
  };
17091
17015
  const serializeAws_json1_1ListTransformJobsRequest = (input, context) => {
17092
17016
  return {
17093
- ...(input.CreationTimeAfter != null && {
17094
- CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
17095
- }),
17017
+ ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
17096
17018
  ...(input.CreationTimeBefore != null && {
17097
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
17019
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
17098
17020
  }),
17099
17021
  ...(input.LastModifiedTimeAfter != null && {
17100
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
17022
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
17101
17023
  }),
17102
17024
  ...(input.LastModifiedTimeBefore != null && {
17103
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
17025
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
17104
17026
  }),
17105
17027
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
17106
17028
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -17119,8 +17041,8 @@ const serializeAws_json1_1ListTrialComponentKey256 = (input, context) => {
17119
17041
  };
17120
17042
  const serializeAws_json1_1ListTrialComponentsRequest = (input, context) => {
17121
17043
  return {
17122
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
17123
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
17044
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
17045
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
17124
17046
  ...(input.ExperimentName != null && { ExperimentName: input.ExperimentName }),
17125
17047
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
17126
17048
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -17132,8 +17054,8 @@ const serializeAws_json1_1ListTrialComponentsRequest = (input, context) => {
17132
17054
  };
17133
17055
  const serializeAws_json1_1ListTrialsRequest = (input, context) => {
17134
17056
  return {
17135
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
17136
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
17057
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
17058
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
17137
17059
  ...(input.ExperimentName != null && { ExperimentName: input.ExperimentName }),
17138
17060
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
17139
17061
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -18127,15 +18049,13 @@ const serializeAws_json1_1PutModelPackageGroupPolicyInput = (input, context) =>
18127
18049
  };
18128
18050
  const serializeAws_json1_1QueryFilters = (input, context) => {
18129
18051
  return {
18130
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
18131
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
18052
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
18053
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
18132
18054
  ...(input.LineageTypes != null && {
18133
18055
  LineageTypes: serializeAws_json1_1QueryLineageTypes(input.LineageTypes, context),
18134
18056
  }),
18135
- ...(input.ModifiedAfter != null && { ModifiedAfter: Math.round(input.ModifiedAfter.getTime() / 1000).toString() }),
18136
- ...(input.ModifiedBefore != null && {
18137
- ModifiedBefore: Math.round(input.ModifiedBefore.getTime() / 1000).toString(),
18138
- }),
18057
+ ...(input.ModifiedAfter != null && { ModifiedAfter: Math.round(input.ModifiedAfter.getTime() / 1000) }),
18058
+ ...(input.ModifiedBefore != null && { ModifiedBefore: Math.round(input.ModifiedBefore.getTime() / 1000) }),
18139
18059
  ...(input.Properties != null && { Properties: serializeAws_json1_1QueryProperties(input.Properties, context) }),
18140
18060
  ...(input.Types != null && { Types: serializeAws_json1_1QueryTypes(input.Types, context) }),
18141
18061
  };
@@ -19366,7 +19286,7 @@ const serializeAws_json1_1UpdateTrainingJobRequest = (input, context) => {
19366
19286
  const serializeAws_json1_1UpdateTrialComponentRequest = (input, context) => {
19367
19287
  return {
19368
19288
  ...(input.DisplayName != null && { DisplayName: input.DisplayName }),
19369
- ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
19289
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
19370
19290
  ...(input.InputArtifacts != null && {
19371
19291
  InputArtifacts: serializeAws_json1_1TrialComponentArtifacts(input.InputArtifacts, context),
19372
19292
  }),
@@ -19385,7 +19305,7 @@ const serializeAws_json1_1UpdateTrialComponentRequest = (input, context) => {
19385
19305
  ...(input.ParametersToRemove != null && {
19386
19306
  ParametersToRemove: serializeAws_json1_1ListTrialComponentKey256(input.ParametersToRemove, context),
19387
19307
  }),
19388
- ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
19308
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
19389
19309
  ...(input.Status != null && { Status: serializeAws_json1_1TrialComponentStatus(input.Status, context) }),
19390
19310
  ...(input.TrialComponentName != null && { TrialComponentName: input.TrialComponentName }),
19391
19311
  };
@@ -23931,6 +23851,9 @@ const deserializeAws_json1_1HyperParameterTrainingJobDefinition = (output, conte
23931
23851
  EnableInterContainerTrafficEncryption: (0, smithy_client_1.expectBoolean)(output.EnableInterContainerTrafficEncryption),
23932
23852
  EnableManagedSpotTraining: (0, smithy_client_1.expectBoolean)(output.EnableManagedSpotTraining),
23933
23853
  EnableNetworkIsolation: (0, smithy_client_1.expectBoolean)(output.EnableNetworkIsolation),
23854
+ Environment: output.Environment != null
23855
+ ? deserializeAws_json1_1HyperParameterTrainingJobEnvironmentMap(output.Environment, context)
23856
+ : undefined,
23934
23857
  HyperParameterRanges: output.HyperParameterRanges != null
23935
23858
  ? deserializeAws_json1_1ParameterRanges(output.HyperParameterRanges, context)
23936
23859
  : undefined,
@@ -23969,6 +23892,15 @@ const deserializeAws_json1_1HyperParameterTrainingJobDefinitions = (output, cont
23969
23892
  });
23970
23893
  return retVal;
23971
23894
  };
23895
+ const deserializeAws_json1_1HyperParameterTrainingJobEnvironmentMap = (output, context) => {
23896
+ return Object.entries(output).reduce((acc, [key, value]) => {
23897
+ if (value === null) {
23898
+ return acc;
23899
+ }
23900
+ acc[key] = (0, smithy_client_1.expectString)(value);
23901
+ return acc;
23902
+ }, {});
23903
+ };
23972
23904
  const deserializeAws_json1_1HyperParameterTrainingJobSummaries = (output, context) => {
23973
23905
  const retVal = (output || [])
23974
23906
  .filter((e) => e != null)