@aws-sdk/client-sagemaker 3.241.0 → 3.252.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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) }),
14282
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
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) }),
14295
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
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 }),
@@ -15793,8 +15793,8 @@ const serializeAws_json1_1InferenceExperimentDataStorageConfig = (input, context
15793
15793
  };
15794
15794
  const serializeAws_json1_1InferenceExperimentSchedule = (input, context) => {
15795
15795
  return {
15796
- ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
15797
- ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
15796
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
15797
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
15798
15798
  };
15799
15799
  };
15800
15800
  const serializeAws_json1_1InferenceSpecification = (input, context) => {
@@ -16029,8 +16029,8 @@ const serializeAws_json1_1LineageEntityParameters = (input, context) => {
16029
16029
  const serializeAws_json1_1ListActionsRequest = (input, context) => {
16030
16030
  return {
16031
16031
  ...(input.ActionType != null && { ActionType: input.ActionType }),
16032
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
16033
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16032
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16033
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
16034
16034
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16035
16035
  ...(input.NextToken != null && { NextToken: input.NextToken }),
16036
16036
  ...(input.SortBy != null && { SortBy: input.SortBy }),
@@ -16040,9 +16040,11 @@ const serializeAws_json1_1ListActionsRequest = (input, context) => {
16040
16040
  };
16041
16041
  const serializeAws_json1_1ListAlgorithmsInput = (input, context) => {
16042
16042
  return {
16043
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16043
+ ...(input.CreationTimeAfter != null && {
16044
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16045
+ }),
16044
16046
  ...(input.CreationTimeBefore != null && {
16045
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16047
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16046
16048
  }),
16047
16049
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16048
16050
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16062,14 +16064,18 @@ const serializeAws_json1_1ListAliasesRequest = (input, context) => {
16062
16064
  };
16063
16065
  const serializeAws_json1_1ListAppImageConfigsRequest = (input, context) => {
16064
16066
  return {
16065
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16067
+ ...(input.CreationTimeAfter != null && {
16068
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16069
+ }),
16066
16070
  ...(input.CreationTimeBefore != null && {
16067
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16071
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16068
16072
  }),
16069
16073
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16070
- ...(input.ModifiedTimeAfter != null && { ModifiedTimeAfter: Math.round(input.ModifiedTimeAfter.getTime() / 1000) }),
16074
+ ...(input.ModifiedTimeAfter != null && {
16075
+ ModifiedTimeAfter: Math.round(input.ModifiedTimeAfter.getTime() / 1000).toString(),
16076
+ }),
16071
16077
  ...(input.ModifiedTimeBefore != null && {
16072
- ModifiedTimeBefore: Math.round(input.ModifiedTimeBefore.getTime() / 1000),
16078
+ ModifiedTimeBefore: Math.round(input.ModifiedTimeBefore.getTime() / 1000).toString(),
16073
16079
  }),
16074
16080
  ...(input.NameContains != null && { NameContains: input.NameContains }),
16075
16081
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -16091,8 +16097,8 @@ const serializeAws_json1_1ListAppsRequest = (input, context) => {
16091
16097
  const serializeAws_json1_1ListArtifactsRequest = (input, context) => {
16092
16098
  return {
16093
16099
  ...(input.ArtifactType != null && { ArtifactType: input.ArtifactType }),
16094
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
16095
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16100
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16101
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
16096
16102
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16097
16103
  ...(input.NextToken != null && { NextToken: input.NextToken }),
16098
16104
  ...(input.SortBy != null && { SortBy: input.SortBy }),
@@ -16103,8 +16109,8 @@ const serializeAws_json1_1ListArtifactsRequest = (input, context) => {
16103
16109
  const serializeAws_json1_1ListAssociationsRequest = (input, context) => {
16104
16110
  return {
16105
16111
  ...(input.AssociationType != null && { AssociationType: input.AssociationType }),
16106
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
16107
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16112
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16113
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
16108
16114
  ...(input.DestinationArn != null && { DestinationArn: input.DestinationArn }),
16109
16115
  ...(input.DestinationType != null && { DestinationType: input.DestinationType }),
16110
16116
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -16117,15 +16123,17 @@ const serializeAws_json1_1ListAssociationsRequest = (input, context) => {
16117
16123
  };
16118
16124
  const serializeAws_json1_1ListAutoMLJobsRequest = (input, context) => {
16119
16125
  return {
16120
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16126
+ ...(input.CreationTimeAfter != null && {
16127
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16128
+ }),
16121
16129
  ...(input.CreationTimeBefore != null && {
16122
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16130
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16123
16131
  }),
16124
16132
  ...(input.LastModifiedTimeAfter != null && {
16125
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16133
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16126
16134
  }),
16127
16135
  ...(input.LastModifiedTimeBefore != null && {
16128
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16136
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16129
16137
  }),
16130
16138
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16131
16139
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16148,15 +16156,17 @@ const serializeAws_json1_1ListCandidatesForAutoMLJobRequest = (input, context) =
16148
16156
  };
16149
16157
  const serializeAws_json1_1ListCodeRepositoriesInput = (input, context) => {
16150
16158
  return {
16151
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16159
+ ...(input.CreationTimeAfter != null && {
16160
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16161
+ }),
16152
16162
  ...(input.CreationTimeBefore != null && {
16153
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16163
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16154
16164
  }),
16155
16165
  ...(input.LastModifiedTimeAfter != null && {
16156
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16166
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16157
16167
  }),
16158
16168
  ...(input.LastModifiedTimeBefore != null && {
16159
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16169
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16160
16170
  }),
16161
16171
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16162
16172
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16167,15 +16177,17 @@ const serializeAws_json1_1ListCodeRepositoriesInput = (input, context) => {
16167
16177
  };
16168
16178
  const serializeAws_json1_1ListCompilationJobsRequest = (input, context) => {
16169
16179
  return {
16170
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16180
+ ...(input.CreationTimeAfter != null && {
16181
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16182
+ }),
16171
16183
  ...(input.CreationTimeBefore != null && {
16172
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16184
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16173
16185
  }),
16174
16186
  ...(input.LastModifiedTimeAfter != null && {
16175
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16187
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16176
16188
  }),
16177
16189
  ...(input.LastModifiedTimeBefore != null && {
16178
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16190
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16179
16191
  }),
16180
16192
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16181
16193
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16188,8 +16200,8 @@ const serializeAws_json1_1ListCompilationJobsRequest = (input, context) => {
16188
16200
  const serializeAws_json1_1ListContextsRequest = (input, context) => {
16189
16201
  return {
16190
16202
  ...(input.ContextType != null && { ContextType: input.ContextType }),
16191
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
16192
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16203
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16204
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
16193
16205
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16194
16206
  ...(input.NextToken != null && { NextToken: input.NextToken }),
16195
16207
  ...(input.SortBy != null && { SortBy: input.SortBy }),
@@ -16199,9 +16211,11 @@ const serializeAws_json1_1ListContextsRequest = (input, context) => {
16199
16211
  };
16200
16212
  const serializeAws_json1_1ListDataQualityJobDefinitionsRequest = (input, context) => {
16201
16213
  return {
16202
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16214
+ ...(input.CreationTimeAfter != null && {
16215
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16216
+ }),
16203
16217
  ...(input.CreationTimeBefore != null && {
16204
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16218
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16205
16219
  }),
16206
16220
  ...(input.EndpointName != null && { EndpointName: input.EndpointName }),
16207
16221
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -16213,15 +16227,17 @@ const serializeAws_json1_1ListDataQualityJobDefinitionsRequest = (input, context
16213
16227
  };
16214
16228
  const serializeAws_json1_1ListDeviceFleetsRequest = (input, context) => {
16215
16229
  return {
16216
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16230
+ ...(input.CreationTimeAfter != null && {
16231
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16232
+ }),
16217
16233
  ...(input.CreationTimeBefore != null && {
16218
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16234
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16219
16235
  }),
16220
16236
  ...(input.LastModifiedTimeAfter != null && {
16221
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16237
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16222
16238
  }),
16223
16239
  ...(input.LastModifiedTimeBefore != null && {
16224
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16240
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16225
16241
  }),
16226
16242
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16227
16243
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16234,7 +16250,7 @@ const serializeAws_json1_1ListDevicesRequest = (input, context) => {
16234
16250
  return {
16235
16251
  ...(input.DeviceFleetName != null && { DeviceFleetName: input.DeviceFleetName }),
16236
16252
  ...(input.LatestHeartbeatAfter != null && {
16237
- LatestHeartbeatAfter: Math.round(input.LatestHeartbeatAfter.getTime() / 1000),
16253
+ LatestHeartbeatAfter: Math.round(input.LatestHeartbeatAfter.getTime() / 1000).toString(),
16238
16254
  }),
16239
16255
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16240
16256
  ...(input.ModelName != null && { ModelName: input.ModelName }),
@@ -16249,16 +16265,18 @@ const serializeAws_json1_1ListDomainsRequest = (input, context) => {
16249
16265
  };
16250
16266
  const serializeAws_json1_1ListEdgeDeploymentPlansRequest = (input, context) => {
16251
16267
  return {
16252
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16268
+ ...(input.CreationTimeAfter != null && {
16269
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16270
+ }),
16253
16271
  ...(input.CreationTimeBefore != null && {
16254
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16272
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16255
16273
  }),
16256
16274
  ...(input.DeviceFleetNameContains != null && { DeviceFleetNameContains: input.DeviceFleetNameContains }),
16257
16275
  ...(input.LastModifiedTimeAfter != null && {
16258
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16276
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16259
16277
  }),
16260
16278
  ...(input.LastModifiedTimeBefore != null && {
16261
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16279
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16262
16280
  }),
16263
16281
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16264
16282
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16269,15 +16287,17 @@ const serializeAws_json1_1ListEdgeDeploymentPlansRequest = (input, context) => {
16269
16287
  };
16270
16288
  const serializeAws_json1_1ListEdgePackagingJobsRequest = (input, context) => {
16271
16289
  return {
16272
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16290
+ ...(input.CreationTimeAfter != null && {
16291
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16292
+ }),
16273
16293
  ...(input.CreationTimeBefore != null && {
16274
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16294
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16275
16295
  }),
16276
16296
  ...(input.LastModifiedTimeAfter != null && {
16277
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16297
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16278
16298
  }),
16279
16299
  ...(input.LastModifiedTimeBefore != null && {
16280
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16300
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16281
16301
  }),
16282
16302
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16283
16303
  ...(input.ModelNameContains != null && { ModelNameContains: input.ModelNameContains }),
@@ -16290,9 +16310,11 @@ const serializeAws_json1_1ListEdgePackagingJobsRequest = (input, context) => {
16290
16310
  };
16291
16311
  const serializeAws_json1_1ListEndpointConfigsInput = (input, context) => {
16292
16312
  return {
16293
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16313
+ ...(input.CreationTimeAfter != null && {
16314
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16315
+ }),
16294
16316
  ...(input.CreationTimeBefore != null && {
16295
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16317
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16296
16318
  }),
16297
16319
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16298
16320
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16303,15 +16325,17 @@ const serializeAws_json1_1ListEndpointConfigsInput = (input, context) => {
16303
16325
  };
16304
16326
  const serializeAws_json1_1ListEndpointsInput = (input, context) => {
16305
16327
  return {
16306
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16328
+ ...(input.CreationTimeAfter != null && {
16329
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16330
+ }),
16307
16331
  ...(input.CreationTimeBefore != null && {
16308
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16332
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16309
16333
  }),
16310
16334
  ...(input.LastModifiedTimeAfter != null && {
16311
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16335
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16312
16336
  }),
16313
16337
  ...(input.LastModifiedTimeBefore != null && {
16314
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16338
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16315
16339
  }),
16316
16340
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16317
16341
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16323,8 +16347,8 @@ const serializeAws_json1_1ListEndpointsInput = (input, context) => {
16323
16347
  };
16324
16348
  const serializeAws_json1_1ListExperimentsRequest = (input, context) => {
16325
16349
  return {
16326
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
16327
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16350
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16351
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
16328
16352
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16329
16353
  ...(input.NextToken != null && { NextToken: input.NextToken }),
16330
16354
  ...(input.SortBy != null && { SortBy: input.SortBy }),
@@ -16333,9 +16357,11 @@ const serializeAws_json1_1ListExperimentsRequest = (input, context) => {
16333
16357
  };
16334
16358
  const serializeAws_json1_1ListFeatureGroupsRequest = (input, context) => {
16335
16359
  return {
16336
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16360
+ ...(input.CreationTimeAfter != null && {
16361
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16362
+ }),
16337
16363
  ...(input.CreationTimeBefore != null && {
16338
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16364
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16339
16365
  }),
16340
16366
  ...(input.FeatureGroupStatusEquals != null && { FeatureGroupStatusEquals: input.FeatureGroupStatusEquals }),
16341
16367
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -16348,9 +16374,11 @@ const serializeAws_json1_1ListFeatureGroupsRequest = (input, context) => {
16348
16374
  };
16349
16375
  const serializeAws_json1_1ListFlowDefinitionsRequest = (input, context) => {
16350
16376
  return {
16351
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16377
+ ...(input.CreationTimeAfter != null && {
16378
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16379
+ }),
16352
16380
  ...(input.CreationTimeBefore != null && {
16353
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16381
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16354
16382
  }),
16355
16383
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16356
16384
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -16359,9 +16387,11 @@ const serializeAws_json1_1ListFlowDefinitionsRequest = (input, context) => {
16359
16387
  };
16360
16388
  const serializeAws_json1_1ListHubContentsRequest = (input, context) => {
16361
16389
  return {
16362
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16390
+ ...(input.CreationTimeAfter != null && {
16391
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16392
+ }),
16363
16393
  ...(input.CreationTimeBefore != null && {
16364
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16394
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16365
16395
  }),
16366
16396
  ...(input.HubContentType != null && { HubContentType: input.HubContentType }),
16367
16397
  ...(input.HubName != null && { HubName: input.HubName }),
@@ -16375,9 +16405,11 @@ const serializeAws_json1_1ListHubContentsRequest = (input, context) => {
16375
16405
  };
16376
16406
  const serializeAws_json1_1ListHubContentVersionsRequest = (input, context) => {
16377
16407
  return {
16378
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16408
+ ...(input.CreationTimeAfter != null && {
16409
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16410
+ }),
16379
16411
  ...(input.CreationTimeBefore != null && {
16380
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16412
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16381
16413
  }),
16382
16414
  ...(input.HubContentName != null && { HubContentName: input.HubContentName }),
16383
16415
  ...(input.HubContentType != null && { HubContentType: input.HubContentType }),
@@ -16392,15 +16424,17 @@ const serializeAws_json1_1ListHubContentVersionsRequest = (input, context) => {
16392
16424
  };
16393
16425
  const serializeAws_json1_1ListHubsRequest = (input, context) => {
16394
16426
  return {
16395
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16427
+ ...(input.CreationTimeAfter != null && {
16428
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16429
+ }),
16396
16430
  ...(input.CreationTimeBefore != null && {
16397
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16431
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16398
16432
  }),
16399
16433
  ...(input.LastModifiedTimeAfter != null && {
16400
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16434
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16401
16435
  }),
16402
16436
  ...(input.LastModifiedTimeBefore != null && {
16403
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16437
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16404
16438
  }),
16405
16439
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16406
16440
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16411,9 +16445,11 @@ const serializeAws_json1_1ListHubsRequest = (input, context) => {
16411
16445
  };
16412
16446
  const serializeAws_json1_1ListHumanTaskUisRequest = (input, context) => {
16413
16447
  return {
16414
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16448
+ ...(input.CreationTimeAfter != null && {
16449
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16450
+ }),
16415
16451
  ...(input.CreationTimeBefore != null && {
16416
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16452
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16417
16453
  }),
16418
16454
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16419
16455
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -16422,15 +16458,17 @@ const serializeAws_json1_1ListHumanTaskUisRequest = (input, context) => {
16422
16458
  };
16423
16459
  const serializeAws_json1_1ListHyperParameterTuningJobsRequest = (input, context) => {
16424
16460
  return {
16425
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16461
+ ...(input.CreationTimeAfter != null && {
16462
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16463
+ }),
16426
16464
  ...(input.CreationTimeBefore != null && {
16427
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16465
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16428
16466
  }),
16429
16467
  ...(input.LastModifiedTimeAfter != null && {
16430
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16468
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16431
16469
  }),
16432
16470
  ...(input.LastModifiedTimeBefore != null && {
16433
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16471
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16434
16472
  }),
16435
16473
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16436
16474
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16442,15 +16480,17 @@ const serializeAws_json1_1ListHyperParameterTuningJobsRequest = (input, context)
16442
16480
  };
16443
16481
  const serializeAws_json1_1ListImagesRequest = (input, context) => {
16444
16482
  return {
16445
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16483
+ ...(input.CreationTimeAfter != null && {
16484
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16485
+ }),
16446
16486
  ...(input.CreationTimeBefore != null && {
16447
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16487
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16448
16488
  }),
16449
16489
  ...(input.LastModifiedTimeAfter != null && {
16450
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16490
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16451
16491
  }),
16452
16492
  ...(input.LastModifiedTimeBefore != null && {
16453
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16493
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16454
16494
  }),
16455
16495
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16456
16496
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16461,16 +16501,18 @@ const serializeAws_json1_1ListImagesRequest = (input, context) => {
16461
16501
  };
16462
16502
  const serializeAws_json1_1ListImageVersionsRequest = (input, context) => {
16463
16503
  return {
16464
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16504
+ ...(input.CreationTimeAfter != null && {
16505
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16506
+ }),
16465
16507
  ...(input.CreationTimeBefore != null && {
16466
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16508
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16467
16509
  }),
16468
16510
  ...(input.ImageName != null && { ImageName: input.ImageName }),
16469
16511
  ...(input.LastModifiedTimeAfter != null && {
16470
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16512
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16471
16513
  }),
16472
16514
  ...(input.LastModifiedTimeBefore != null && {
16473
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16515
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16474
16516
  }),
16475
16517
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16476
16518
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -16480,15 +16522,17 @@ const serializeAws_json1_1ListImageVersionsRequest = (input, context) => {
16480
16522
  };
16481
16523
  const serializeAws_json1_1ListInferenceExperimentsRequest = (input, context) => {
16482
16524
  return {
16483
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16525
+ ...(input.CreationTimeAfter != null && {
16526
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16527
+ }),
16484
16528
  ...(input.CreationTimeBefore != null && {
16485
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16529
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16486
16530
  }),
16487
16531
  ...(input.LastModifiedTimeAfter != null && {
16488
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16532
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16489
16533
  }),
16490
16534
  ...(input.LastModifiedTimeBefore != null && {
16491
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16535
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16492
16536
  }),
16493
16537
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16494
16538
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16501,15 +16545,17 @@ const serializeAws_json1_1ListInferenceExperimentsRequest = (input, context) =>
16501
16545
  };
16502
16546
  const serializeAws_json1_1ListInferenceRecommendationsJobsRequest = (input, context) => {
16503
16547
  return {
16504
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16548
+ ...(input.CreationTimeAfter != null && {
16549
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16550
+ }),
16505
16551
  ...(input.CreationTimeBefore != null && {
16506
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16552
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16507
16553
  }),
16508
16554
  ...(input.LastModifiedTimeAfter != null && {
16509
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16555
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16510
16556
  }),
16511
16557
  ...(input.LastModifiedTimeBefore != null && {
16512
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16558
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16513
16559
  }),
16514
16560
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16515
16561
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16530,9 +16576,11 @@ const serializeAws_json1_1ListInferenceRecommendationsJobStepsRequest = (input,
16530
16576
  };
16531
16577
  const serializeAws_json1_1ListLabelingJobsForWorkteamRequest = (input, context) => {
16532
16578
  return {
16533
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16579
+ ...(input.CreationTimeAfter != null && {
16580
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16581
+ }),
16534
16582
  ...(input.CreationTimeBefore != null && {
16535
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16583
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16536
16584
  }),
16537
16585
  ...(input.JobReferenceCodeContains != null && { JobReferenceCodeContains: input.JobReferenceCodeContains }),
16538
16586
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -16544,15 +16592,17 @@ const serializeAws_json1_1ListLabelingJobsForWorkteamRequest = (input, context)
16544
16592
  };
16545
16593
  const serializeAws_json1_1ListLabelingJobsRequest = (input, context) => {
16546
16594
  return {
16547
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16595
+ ...(input.CreationTimeAfter != null && {
16596
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16597
+ }),
16548
16598
  ...(input.CreationTimeBefore != null && {
16549
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16599
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16550
16600
  }),
16551
16601
  ...(input.LastModifiedTimeAfter != null && {
16552
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16602
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16553
16603
  }),
16554
16604
  ...(input.LastModifiedTimeBefore != null && {
16555
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16605
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16556
16606
  }),
16557
16607
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16558
16608
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16571,8 +16621,8 @@ const serializeAws_json1_1ListLineageEntityParameterKey = (input, context) => {
16571
16621
  };
16572
16622
  const serializeAws_json1_1ListLineageGroupsRequest = (input, context) => {
16573
16623
  return {
16574
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
16575
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16624
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16625
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
16576
16626
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16577
16627
  ...(input.NextToken != null && { NextToken: input.NextToken }),
16578
16628
  ...(input.SortBy != null && { SortBy: input.SortBy }),
@@ -16581,9 +16631,11 @@ const serializeAws_json1_1ListLineageGroupsRequest = (input, context) => {
16581
16631
  };
16582
16632
  const serializeAws_json1_1ListModelBiasJobDefinitionsRequest = (input, context) => {
16583
16633
  return {
16584
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16634
+ ...(input.CreationTimeAfter != null && {
16635
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16636
+ }),
16585
16637
  ...(input.CreationTimeBefore != null && {
16586
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16638
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16587
16639
  }),
16588
16640
  ...(input.EndpointName != null && { EndpointName: input.EndpointName }),
16589
16641
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -16595,9 +16647,11 @@ const serializeAws_json1_1ListModelBiasJobDefinitionsRequest = (input, context)
16595
16647
  };
16596
16648
  const serializeAws_json1_1ListModelCardExportJobsRequest = (input, context) => {
16597
16649
  return {
16598
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16650
+ ...(input.CreationTimeAfter != null && {
16651
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16652
+ }),
16599
16653
  ...(input.CreationTimeBefore != null && {
16600
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16654
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16601
16655
  }),
16602
16656
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16603
16657
  ...(input.ModelCardExportJobNameContains != null && {
@@ -16613,9 +16667,11 @@ const serializeAws_json1_1ListModelCardExportJobsRequest = (input, context) => {
16613
16667
  };
16614
16668
  const serializeAws_json1_1ListModelCardsRequest = (input, context) => {
16615
16669
  return {
16616
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16670
+ ...(input.CreationTimeAfter != null && {
16671
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16672
+ }),
16617
16673
  ...(input.CreationTimeBefore != null && {
16618
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16674
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16619
16675
  }),
16620
16676
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16621
16677
  ...(input.ModelCardStatus != null && { ModelCardStatus: input.ModelCardStatus }),
@@ -16627,9 +16683,11 @@ const serializeAws_json1_1ListModelCardsRequest = (input, context) => {
16627
16683
  };
16628
16684
  const serializeAws_json1_1ListModelCardVersionsRequest = (input, context) => {
16629
16685
  return {
16630
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16686
+ ...(input.CreationTimeAfter != null && {
16687
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16688
+ }),
16631
16689
  ...(input.CreationTimeBefore != null && {
16632
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16690
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16633
16691
  }),
16634
16692
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16635
16693
  ...(input.ModelCardName != null && { ModelCardName: input.ModelCardName }),
@@ -16641,9 +16699,11 @@ const serializeAws_json1_1ListModelCardVersionsRequest = (input, context) => {
16641
16699
  };
16642
16700
  const serializeAws_json1_1ListModelExplainabilityJobDefinitionsRequest = (input, context) => {
16643
16701
  return {
16644
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16702
+ ...(input.CreationTimeAfter != null && {
16703
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16704
+ }),
16645
16705
  ...(input.CreationTimeBefore != null && {
16646
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16706
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16647
16707
  }),
16648
16708
  ...(input.EndpointName != null && { EndpointName: input.EndpointName }),
16649
16709
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -16664,9 +16724,11 @@ const serializeAws_json1_1ListModelMetadataRequest = (input, context) => {
16664
16724
  };
16665
16725
  const serializeAws_json1_1ListModelPackageGroupsInput = (input, context) => {
16666
16726
  return {
16667
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16727
+ ...(input.CreationTimeAfter != null && {
16728
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16729
+ }),
16668
16730
  ...(input.CreationTimeBefore != null && {
16669
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16731
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16670
16732
  }),
16671
16733
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16672
16734
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16677,9 +16739,11 @@ const serializeAws_json1_1ListModelPackageGroupsInput = (input, context) => {
16677
16739
  };
16678
16740
  const serializeAws_json1_1ListModelPackagesInput = (input, context) => {
16679
16741
  return {
16680
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16742
+ ...(input.CreationTimeAfter != null && {
16743
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16744
+ }),
16681
16745
  ...(input.CreationTimeBefore != null && {
16682
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16746
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16683
16747
  }),
16684
16748
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16685
16749
  ...(input.ModelApprovalStatus != null && { ModelApprovalStatus: input.ModelApprovalStatus }),
@@ -16693,9 +16757,11 @@ const serializeAws_json1_1ListModelPackagesInput = (input, context) => {
16693
16757
  };
16694
16758
  const serializeAws_json1_1ListModelQualityJobDefinitionsRequest = (input, context) => {
16695
16759
  return {
16696
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16760
+ ...(input.CreationTimeAfter != null && {
16761
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16762
+ }),
16697
16763
  ...(input.CreationTimeBefore != null && {
16698
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16764
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16699
16765
  }),
16700
16766
  ...(input.EndpointName != null && { EndpointName: input.EndpointName }),
16701
16767
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
@@ -16707,9 +16773,11 @@ const serializeAws_json1_1ListModelQualityJobDefinitionsRequest = (input, contex
16707
16773
  };
16708
16774
  const serializeAws_json1_1ListModelsInput = (input, context) => {
16709
16775
  return {
16710
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16776
+ ...(input.CreationTimeAfter != null && {
16777
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16778
+ }),
16711
16779
  ...(input.CreationTimeBefore != null && {
16712
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16780
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16713
16781
  }),
16714
16782
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16715
16783
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16720,9 +16788,11 @@ const serializeAws_json1_1ListModelsInput = (input, context) => {
16720
16788
  };
16721
16789
  const serializeAws_json1_1ListMonitoringAlertHistoryRequest = (input, context) => {
16722
16790
  return {
16723
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16791
+ ...(input.CreationTimeAfter != null && {
16792
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16793
+ }),
16724
16794
  ...(input.CreationTimeBefore != null && {
16725
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16795
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16726
16796
  }),
16727
16797
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16728
16798
  ...(input.MonitoringAlertName != null && { MonitoringAlertName: input.MonitoringAlertName }),
@@ -16742,16 +16812,18 @@ const serializeAws_json1_1ListMonitoringAlertsRequest = (input, context) => {
16742
16812
  };
16743
16813
  const serializeAws_json1_1ListMonitoringExecutionsRequest = (input, context) => {
16744
16814
  return {
16745
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16815
+ ...(input.CreationTimeAfter != null && {
16816
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16817
+ }),
16746
16818
  ...(input.CreationTimeBefore != null && {
16747
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16819
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16748
16820
  }),
16749
16821
  ...(input.EndpointName != null && { EndpointName: input.EndpointName }),
16750
16822
  ...(input.LastModifiedTimeAfter != null && {
16751
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16823
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16752
16824
  }),
16753
16825
  ...(input.LastModifiedTimeBefore != null && {
16754
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16826
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16755
16827
  }),
16756
16828
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16757
16829
  ...(input.MonitoringJobDefinitionName != null && {
@@ -16761,10 +16833,10 @@ const serializeAws_json1_1ListMonitoringExecutionsRequest = (input, context) =>
16761
16833
  ...(input.MonitoringTypeEquals != null && { MonitoringTypeEquals: input.MonitoringTypeEquals }),
16762
16834
  ...(input.NextToken != null && { NextToken: input.NextToken }),
16763
16835
  ...(input.ScheduledTimeAfter != null && {
16764
- ScheduledTimeAfter: Math.round(input.ScheduledTimeAfter.getTime() / 1000),
16836
+ ScheduledTimeAfter: Math.round(input.ScheduledTimeAfter.getTime() / 1000).toString(),
16765
16837
  }),
16766
16838
  ...(input.ScheduledTimeBefore != null && {
16767
- ScheduledTimeBefore: Math.round(input.ScheduledTimeBefore.getTime() / 1000),
16839
+ ScheduledTimeBefore: Math.round(input.ScheduledTimeBefore.getTime() / 1000).toString(),
16768
16840
  }),
16769
16841
  ...(input.SortBy != null && { SortBy: input.SortBy }),
16770
16842
  ...(input.SortOrder != null && { SortOrder: input.SortOrder }),
@@ -16773,16 +16845,18 @@ const serializeAws_json1_1ListMonitoringExecutionsRequest = (input, context) =>
16773
16845
  };
16774
16846
  const serializeAws_json1_1ListMonitoringSchedulesRequest = (input, context) => {
16775
16847
  return {
16776
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16848
+ ...(input.CreationTimeAfter != null && {
16849
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16850
+ }),
16777
16851
  ...(input.CreationTimeBefore != null && {
16778
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16852
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16779
16853
  }),
16780
16854
  ...(input.EndpointName != null && { EndpointName: input.EndpointName }),
16781
16855
  ...(input.LastModifiedTimeAfter != null && {
16782
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16856
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16783
16857
  }),
16784
16858
  ...(input.LastModifiedTimeBefore != null && {
16785
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16859
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16786
16860
  }),
16787
16861
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16788
16862
  ...(input.MonitoringJobDefinitionName != null && {
@@ -16798,15 +16872,17 @@ const serializeAws_json1_1ListMonitoringSchedulesRequest = (input, context) => {
16798
16872
  };
16799
16873
  const serializeAws_json1_1ListNotebookInstanceLifecycleConfigsInput = (input, context) => {
16800
16874
  return {
16801
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16875
+ ...(input.CreationTimeAfter != null && {
16876
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16877
+ }),
16802
16878
  ...(input.CreationTimeBefore != null && {
16803
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16879
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16804
16880
  }),
16805
16881
  ...(input.LastModifiedTimeAfter != null && {
16806
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16882
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16807
16883
  }),
16808
16884
  ...(input.LastModifiedTimeBefore != null && {
16809
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16885
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16810
16886
  }),
16811
16887
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16812
16888
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16820,18 +16896,20 @@ const serializeAws_json1_1ListNotebookInstancesInput = (input, context) => {
16820
16896
  ...(input.AdditionalCodeRepositoryEquals != null && {
16821
16897
  AdditionalCodeRepositoryEquals: input.AdditionalCodeRepositoryEquals,
16822
16898
  }),
16823
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16899
+ ...(input.CreationTimeAfter != null && {
16900
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16901
+ }),
16824
16902
  ...(input.CreationTimeBefore != null && {
16825
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16903
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16826
16904
  }),
16827
16905
  ...(input.DefaultCodeRepositoryContains != null && {
16828
16906
  DefaultCodeRepositoryContains: input.DefaultCodeRepositoryContains,
16829
16907
  }),
16830
16908
  ...(input.LastModifiedTimeAfter != null && {
16831
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16909
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16832
16910
  }),
16833
16911
  ...(input.LastModifiedTimeBefore != null && {
16834
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16912
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16835
16913
  }),
16836
16914
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16837
16915
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16846,8 +16924,8 @@ const serializeAws_json1_1ListNotebookInstancesInput = (input, context) => {
16846
16924
  };
16847
16925
  const serializeAws_json1_1ListPipelineExecutionsRequest = (input, context) => {
16848
16926
  return {
16849
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
16850
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16927
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16928
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
16851
16929
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16852
16930
  ...(input.NextToken != null && { NextToken: input.NextToken }),
16853
16931
  ...(input.PipelineName != null && { PipelineName: input.PipelineName }),
@@ -16872,8 +16950,8 @@ const serializeAws_json1_1ListPipelineParametersForExecutionRequest = (input, co
16872
16950
  };
16873
16951
  const serializeAws_json1_1ListPipelinesRequest = (input, context) => {
16874
16952
  return {
16875
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
16876
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
16953
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
16954
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
16877
16955
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16878
16956
  ...(input.NextToken != null && { NextToken: input.NextToken }),
16879
16957
  ...(input.PipelineNamePrefix != null && { PipelineNamePrefix: input.PipelineNamePrefix }),
@@ -16883,15 +16961,17 @@ const serializeAws_json1_1ListPipelinesRequest = (input, context) => {
16883
16961
  };
16884
16962
  const serializeAws_json1_1ListProcessingJobsRequest = (input, context) => {
16885
16963
  return {
16886
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16964
+ ...(input.CreationTimeAfter != null && {
16965
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16966
+ }),
16887
16967
  ...(input.CreationTimeBefore != null && {
16888
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16968
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16889
16969
  }),
16890
16970
  ...(input.LastModifiedTimeAfter != null && {
16891
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
16971
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16892
16972
  }),
16893
16973
  ...(input.LastModifiedTimeBefore != null && {
16894
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
16974
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16895
16975
  }),
16896
16976
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16897
16977
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16903,9 +16983,11 @@ const serializeAws_json1_1ListProcessingJobsRequest = (input, context) => {
16903
16983
  };
16904
16984
  const serializeAws_json1_1ListProjectsInput = (input, context) => {
16905
16985
  return {
16906
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
16986
+ ...(input.CreationTimeAfter != null && {
16987
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
16988
+ }),
16907
16989
  ...(input.CreationTimeBefore != null && {
16908
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
16990
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16909
16991
  }),
16910
16992
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16911
16993
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -16938,14 +17020,18 @@ const serializeAws_json1_1ListStageDevicesRequest = (input, context) => {
16938
17020
  const serializeAws_json1_1ListStudioLifecycleConfigsRequest = (input, context) => {
16939
17021
  return {
16940
17022
  ...(input.AppTypeEquals != null && { AppTypeEquals: input.AppTypeEquals }),
16941
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
17023
+ ...(input.CreationTimeAfter != null && {
17024
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
17025
+ }),
16942
17026
  ...(input.CreationTimeBefore != null && {
16943
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
17027
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16944
17028
  }),
16945
17029
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16946
- ...(input.ModifiedTimeAfter != null && { ModifiedTimeAfter: Math.round(input.ModifiedTimeAfter.getTime() / 1000) }),
17030
+ ...(input.ModifiedTimeAfter != null && {
17031
+ ModifiedTimeAfter: Math.round(input.ModifiedTimeAfter.getTime() / 1000).toString(),
17032
+ }),
16947
17033
  ...(input.ModifiedTimeBefore != null && {
16948
- ModifiedTimeBefore: Math.round(input.ModifiedTimeBefore.getTime() / 1000),
17034
+ ModifiedTimeBefore: Math.round(input.ModifiedTimeBefore.getTime() / 1000).toString(),
16949
17035
  }),
16950
17036
  ...(input.NameContains != null && { NameContains: input.NameContains }),
16951
17037
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -16981,15 +17067,17 @@ const serializeAws_json1_1ListTrainingJobsForHyperParameterTuningJobRequest = (i
16981
17067
  };
16982
17068
  const serializeAws_json1_1ListTrainingJobsRequest = (input, context) => {
16983
17069
  return {
16984
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
17070
+ ...(input.CreationTimeAfter != null && {
17071
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
17072
+ }),
16985
17073
  ...(input.CreationTimeBefore != null && {
16986
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
17074
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
16987
17075
  }),
16988
17076
  ...(input.LastModifiedTimeAfter != null && {
16989
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
17077
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
16990
17078
  }),
16991
17079
  ...(input.LastModifiedTimeBefore != null && {
16992
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
17080
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
16993
17081
  }),
16994
17082
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
16995
17083
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -17002,15 +17090,17 @@ const serializeAws_json1_1ListTrainingJobsRequest = (input, context) => {
17002
17090
  };
17003
17091
  const serializeAws_json1_1ListTransformJobsRequest = (input, context) => {
17004
17092
  return {
17005
- ...(input.CreationTimeAfter != null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) }),
17093
+ ...(input.CreationTimeAfter != null && {
17094
+ CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000).toString(),
17095
+ }),
17006
17096
  ...(input.CreationTimeBefore != null && {
17007
- CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),
17097
+ CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000).toString(),
17008
17098
  }),
17009
17099
  ...(input.LastModifiedTimeAfter != null && {
17010
- LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000),
17100
+ LastModifiedTimeAfter: Math.round(input.LastModifiedTimeAfter.getTime() / 1000).toString(),
17011
17101
  }),
17012
17102
  ...(input.LastModifiedTimeBefore != null && {
17013
- LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000),
17103
+ LastModifiedTimeBefore: Math.round(input.LastModifiedTimeBefore.getTime() / 1000).toString(),
17014
17104
  }),
17015
17105
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
17016
17106
  ...(input.NameContains != null && { NameContains: input.NameContains }),
@@ -17029,8 +17119,8 @@ const serializeAws_json1_1ListTrialComponentKey256 = (input, context) => {
17029
17119
  };
17030
17120
  const serializeAws_json1_1ListTrialComponentsRequest = (input, context) => {
17031
17121
  return {
17032
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
17033
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
17122
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
17123
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
17034
17124
  ...(input.ExperimentName != null && { ExperimentName: input.ExperimentName }),
17035
17125
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
17036
17126
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -17042,8 +17132,8 @@ const serializeAws_json1_1ListTrialComponentsRequest = (input, context) => {
17042
17132
  };
17043
17133
  const serializeAws_json1_1ListTrialsRequest = (input, context) => {
17044
17134
  return {
17045
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
17046
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
17135
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
17136
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
17047
17137
  ...(input.ExperimentName != null && { ExperimentName: input.ExperimentName }),
17048
17138
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
17049
17139
  ...(input.NextToken != null && { NextToken: input.NextToken }),
@@ -18037,13 +18127,15 @@ const serializeAws_json1_1PutModelPackageGroupPolicyInput = (input, context) =>
18037
18127
  };
18038
18128
  const serializeAws_json1_1QueryFilters = (input, context) => {
18039
18129
  return {
18040
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
18041
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
18130
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
18131
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
18042
18132
  ...(input.LineageTypes != null && {
18043
18133
  LineageTypes: serializeAws_json1_1QueryLineageTypes(input.LineageTypes, context),
18044
18134
  }),
18045
- ...(input.ModifiedAfter != null && { ModifiedAfter: Math.round(input.ModifiedAfter.getTime() / 1000) }),
18046
- ...(input.ModifiedBefore != null && { ModifiedBefore: Math.round(input.ModifiedBefore.getTime() / 1000) }),
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
+ }),
18047
18139
  ...(input.Properties != null && { Properties: serializeAws_json1_1QueryProperties(input.Properties, context) }),
18048
18140
  ...(input.Types != null && { Types: serializeAws_json1_1QueryTypes(input.Types, context) }),
18049
18141
  };
@@ -19274,7 +19366,7 @@ const serializeAws_json1_1UpdateTrainingJobRequest = (input, context) => {
19274
19366
  const serializeAws_json1_1UpdateTrialComponentRequest = (input, context) => {
19275
19367
  return {
19276
19368
  ...(input.DisplayName != null && { DisplayName: input.DisplayName }),
19277
- ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
19369
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
19278
19370
  ...(input.InputArtifacts != null && {
19279
19371
  InputArtifacts: serializeAws_json1_1TrialComponentArtifacts(input.InputArtifacts, context),
19280
19372
  }),
@@ -19293,7 +19385,7 @@ const serializeAws_json1_1UpdateTrialComponentRequest = (input, context) => {
19293
19385
  ...(input.ParametersToRemove != null && {
19294
19386
  ParametersToRemove: serializeAws_json1_1ListTrialComponentKey256(input.ParametersToRemove, context),
19295
19387
  }),
19296
- ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
19388
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
19297
19389
  ...(input.Status != null && { Status: serializeAws_json1_1TrialComponentStatus(input.Status, context) }),
19298
19390
  ...(input.TrialComponentName != null && { TrialComponentName: input.TrialComponentName }),
19299
19391
  };