@aws-sdk/client-sfn 3.53.0 → 3.55.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.
- package/CHANGELOG.md +24 -0
- package/dist-cjs/SFNClient.js +13 -13
- package/dist-cjs/commands/CreateActivityCommand.js +3 -3
- package/dist-cjs/commands/CreateStateMachineCommand.js +3 -3
- package/dist-cjs/commands/DeleteActivityCommand.js +3 -3
- package/dist-cjs/commands/DeleteStateMachineCommand.js +3 -3
- package/dist-cjs/commands/DescribeActivityCommand.js +3 -3
- package/dist-cjs/commands/DescribeExecutionCommand.js +3 -3
- package/dist-cjs/commands/DescribeStateMachineCommand.js +3 -3
- package/dist-cjs/commands/DescribeStateMachineForExecutionCommand.js +3 -3
- package/dist-cjs/commands/GetActivityTaskCommand.js +3 -3
- package/dist-cjs/commands/GetExecutionHistoryCommand.js +3 -3
- package/dist-cjs/commands/ListActivitiesCommand.js +3 -3
- package/dist-cjs/commands/ListExecutionsCommand.js +3 -3
- package/dist-cjs/commands/ListStateMachinesCommand.js +3 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-cjs/commands/SendTaskFailureCommand.js +3 -3
- package/dist-cjs/commands/SendTaskHeartbeatCommand.js +3 -3
- package/dist-cjs/commands/SendTaskSuccessCommand.js +3 -3
- package/dist-cjs/commands/StartExecutionCommand.js +3 -3
- package/dist-cjs/commands/StartSyncExecutionCommand.js +3 -3
- package/dist-cjs/commands/StopExecutionCommand.js +3 -3
- package/dist-cjs/commands/TagResourceCommand.js +3 -3
- package/dist-cjs/commands/UntagResourceCommand.js +3 -3
- package/dist-cjs/commands/UpdateStateMachineCommand.js +3 -3
- package/dist-cjs/endpoints.js +1 -1
- package/dist-cjs/protocols/Aws_json1_0.js +220 -220
- package/dist-cjs/runtimeConfig.browser.js +4 -4
- package/dist-cjs/runtimeConfig.js +9 -9
- package/dist-cjs/runtimeConfig.native.js +1 -1
- package/dist-es/SFN.js +23 -23
- package/dist-es/pagination/GetExecutionHistoryPaginator.js +4 -4
- package/dist-es/pagination/ListActivitiesPaginator.js +4 -4
- package/dist-es/pagination/ListExecutionsPaginator.js +4 -4
- package/dist-es/pagination/ListStateMachinesPaginator.js +4 -4
- package/dist-types/SFNClient.d.ts +2 -2
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +3 -3
- package/dist-types/ts3.4/SFNClient.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -3
- package/package.json +34 -34
|
@@ -195,7 +195,7 @@ const serializeAws_json1_0StartSyncExecutionCommand = async (input, context) =>
|
|
|
195
195
|
let { hostname: resolvedHostname } = await context.endpoint();
|
|
196
196
|
if (context.disableHostPrefix !== true) {
|
|
197
197
|
resolvedHostname = "sync-" + resolvedHostname;
|
|
198
|
-
if (!protocol_http_1.isValidHostname(resolvedHostname)) {
|
|
198
|
+
if (!(0, protocol_http_1.isValidHostname)(resolvedHostname)) {
|
|
199
199
|
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
|
|
200
200
|
}
|
|
201
201
|
}
|
|
@@ -281,7 +281,7 @@ const deserializeAws_json1_0CreateActivityCommandError = async (output, context)
|
|
|
281
281
|
$fault: "client",
|
|
282
282
|
$metadata: deserializeMetadata(output),
|
|
283
283
|
});
|
|
284
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
284
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
285
285
|
}
|
|
286
286
|
};
|
|
287
287
|
const deserializeAws_json1_0CreateStateMachineCommand = async (output, context) => {
|
|
@@ -344,7 +344,7 @@ const deserializeAws_json1_0CreateStateMachineCommandError = async (output, cont
|
|
|
344
344
|
$fault: "client",
|
|
345
345
|
$metadata: deserializeMetadata(output),
|
|
346
346
|
});
|
|
347
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
347
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
348
348
|
}
|
|
349
349
|
};
|
|
350
350
|
const deserializeAws_json1_0DeleteActivityCommand = async (output, context) => {
|
|
@@ -380,7 +380,7 @@ const deserializeAws_json1_0DeleteActivityCommandError = async (output, context)
|
|
|
380
380
|
$fault: "client",
|
|
381
381
|
$metadata: deserializeMetadata(output),
|
|
382
382
|
});
|
|
383
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
383
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
384
384
|
}
|
|
385
385
|
};
|
|
386
386
|
const deserializeAws_json1_0DeleteStateMachineCommand = async (output, context) => {
|
|
@@ -416,7 +416,7 @@ const deserializeAws_json1_0DeleteStateMachineCommandError = async (output, cont
|
|
|
416
416
|
$fault: "client",
|
|
417
417
|
$metadata: deserializeMetadata(output),
|
|
418
418
|
});
|
|
419
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
419
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
420
420
|
}
|
|
421
421
|
};
|
|
422
422
|
const deserializeAws_json1_0DescribeActivityCommand = async (output, context) => {
|
|
@@ -455,7 +455,7 @@ const deserializeAws_json1_0DescribeActivityCommandError = async (output, contex
|
|
|
455
455
|
$fault: "client",
|
|
456
456
|
$metadata: deserializeMetadata(output),
|
|
457
457
|
});
|
|
458
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
458
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
459
459
|
}
|
|
460
460
|
};
|
|
461
461
|
const deserializeAws_json1_0DescribeExecutionCommand = async (output, context) => {
|
|
@@ -494,7 +494,7 @@ const deserializeAws_json1_0DescribeExecutionCommandError = async (output, conte
|
|
|
494
494
|
$fault: "client",
|
|
495
495
|
$metadata: deserializeMetadata(output),
|
|
496
496
|
});
|
|
497
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
497
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
498
498
|
}
|
|
499
499
|
};
|
|
500
500
|
const deserializeAws_json1_0DescribeStateMachineCommand = async (output, context) => {
|
|
@@ -533,7 +533,7 @@ const deserializeAws_json1_0DescribeStateMachineCommandError = async (output, co
|
|
|
533
533
|
$fault: "client",
|
|
534
534
|
$metadata: deserializeMetadata(output),
|
|
535
535
|
});
|
|
536
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
536
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
537
537
|
}
|
|
538
538
|
};
|
|
539
539
|
const deserializeAws_json1_0DescribeStateMachineForExecutionCommand = async (output, context) => {
|
|
@@ -572,7 +572,7 @@ const deserializeAws_json1_0DescribeStateMachineForExecutionCommandError = async
|
|
|
572
572
|
$fault: "client",
|
|
573
573
|
$metadata: deserializeMetadata(output),
|
|
574
574
|
});
|
|
575
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
575
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
576
576
|
}
|
|
577
577
|
};
|
|
578
578
|
const deserializeAws_json1_0GetActivityTaskCommand = async (output, context) => {
|
|
@@ -614,7 +614,7 @@ const deserializeAws_json1_0GetActivityTaskCommandError = async (output, context
|
|
|
614
614
|
$fault: "client",
|
|
615
615
|
$metadata: deserializeMetadata(output),
|
|
616
616
|
});
|
|
617
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
617
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
618
618
|
}
|
|
619
619
|
};
|
|
620
620
|
const deserializeAws_json1_0GetExecutionHistoryCommand = async (output, context) => {
|
|
@@ -656,7 +656,7 @@ const deserializeAws_json1_0GetExecutionHistoryCommandError = async (output, con
|
|
|
656
656
|
$fault: "client",
|
|
657
657
|
$metadata: deserializeMetadata(output),
|
|
658
658
|
});
|
|
659
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
659
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
660
660
|
}
|
|
661
661
|
};
|
|
662
662
|
const deserializeAws_json1_0ListActivitiesCommand = async (output, context) => {
|
|
@@ -692,7 +692,7 @@ const deserializeAws_json1_0ListActivitiesCommandError = async (output, context)
|
|
|
692
692
|
$fault: "client",
|
|
693
693
|
$metadata: deserializeMetadata(output),
|
|
694
694
|
});
|
|
695
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
695
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
696
696
|
}
|
|
697
697
|
};
|
|
698
698
|
const deserializeAws_json1_0ListExecutionsCommand = async (output, context) => {
|
|
@@ -737,7 +737,7 @@ const deserializeAws_json1_0ListExecutionsCommandError = async (output, context)
|
|
|
737
737
|
$fault: "client",
|
|
738
738
|
$metadata: deserializeMetadata(output),
|
|
739
739
|
});
|
|
740
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
740
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
741
741
|
}
|
|
742
742
|
};
|
|
743
743
|
const deserializeAws_json1_0ListStateMachinesCommand = async (output, context) => {
|
|
@@ -773,7 +773,7 @@ const deserializeAws_json1_0ListStateMachinesCommandError = async (output, conte
|
|
|
773
773
|
$fault: "client",
|
|
774
774
|
$metadata: deserializeMetadata(output),
|
|
775
775
|
});
|
|
776
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
776
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
777
777
|
}
|
|
778
778
|
};
|
|
779
779
|
const deserializeAws_json1_0ListTagsForResourceCommand = async (output, context) => {
|
|
@@ -812,7 +812,7 @@ const deserializeAws_json1_0ListTagsForResourceCommandError = async (output, con
|
|
|
812
812
|
$fault: "client",
|
|
813
813
|
$metadata: deserializeMetadata(output),
|
|
814
814
|
});
|
|
815
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
815
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
816
816
|
}
|
|
817
817
|
};
|
|
818
818
|
const deserializeAws_json1_0SendTaskFailureCommand = async (output, context) => {
|
|
@@ -854,7 +854,7 @@ const deserializeAws_json1_0SendTaskFailureCommandError = async (output, context
|
|
|
854
854
|
$fault: "client",
|
|
855
855
|
$metadata: deserializeMetadata(output),
|
|
856
856
|
});
|
|
857
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
857
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
858
858
|
}
|
|
859
859
|
};
|
|
860
860
|
const deserializeAws_json1_0SendTaskHeartbeatCommand = async (output, context) => {
|
|
@@ -896,7 +896,7 @@ const deserializeAws_json1_0SendTaskHeartbeatCommandError = async (output, conte
|
|
|
896
896
|
$fault: "client",
|
|
897
897
|
$metadata: deserializeMetadata(output),
|
|
898
898
|
});
|
|
899
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
899
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
900
900
|
}
|
|
901
901
|
};
|
|
902
902
|
const deserializeAws_json1_0SendTaskSuccessCommand = async (output, context) => {
|
|
@@ -941,7 +941,7 @@ const deserializeAws_json1_0SendTaskSuccessCommandError = async (output, context
|
|
|
941
941
|
$fault: "client",
|
|
942
942
|
$metadata: deserializeMetadata(output),
|
|
943
943
|
});
|
|
944
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
944
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
945
945
|
}
|
|
946
946
|
};
|
|
947
947
|
const deserializeAws_json1_0StartExecutionCommand = async (output, context) => {
|
|
@@ -995,7 +995,7 @@ const deserializeAws_json1_0StartExecutionCommandError = async (output, context)
|
|
|
995
995
|
$fault: "client",
|
|
996
996
|
$metadata: deserializeMetadata(output),
|
|
997
997
|
});
|
|
998
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
998
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
999
999
|
}
|
|
1000
1000
|
};
|
|
1001
1001
|
const deserializeAws_json1_0StartSyncExecutionCommand = async (output, context) => {
|
|
@@ -1046,7 +1046,7 @@ const deserializeAws_json1_0StartSyncExecutionCommandError = async (output, cont
|
|
|
1046
1046
|
$fault: "client",
|
|
1047
1047
|
$metadata: deserializeMetadata(output),
|
|
1048
1048
|
});
|
|
1049
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
1049
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
1050
1050
|
}
|
|
1051
1051
|
};
|
|
1052
1052
|
const deserializeAws_json1_0StopExecutionCommand = async (output, context) => {
|
|
@@ -1085,7 +1085,7 @@ const deserializeAws_json1_0StopExecutionCommandError = async (output, context)
|
|
|
1085
1085
|
$fault: "client",
|
|
1086
1086
|
$metadata: deserializeMetadata(output),
|
|
1087
1087
|
});
|
|
1088
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
1088
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
1089
1089
|
}
|
|
1090
1090
|
};
|
|
1091
1091
|
const deserializeAws_json1_0TagResourceCommand = async (output, context) => {
|
|
@@ -1127,7 +1127,7 @@ const deserializeAws_json1_0TagResourceCommandError = async (output, context) =>
|
|
|
1127
1127
|
$fault: "client",
|
|
1128
1128
|
$metadata: deserializeMetadata(output),
|
|
1129
1129
|
});
|
|
1130
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
1130
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
1131
1131
|
}
|
|
1132
1132
|
};
|
|
1133
1133
|
const deserializeAws_json1_0UntagResourceCommand = async (output, context) => {
|
|
@@ -1166,7 +1166,7 @@ const deserializeAws_json1_0UntagResourceCommandError = async (output, context)
|
|
|
1166
1166
|
$fault: "client",
|
|
1167
1167
|
$metadata: deserializeMetadata(output),
|
|
1168
1168
|
});
|
|
1169
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
1169
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
1170
1170
|
}
|
|
1171
1171
|
};
|
|
1172
1172
|
const deserializeAws_json1_0UpdateStateMachineCommand = async (output, context) => {
|
|
@@ -1220,7 +1220,7 @@ const deserializeAws_json1_0UpdateStateMachineCommandError = async (output, cont
|
|
|
1220
1220
|
$fault: "client",
|
|
1221
1221
|
$metadata: deserializeMetadata(output),
|
|
1222
1222
|
});
|
|
1223
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
1223
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
1224
1224
|
}
|
|
1225
1225
|
};
|
|
1226
1226
|
const deserializeAws_json1_0ActivityDoesNotExistResponse = async (parsedOutput, context) => {
|
|
@@ -1230,7 +1230,7 @@ const deserializeAws_json1_0ActivityDoesNotExistResponse = async (parsedOutput,
|
|
|
1230
1230
|
$metadata: deserializeMetadata(parsedOutput),
|
|
1231
1231
|
...deserialized,
|
|
1232
1232
|
});
|
|
1233
|
-
return smithy_client_1.decorateServiceException(exception, body);
|
|
1233
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1234
1234
|
};
|
|
1235
1235
|
const deserializeAws_json1_0ActivityLimitExceededResponse = async (parsedOutput, context) => {
|
|
1236
1236
|
const body = parsedOutput.body;
|
|
@@ -1239,7 +1239,7 @@ const deserializeAws_json1_0ActivityLimitExceededResponse = async (parsedOutput,
|
|
|
1239
1239
|
$metadata: deserializeMetadata(parsedOutput),
|
|
1240
1240
|
...deserialized,
|
|
1241
1241
|
});
|
|
1242
|
-
return smithy_client_1.decorateServiceException(exception, body);
|
|
1242
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1243
1243
|
};
|
|
1244
1244
|
const deserializeAws_json1_0ActivityWorkerLimitExceededResponse = async (parsedOutput, context) => {
|
|
1245
1245
|
const body = parsedOutput.body;
|
|
@@ -1248,7 +1248,7 @@ const deserializeAws_json1_0ActivityWorkerLimitExceededResponse = async (parsedO
|
|
|
1248
1248
|
$metadata: deserializeMetadata(parsedOutput),
|
|
1249
1249
|
...deserialized,
|
|
1250
1250
|
});
|
|
1251
|
-
return smithy_client_1.decorateServiceException(exception, body);
|
|
1251
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1252
1252
|
};
|
|
1253
1253
|
const deserializeAws_json1_0ExecutionAlreadyExistsResponse = async (parsedOutput, context) => {
|
|
1254
1254
|
const body = parsedOutput.body;
|
|
@@ -1257,7 +1257,7 @@ const deserializeAws_json1_0ExecutionAlreadyExistsResponse = async (parsedOutput
|
|
|
1257
1257
|
$metadata: deserializeMetadata(parsedOutput),
|
|
1258
1258
|
...deserialized,
|
|
1259
1259
|
});
|
|
1260
|
-
return smithy_client_1.decorateServiceException(exception, body);
|
|
1260
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1261
1261
|
};
|
|
1262
1262
|
const deserializeAws_json1_0ExecutionDoesNotExistResponse = async (parsedOutput, context) => {
|
|
1263
1263
|
const body = parsedOutput.body;
|
|
@@ -1266,7 +1266,7 @@ const deserializeAws_json1_0ExecutionDoesNotExistResponse = async (parsedOutput,
|
|
|
1266
1266
|
$metadata: deserializeMetadata(parsedOutput),
|
|
1267
1267
|
...deserialized,
|
|
1268
1268
|
});
|
|
1269
|
-
return smithy_client_1.decorateServiceException(exception, body);
|
|
1269
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1270
1270
|
};
|
|
1271
1271
|
const deserializeAws_json1_0ExecutionLimitExceededResponse = async (parsedOutput, context) => {
|
|
1272
1272
|
const body = parsedOutput.body;
|
|
@@ -1275,7 +1275,7 @@ const deserializeAws_json1_0ExecutionLimitExceededResponse = async (parsedOutput
|
|
|
1275
1275
|
$metadata: deserializeMetadata(parsedOutput),
|
|
1276
1276
|
...deserialized,
|
|
1277
1277
|
});
|
|
1278
|
-
return smithy_client_1.decorateServiceException(exception, body);
|
|
1278
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1279
1279
|
};
|
|
1280
1280
|
const deserializeAws_json1_0InvalidArnResponse = async (parsedOutput, context) => {
|
|
1281
1281
|
const body = parsedOutput.body;
|
|
@@ -1284,7 +1284,7 @@ const deserializeAws_json1_0InvalidArnResponse = async (parsedOutput, context) =
|
|
|
1284
1284
|
$metadata: deserializeMetadata(parsedOutput),
|
|
1285
1285
|
...deserialized,
|
|
1286
1286
|
});
|
|
1287
|
-
return smithy_client_1.decorateServiceException(exception, body);
|
|
1287
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1288
1288
|
};
|
|
1289
1289
|
const deserializeAws_json1_0InvalidDefinitionResponse = async (parsedOutput, context) => {
|
|
1290
1290
|
const body = parsedOutput.body;
|
|
@@ -1293,7 +1293,7 @@ const deserializeAws_json1_0InvalidDefinitionResponse = async (parsedOutput, con
|
|
|
1293
1293
|
$metadata: deserializeMetadata(parsedOutput),
|
|
1294
1294
|
...deserialized,
|
|
1295
1295
|
});
|
|
1296
|
-
return smithy_client_1.decorateServiceException(exception, body);
|
|
1296
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1297
1297
|
};
|
|
1298
1298
|
const deserializeAws_json1_0InvalidExecutionInputResponse = async (parsedOutput, context) => {
|
|
1299
1299
|
const body = parsedOutput.body;
|
|
@@ -1302,7 +1302,7 @@ const deserializeAws_json1_0InvalidExecutionInputResponse = async (parsedOutput,
|
|
|
1302
1302
|
$metadata: deserializeMetadata(parsedOutput),
|
|
1303
1303
|
...deserialized,
|
|
1304
1304
|
});
|
|
1305
|
-
return smithy_client_1.decorateServiceException(exception, body);
|
|
1305
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1306
1306
|
};
|
|
1307
1307
|
const deserializeAws_json1_0InvalidLoggingConfigurationResponse = async (parsedOutput, context) => {
|
|
1308
1308
|
const body = parsedOutput.body;
|
|
@@ -1311,7 +1311,7 @@ const deserializeAws_json1_0InvalidLoggingConfigurationResponse = async (parsedO
|
|
|
1311
1311
|
$metadata: deserializeMetadata(parsedOutput),
|
|
1312
1312
|
...deserialized,
|
|
1313
1313
|
});
|
|
1314
|
-
return smithy_client_1.decorateServiceException(exception, body);
|
|
1314
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1315
1315
|
};
|
|
1316
1316
|
const deserializeAws_json1_0InvalidNameResponse = async (parsedOutput, context) => {
|
|
1317
1317
|
const body = parsedOutput.body;
|
|
@@ -1320,7 +1320,7 @@ const deserializeAws_json1_0InvalidNameResponse = async (parsedOutput, context)
|
|
|
1320
1320
|
$metadata: deserializeMetadata(parsedOutput),
|
|
1321
1321
|
...deserialized,
|
|
1322
1322
|
});
|
|
1323
|
-
return smithy_client_1.decorateServiceException(exception, body);
|
|
1323
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1324
1324
|
};
|
|
1325
1325
|
const deserializeAws_json1_0InvalidOutputResponse = async (parsedOutput, context) => {
|
|
1326
1326
|
const body = parsedOutput.body;
|
|
@@ -1329,7 +1329,7 @@ const deserializeAws_json1_0InvalidOutputResponse = async (parsedOutput, context
|
|
|
1329
1329
|
$metadata: deserializeMetadata(parsedOutput),
|
|
1330
1330
|
...deserialized,
|
|
1331
1331
|
});
|
|
1332
|
-
return smithy_client_1.decorateServiceException(exception, body);
|
|
1332
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1333
1333
|
};
|
|
1334
1334
|
const deserializeAws_json1_0InvalidTokenResponse = async (parsedOutput, context) => {
|
|
1335
1335
|
const body = parsedOutput.body;
|
|
@@ -1338,7 +1338,7 @@ const deserializeAws_json1_0InvalidTokenResponse = async (parsedOutput, context)
|
|
|
1338
1338
|
$metadata: deserializeMetadata(parsedOutput),
|
|
1339
1339
|
...deserialized,
|
|
1340
1340
|
});
|
|
1341
|
-
return smithy_client_1.decorateServiceException(exception, body);
|
|
1341
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1342
1342
|
};
|
|
1343
1343
|
const deserializeAws_json1_0InvalidTracingConfigurationResponse = async (parsedOutput, context) => {
|
|
1344
1344
|
const body = parsedOutput.body;
|
|
@@ -1347,7 +1347,7 @@ const deserializeAws_json1_0InvalidTracingConfigurationResponse = async (parsedO
|
|
|
1347
1347
|
$metadata: deserializeMetadata(parsedOutput),
|
|
1348
1348
|
...deserialized,
|
|
1349
1349
|
});
|
|
1350
|
-
return smithy_client_1.decorateServiceException(exception, body);
|
|
1350
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1351
1351
|
};
|
|
1352
1352
|
const deserializeAws_json1_0MissingRequiredParameterResponse = async (parsedOutput, context) => {
|
|
1353
1353
|
const body = parsedOutput.body;
|
|
@@ -1356,7 +1356,7 @@ const deserializeAws_json1_0MissingRequiredParameterResponse = async (parsedOutp
|
|
|
1356
1356
|
$metadata: deserializeMetadata(parsedOutput),
|
|
1357
1357
|
...deserialized,
|
|
1358
1358
|
});
|
|
1359
|
-
return smithy_client_1.decorateServiceException(exception, body);
|
|
1359
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1360
1360
|
};
|
|
1361
1361
|
const deserializeAws_json1_0ResourceNotFoundResponse = async (parsedOutput, context) => {
|
|
1362
1362
|
const body = parsedOutput.body;
|
|
@@ -1365,7 +1365,7 @@ const deserializeAws_json1_0ResourceNotFoundResponse = async (parsedOutput, cont
|
|
|
1365
1365
|
$metadata: deserializeMetadata(parsedOutput),
|
|
1366
1366
|
...deserialized,
|
|
1367
1367
|
});
|
|
1368
|
-
return smithy_client_1.decorateServiceException(exception, body);
|
|
1368
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1369
1369
|
};
|
|
1370
1370
|
const deserializeAws_json1_0StateMachineAlreadyExistsResponse = async (parsedOutput, context) => {
|
|
1371
1371
|
const body = parsedOutput.body;
|
|
@@ -1374,7 +1374,7 @@ const deserializeAws_json1_0StateMachineAlreadyExistsResponse = async (parsedOut
|
|
|
1374
1374
|
$metadata: deserializeMetadata(parsedOutput),
|
|
1375
1375
|
...deserialized,
|
|
1376
1376
|
});
|
|
1377
|
-
return smithy_client_1.decorateServiceException(exception, body);
|
|
1377
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1378
1378
|
};
|
|
1379
1379
|
const deserializeAws_json1_0StateMachineDeletingResponse = async (parsedOutput, context) => {
|
|
1380
1380
|
const body = parsedOutput.body;
|
|
@@ -1383,7 +1383,7 @@ const deserializeAws_json1_0StateMachineDeletingResponse = async (parsedOutput,
|
|
|
1383
1383
|
$metadata: deserializeMetadata(parsedOutput),
|
|
1384
1384
|
...deserialized,
|
|
1385
1385
|
});
|
|
1386
|
-
return smithy_client_1.decorateServiceException(exception, body);
|
|
1386
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1387
1387
|
};
|
|
1388
1388
|
const deserializeAws_json1_0StateMachineDoesNotExistResponse = async (parsedOutput, context) => {
|
|
1389
1389
|
const body = parsedOutput.body;
|
|
@@ -1392,7 +1392,7 @@ const deserializeAws_json1_0StateMachineDoesNotExistResponse = async (parsedOutp
|
|
|
1392
1392
|
$metadata: deserializeMetadata(parsedOutput),
|
|
1393
1393
|
...deserialized,
|
|
1394
1394
|
});
|
|
1395
|
-
return smithy_client_1.decorateServiceException(exception, body);
|
|
1395
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1396
1396
|
};
|
|
1397
1397
|
const deserializeAws_json1_0StateMachineLimitExceededResponse = async (parsedOutput, context) => {
|
|
1398
1398
|
const body = parsedOutput.body;
|
|
@@ -1401,7 +1401,7 @@ const deserializeAws_json1_0StateMachineLimitExceededResponse = async (parsedOut
|
|
|
1401
1401
|
$metadata: deserializeMetadata(parsedOutput),
|
|
1402
1402
|
...deserialized,
|
|
1403
1403
|
});
|
|
1404
|
-
return smithy_client_1.decorateServiceException(exception, body);
|
|
1404
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1405
1405
|
};
|
|
1406
1406
|
const deserializeAws_json1_0StateMachineTypeNotSupportedResponse = async (parsedOutput, context) => {
|
|
1407
1407
|
const body = parsedOutput.body;
|
|
@@ -1410,7 +1410,7 @@ const deserializeAws_json1_0StateMachineTypeNotSupportedResponse = async (parsed
|
|
|
1410
1410
|
$metadata: deserializeMetadata(parsedOutput),
|
|
1411
1411
|
...deserialized,
|
|
1412
1412
|
});
|
|
1413
|
-
return smithy_client_1.decorateServiceException(exception, body);
|
|
1413
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1414
1414
|
};
|
|
1415
1415
|
const deserializeAws_json1_0TaskDoesNotExistResponse = async (parsedOutput, context) => {
|
|
1416
1416
|
const body = parsedOutput.body;
|
|
@@ -1419,7 +1419,7 @@ const deserializeAws_json1_0TaskDoesNotExistResponse = async (parsedOutput, cont
|
|
|
1419
1419
|
$metadata: deserializeMetadata(parsedOutput),
|
|
1420
1420
|
...deserialized,
|
|
1421
1421
|
});
|
|
1422
|
-
return smithy_client_1.decorateServiceException(exception, body);
|
|
1422
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1423
1423
|
};
|
|
1424
1424
|
const deserializeAws_json1_0TaskTimedOutResponse = async (parsedOutput, context) => {
|
|
1425
1425
|
const body = parsedOutput.body;
|
|
@@ -1428,7 +1428,7 @@ const deserializeAws_json1_0TaskTimedOutResponse = async (parsedOutput, context)
|
|
|
1428
1428
|
$metadata: deserializeMetadata(parsedOutput),
|
|
1429
1429
|
...deserialized,
|
|
1430
1430
|
});
|
|
1431
|
-
return smithy_client_1.decorateServiceException(exception, body);
|
|
1431
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1432
1432
|
};
|
|
1433
1433
|
const deserializeAws_json1_0TooManyTagsResponse = async (parsedOutput, context) => {
|
|
1434
1434
|
const body = parsedOutput.body;
|
|
@@ -1437,7 +1437,7 @@ const deserializeAws_json1_0TooManyTagsResponse = async (parsedOutput, context)
|
|
|
1437
1437
|
$metadata: deserializeMetadata(parsedOutput),
|
|
1438
1438
|
...deserialized,
|
|
1439
1439
|
});
|
|
1440
|
-
return smithy_client_1.decorateServiceException(exception, body);
|
|
1440
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1441
1441
|
};
|
|
1442
1442
|
const serializeAws_json1_0CloudWatchLogsLogGroup = (input, context) => {
|
|
1443
1443
|
return {
|
|
@@ -1675,18 +1675,18 @@ const serializeAws_json1_0UpdateStateMachineInput = (input, context) => {
|
|
|
1675
1675
|
};
|
|
1676
1676
|
const deserializeAws_json1_0ActivityDoesNotExist = (output, context) => {
|
|
1677
1677
|
return {
|
|
1678
|
-
message: smithy_client_1.expectString(output.message),
|
|
1678
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
1679
1679
|
};
|
|
1680
1680
|
};
|
|
1681
1681
|
const deserializeAws_json1_0ActivityFailedEventDetails = (output, context) => {
|
|
1682
1682
|
return {
|
|
1683
|
-
cause: smithy_client_1.expectString(output.cause),
|
|
1684
|
-
error: smithy_client_1.expectString(output.error),
|
|
1683
|
+
cause: (0, smithy_client_1.expectString)(output.cause),
|
|
1684
|
+
error: (0, smithy_client_1.expectString)(output.error),
|
|
1685
1685
|
};
|
|
1686
1686
|
};
|
|
1687
1687
|
const deserializeAws_json1_0ActivityLimitExceeded = (output, context) => {
|
|
1688
1688
|
return {
|
|
1689
|
-
message: smithy_client_1.expectString(output.message),
|
|
1689
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
1690
1690
|
};
|
|
1691
1691
|
};
|
|
1692
1692
|
const deserializeAws_json1_0ActivityList = (output, context) => {
|
|
@@ -1702,38 +1702,38 @@ const deserializeAws_json1_0ActivityList = (output, context) => {
|
|
|
1702
1702
|
};
|
|
1703
1703
|
const deserializeAws_json1_0ActivityListItem = (output, context) => {
|
|
1704
1704
|
return {
|
|
1705
|
-
activityArn: smithy_client_1.expectString(output.activityArn),
|
|
1705
|
+
activityArn: (0, smithy_client_1.expectString)(output.activityArn),
|
|
1706
1706
|
creationDate: output.creationDate !== undefined && output.creationDate !== null
|
|
1707
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.creationDate)))
|
|
1707
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.creationDate)))
|
|
1708
1708
|
: undefined,
|
|
1709
|
-
name: smithy_client_1.expectString(output.name),
|
|
1709
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
1710
1710
|
};
|
|
1711
1711
|
};
|
|
1712
1712
|
const deserializeAws_json1_0ActivityScheduledEventDetails = (output, context) => {
|
|
1713
1713
|
return {
|
|
1714
|
-
heartbeatInSeconds: smithy_client_1.expectLong(output.heartbeatInSeconds),
|
|
1715
|
-
input: smithy_client_1.expectString(output.input),
|
|
1714
|
+
heartbeatInSeconds: (0, smithy_client_1.expectLong)(output.heartbeatInSeconds),
|
|
1715
|
+
input: (0, smithy_client_1.expectString)(output.input),
|
|
1716
1716
|
inputDetails: output.inputDetails !== undefined && output.inputDetails !== null
|
|
1717
1717
|
? deserializeAws_json1_0HistoryEventExecutionDataDetails(output.inputDetails, context)
|
|
1718
1718
|
: undefined,
|
|
1719
|
-
resource: smithy_client_1.expectString(output.resource),
|
|
1720
|
-
timeoutInSeconds: smithy_client_1.expectLong(output.timeoutInSeconds),
|
|
1719
|
+
resource: (0, smithy_client_1.expectString)(output.resource),
|
|
1720
|
+
timeoutInSeconds: (0, smithy_client_1.expectLong)(output.timeoutInSeconds),
|
|
1721
1721
|
};
|
|
1722
1722
|
};
|
|
1723
1723
|
const deserializeAws_json1_0ActivityScheduleFailedEventDetails = (output, context) => {
|
|
1724
1724
|
return {
|
|
1725
|
-
cause: smithy_client_1.expectString(output.cause),
|
|
1726
|
-
error: smithy_client_1.expectString(output.error),
|
|
1725
|
+
cause: (0, smithy_client_1.expectString)(output.cause),
|
|
1726
|
+
error: (0, smithy_client_1.expectString)(output.error),
|
|
1727
1727
|
};
|
|
1728
1728
|
};
|
|
1729
1729
|
const deserializeAws_json1_0ActivityStartedEventDetails = (output, context) => {
|
|
1730
1730
|
return {
|
|
1731
|
-
workerName: smithy_client_1.expectString(output.workerName),
|
|
1731
|
+
workerName: (0, smithy_client_1.expectString)(output.workerName),
|
|
1732
1732
|
};
|
|
1733
1733
|
};
|
|
1734
1734
|
const deserializeAws_json1_0ActivitySucceededEventDetails = (output, context) => {
|
|
1735
1735
|
return {
|
|
1736
|
-
output: smithy_client_1.expectString(output.output),
|
|
1736
|
+
output: (0, smithy_client_1.expectString)(output.output),
|
|
1737
1737
|
outputDetails: output.outputDetails !== undefined && output.outputDetails !== null
|
|
1738
1738
|
? deserializeAws_json1_0HistoryEventExecutionDataDetails(output.outputDetails, context)
|
|
1739
1739
|
: undefined,
|
|
@@ -1741,45 +1741,45 @@ const deserializeAws_json1_0ActivitySucceededEventDetails = (output, context) =>
|
|
|
1741
1741
|
};
|
|
1742
1742
|
const deserializeAws_json1_0ActivityTimedOutEventDetails = (output, context) => {
|
|
1743
1743
|
return {
|
|
1744
|
-
cause: smithy_client_1.expectString(output.cause),
|
|
1745
|
-
error: smithy_client_1.expectString(output.error),
|
|
1744
|
+
cause: (0, smithy_client_1.expectString)(output.cause),
|
|
1745
|
+
error: (0, smithy_client_1.expectString)(output.error),
|
|
1746
1746
|
};
|
|
1747
1747
|
};
|
|
1748
1748
|
const deserializeAws_json1_0ActivityWorkerLimitExceeded = (output, context) => {
|
|
1749
1749
|
return {
|
|
1750
|
-
message: smithy_client_1.expectString(output.message),
|
|
1750
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
1751
1751
|
};
|
|
1752
1752
|
};
|
|
1753
1753
|
const deserializeAws_json1_0BillingDetails = (output, context) => {
|
|
1754
1754
|
return {
|
|
1755
|
-
billedDurationInMilliseconds: smithy_client_1.expectLong(output.billedDurationInMilliseconds),
|
|
1756
|
-
billedMemoryUsedInMB: smithy_client_1.expectLong(output.billedMemoryUsedInMB),
|
|
1755
|
+
billedDurationInMilliseconds: (0, smithy_client_1.expectLong)(output.billedDurationInMilliseconds),
|
|
1756
|
+
billedMemoryUsedInMB: (0, smithy_client_1.expectLong)(output.billedMemoryUsedInMB),
|
|
1757
1757
|
};
|
|
1758
1758
|
};
|
|
1759
1759
|
const deserializeAws_json1_0CloudWatchEventsExecutionDataDetails = (output, context) => {
|
|
1760
1760
|
return {
|
|
1761
|
-
included: smithy_client_1.expectBoolean(output.included),
|
|
1761
|
+
included: (0, smithy_client_1.expectBoolean)(output.included),
|
|
1762
1762
|
};
|
|
1763
1763
|
};
|
|
1764
1764
|
const deserializeAws_json1_0CloudWatchLogsLogGroup = (output, context) => {
|
|
1765
1765
|
return {
|
|
1766
|
-
logGroupArn: smithy_client_1.expectString(output.logGroupArn),
|
|
1766
|
+
logGroupArn: (0, smithy_client_1.expectString)(output.logGroupArn),
|
|
1767
1767
|
};
|
|
1768
1768
|
};
|
|
1769
1769
|
const deserializeAws_json1_0CreateActivityOutput = (output, context) => {
|
|
1770
1770
|
return {
|
|
1771
|
-
activityArn: smithy_client_1.expectString(output.activityArn),
|
|
1771
|
+
activityArn: (0, smithy_client_1.expectString)(output.activityArn),
|
|
1772
1772
|
creationDate: output.creationDate !== undefined && output.creationDate !== null
|
|
1773
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.creationDate)))
|
|
1773
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.creationDate)))
|
|
1774
1774
|
: undefined,
|
|
1775
1775
|
};
|
|
1776
1776
|
};
|
|
1777
1777
|
const deserializeAws_json1_0CreateStateMachineOutput = (output, context) => {
|
|
1778
1778
|
return {
|
|
1779
1779
|
creationDate: output.creationDate !== undefined && output.creationDate !== null
|
|
1780
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.creationDate)))
|
|
1780
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.creationDate)))
|
|
1781
1781
|
: undefined,
|
|
1782
|
-
stateMachineArn: smithy_client_1.expectString(output.stateMachineArn),
|
|
1782
|
+
stateMachineArn: (0, smithy_client_1.expectString)(output.stateMachineArn),
|
|
1783
1783
|
};
|
|
1784
1784
|
};
|
|
1785
1785
|
const deserializeAws_json1_0DeleteActivityOutput = (output, context) => {
|
|
@@ -1790,97 +1790,97 @@ const deserializeAws_json1_0DeleteStateMachineOutput = (output, context) => {
|
|
|
1790
1790
|
};
|
|
1791
1791
|
const deserializeAws_json1_0DescribeActivityOutput = (output, context) => {
|
|
1792
1792
|
return {
|
|
1793
|
-
activityArn: smithy_client_1.expectString(output.activityArn),
|
|
1793
|
+
activityArn: (0, smithy_client_1.expectString)(output.activityArn),
|
|
1794
1794
|
creationDate: output.creationDate !== undefined && output.creationDate !== null
|
|
1795
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.creationDate)))
|
|
1795
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.creationDate)))
|
|
1796
1796
|
: undefined,
|
|
1797
|
-
name: smithy_client_1.expectString(output.name),
|
|
1797
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
1798
1798
|
};
|
|
1799
1799
|
};
|
|
1800
1800
|
const deserializeAws_json1_0DescribeExecutionOutput = (output, context) => {
|
|
1801
1801
|
return {
|
|
1802
|
-
executionArn: smithy_client_1.expectString(output.executionArn),
|
|
1803
|
-
input: smithy_client_1.expectString(output.input),
|
|
1802
|
+
executionArn: (0, smithy_client_1.expectString)(output.executionArn),
|
|
1803
|
+
input: (0, smithy_client_1.expectString)(output.input),
|
|
1804
1804
|
inputDetails: output.inputDetails !== undefined && output.inputDetails !== null
|
|
1805
1805
|
? deserializeAws_json1_0CloudWatchEventsExecutionDataDetails(output.inputDetails, context)
|
|
1806
1806
|
: undefined,
|
|
1807
|
-
name: smithy_client_1.expectString(output.name),
|
|
1808
|
-
output: smithy_client_1.expectString(output.output),
|
|
1807
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
1808
|
+
output: (0, smithy_client_1.expectString)(output.output),
|
|
1809
1809
|
outputDetails: output.outputDetails !== undefined && output.outputDetails !== null
|
|
1810
1810
|
? deserializeAws_json1_0CloudWatchEventsExecutionDataDetails(output.outputDetails, context)
|
|
1811
1811
|
: undefined,
|
|
1812
1812
|
startDate: output.startDate !== undefined && output.startDate !== null
|
|
1813
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.startDate)))
|
|
1813
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.startDate)))
|
|
1814
1814
|
: undefined,
|
|
1815
|
-
stateMachineArn: smithy_client_1.expectString(output.stateMachineArn),
|
|
1816
|
-
status: smithy_client_1.expectString(output.status),
|
|
1815
|
+
stateMachineArn: (0, smithy_client_1.expectString)(output.stateMachineArn),
|
|
1816
|
+
status: (0, smithy_client_1.expectString)(output.status),
|
|
1817
1817
|
stopDate: output.stopDate !== undefined && output.stopDate !== null
|
|
1818
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.stopDate)))
|
|
1818
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.stopDate)))
|
|
1819
1819
|
: undefined,
|
|
1820
|
-
traceHeader: smithy_client_1.expectString(output.traceHeader),
|
|
1820
|
+
traceHeader: (0, smithy_client_1.expectString)(output.traceHeader),
|
|
1821
1821
|
};
|
|
1822
1822
|
};
|
|
1823
1823
|
const deserializeAws_json1_0DescribeStateMachineForExecutionOutput = (output, context) => {
|
|
1824
1824
|
return {
|
|
1825
|
-
definition: smithy_client_1.expectString(output.definition),
|
|
1825
|
+
definition: (0, smithy_client_1.expectString)(output.definition),
|
|
1826
1826
|
loggingConfiguration: output.loggingConfiguration !== undefined && output.loggingConfiguration !== null
|
|
1827
1827
|
? deserializeAws_json1_0LoggingConfiguration(output.loggingConfiguration, context)
|
|
1828
1828
|
: undefined,
|
|
1829
|
-
name: smithy_client_1.expectString(output.name),
|
|
1830
|
-
roleArn: smithy_client_1.expectString(output.roleArn),
|
|
1831
|
-
stateMachineArn: smithy_client_1.expectString(output.stateMachineArn),
|
|
1829
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
1830
|
+
roleArn: (0, smithy_client_1.expectString)(output.roleArn),
|
|
1831
|
+
stateMachineArn: (0, smithy_client_1.expectString)(output.stateMachineArn),
|
|
1832
1832
|
tracingConfiguration: output.tracingConfiguration !== undefined && output.tracingConfiguration !== null
|
|
1833
1833
|
? deserializeAws_json1_0TracingConfiguration(output.tracingConfiguration, context)
|
|
1834
1834
|
: undefined,
|
|
1835
1835
|
updateDate: output.updateDate !== undefined && output.updateDate !== null
|
|
1836
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.updateDate)))
|
|
1836
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.updateDate)))
|
|
1837
1837
|
: undefined,
|
|
1838
1838
|
};
|
|
1839
1839
|
};
|
|
1840
1840
|
const deserializeAws_json1_0DescribeStateMachineOutput = (output, context) => {
|
|
1841
1841
|
return {
|
|
1842
1842
|
creationDate: output.creationDate !== undefined && output.creationDate !== null
|
|
1843
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.creationDate)))
|
|
1843
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.creationDate)))
|
|
1844
1844
|
: undefined,
|
|
1845
|
-
definition: smithy_client_1.expectString(output.definition),
|
|
1845
|
+
definition: (0, smithy_client_1.expectString)(output.definition),
|
|
1846
1846
|
loggingConfiguration: output.loggingConfiguration !== undefined && output.loggingConfiguration !== null
|
|
1847
1847
|
? deserializeAws_json1_0LoggingConfiguration(output.loggingConfiguration, context)
|
|
1848
1848
|
: undefined,
|
|
1849
|
-
name: smithy_client_1.expectString(output.name),
|
|
1850
|
-
roleArn: smithy_client_1.expectString(output.roleArn),
|
|
1851
|
-
stateMachineArn: smithy_client_1.expectString(output.stateMachineArn),
|
|
1852
|
-
status: smithy_client_1.expectString(output.status),
|
|
1849
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
1850
|
+
roleArn: (0, smithy_client_1.expectString)(output.roleArn),
|
|
1851
|
+
stateMachineArn: (0, smithy_client_1.expectString)(output.stateMachineArn),
|
|
1852
|
+
status: (0, smithy_client_1.expectString)(output.status),
|
|
1853
1853
|
tracingConfiguration: output.tracingConfiguration !== undefined && output.tracingConfiguration !== null
|
|
1854
1854
|
? deserializeAws_json1_0TracingConfiguration(output.tracingConfiguration, context)
|
|
1855
1855
|
: undefined,
|
|
1856
|
-
type: smithy_client_1.expectString(output.type),
|
|
1856
|
+
type: (0, smithy_client_1.expectString)(output.type),
|
|
1857
1857
|
};
|
|
1858
1858
|
};
|
|
1859
1859
|
const deserializeAws_json1_0ExecutionAbortedEventDetails = (output, context) => {
|
|
1860
1860
|
return {
|
|
1861
|
-
cause: smithy_client_1.expectString(output.cause),
|
|
1862
|
-
error: smithy_client_1.expectString(output.error),
|
|
1861
|
+
cause: (0, smithy_client_1.expectString)(output.cause),
|
|
1862
|
+
error: (0, smithy_client_1.expectString)(output.error),
|
|
1863
1863
|
};
|
|
1864
1864
|
};
|
|
1865
1865
|
const deserializeAws_json1_0ExecutionAlreadyExists = (output, context) => {
|
|
1866
1866
|
return {
|
|
1867
|
-
message: smithy_client_1.expectString(output.message),
|
|
1867
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
1868
1868
|
};
|
|
1869
1869
|
};
|
|
1870
1870
|
const deserializeAws_json1_0ExecutionDoesNotExist = (output, context) => {
|
|
1871
1871
|
return {
|
|
1872
|
-
message: smithy_client_1.expectString(output.message),
|
|
1872
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
1873
1873
|
};
|
|
1874
1874
|
};
|
|
1875
1875
|
const deserializeAws_json1_0ExecutionFailedEventDetails = (output, context) => {
|
|
1876
1876
|
return {
|
|
1877
|
-
cause: smithy_client_1.expectString(output.cause),
|
|
1878
|
-
error: smithy_client_1.expectString(output.error),
|
|
1877
|
+
cause: (0, smithy_client_1.expectString)(output.cause),
|
|
1878
|
+
error: (0, smithy_client_1.expectString)(output.error),
|
|
1879
1879
|
};
|
|
1880
1880
|
};
|
|
1881
1881
|
const deserializeAws_json1_0ExecutionLimitExceeded = (output, context) => {
|
|
1882
1882
|
return {
|
|
1883
|
-
message: smithy_client_1.expectString(output.message),
|
|
1883
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
1884
1884
|
};
|
|
1885
1885
|
};
|
|
1886
1886
|
const deserializeAws_json1_0ExecutionList = (output, context) => {
|
|
@@ -1896,30 +1896,30 @@ const deserializeAws_json1_0ExecutionList = (output, context) => {
|
|
|
1896
1896
|
};
|
|
1897
1897
|
const deserializeAws_json1_0ExecutionListItem = (output, context) => {
|
|
1898
1898
|
return {
|
|
1899
|
-
executionArn: smithy_client_1.expectString(output.executionArn),
|
|
1900
|
-
name: smithy_client_1.expectString(output.name),
|
|
1899
|
+
executionArn: (0, smithy_client_1.expectString)(output.executionArn),
|
|
1900
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
1901
1901
|
startDate: output.startDate !== undefined && output.startDate !== null
|
|
1902
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.startDate)))
|
|
1902
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.startDate)))
|
|
1903
1903
|
: undefined,
|
|
1904
|
-
stateMachineArn: smithy_client_1.expectString(output.stateMachineArn),
|
|
1905
|
-
status: smithy_client_1.expectString(output.status),
|
|
1904
|
+
stateMachineArn: (0, smithy_client_1.expectString)(output.stateMachineArn),
|
|
1905
|
+
status: (0, smithy_client_1.expectString)(output.status),
|
|
1906
1906
|
stopDate: output.stopDate !== undefined && output.stopDate !== null
|
|
1907
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.stopDate)))
|
|
1907
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.stopDate)))
|
|
1908
1908
|
: undefined,
|
|
1909
1909
|
};
|
|
1910
1910
|
};
|
|
1911
1911
|
const deserializeAws_json1_0ExecutionStartedEventDetails = (output, context) => {
|
|
1912
1912
|
return {
|
|
1913
|
-
input: smithy_client_1.expectString(output.input),
|
|
1913
|
+
input: (0, smithy_client_1.expectString)(output.input),
|
|
1914
1914
|
inputDetails: output.inputDetails !== undefined && output.inputDetails !== null
|
|
1915
1915
|
? deserializeAws_json1_0HistoryEventExecutionDataDetails(output.inputDetails, context)
|
|
1916
1916
|
: undefined,
|
|
1917
|
-
roleArn: smithy_client_1.expectString(output.roleArn),
|
|
1917
|
+
roleArn: (0, smithy_client_1.expectString)(output.roleArn),
|
|
1918
1918
|
};
|
|
1919
1919
|
};
|
|
1920
1920
|
const deserializeAws_json1_0ExecutionSucceededEventDetails = (output, context) => {
|
|
1921
1921
|
return {
|
|
1922
|
-
output: smithy_client_1.expectString(output.output),
|
|
1922
|
+
output: (0, smithy_client_1.expectString)(output.output),
|
|
1923
1923
|
outputDetails: output.outputDetails !== undefined && output.outputDetails !== null
|
|
1924
1924
|
? deserializeAws_json1_0HistoryEventExecutionDataDetails(output.outputDetails, context)
|
|
1925
1925
|
: undefined,
|
|
@@ -1927,14 +1927,14 @@ const deserializeAws_json1_0ExecutionSucceededEventDetails = (output, context) =
|
|
|
1927
1927
|
};
|
|
1928
1928
|
const deserializeAws_json1_0ExecutionTimedOutEventDetails = (output, context) => {
|
|
1929
1929
|
return {
|
|
1930
|
-
cause: smithy_client_1.expectString(output.cause),
|
|
1931
|
-
error: smithy_client_1.expectString(output.error),
|
|
1930
|
+
cause: (0, smithy_client_1.expectString)(output.cause),
|
|
1931
|
+
error: (0, smithy_client_1.expectString)(output.error),
|
|
1932
1932
|
};
|
|
1933
1933
|
};
|
|
1934
1934
|
const deserializeAws_json1_0GetActivityTaskOutput = (output, context) => {
|
|
1935
1935
|
return {
|
|
1936
|
-
input: smithy_client_1.expectString(output.input),
|
|
1937
|
-
taskToken: smithy_client_1.expectString(output.taskToken),
|
|
1936
|
+
input: (0, smithy_client_1.expectString)(output.input),
|
|
1937
|
+
taskToken: (0, smithy_client_1.expectString)(output.taskToken),
|
|
1938
1938
|
};
|
|
1939
1939
|
};
|
|
1940
1940
|
const deserializeAws_json1_0GetExecutionHistoryOutput = (output, context) => {
|
|
@@ -1942,7 +1942,7 @@ const deserializeAws_json1_0GetExecutionHistoryOutput = (output, context) => {
|
|
|
1942
1942
|
events: output.events !== undefined && output.events !== null
|
|
1943
1943
|
? deserializeAws_json1_0HistoryEventList(output.events, context)
|
|
1944
1944
|
: undefined,
|
|
1945
|
-
nextToken: smithy_client_1.expectString(output.nextToken),
|
|
1945
|
+
nextToken: (0, smithy_client_1.expectString)(output.nextToken),
|
|
1946
1946
|
};
|
|
1947
1947
|
};
|
|
1948
1948
|
const deserializeAws_json1_0HistoryEvent = (output, context) => {
|
|
@@ -1980,7 +1980,7 @@ const deserializeAws_json1_0HistoryEvent = (output, context) => {
|
|
|
1980
1980
|
executionTimedOutEventDetails: output.executionTimedOutEventDetails !== undefined && output.executionTimedOutEventDetails !== null
|
|
1981
1981
|
? deserializeAws_json1_0ExecutionTimedOutEventDetails(output.executionTimedOutEventDetails, context)
|
|
1982
1982
|
: undefined,
|
|
1983
|
-
id: smithy_client_1.expectLong(output.id),
|
|
1983
|
+
id: (0, smithy_client_1.expectLong)(output.id),
|
|
1984
1984
|
lambdaFunctionFailedEventDetails: output.lambdaFunctionFailedEventDetails !== undefined && output.lambdaFunctionFailedEventDetails !== null
|
|
1985
1985
|
? deserializeAws_json1_0LambdaFunctionFailedEventDetails(output.lambdaFunctionFailedEventDetails, context)
|
|
1986
1986
|
: undefined,
|
|
@@ -2016,7 +2016,7 @@ const deserializeAws_json1_0HistoryEvent = (output, context) => {
|
|
|
2016
2016
|
mapStateStartedEventDetails: output.mapStateStartedEventDetails !== undefined && output.mapStateStartedEventDetails !== null
|
|
2017
2017
|
? deserializeAws_json1_0MapStateStartedEventDetails(output.mapStateStartedEventDetails, context)
|
|
2018
2018
|
: undefined,
|
|
2019
|
-
previousEventId: smithy_client_1.expectLong(output.previousEventId),
|
|
2019
|
+
previousEventId: (0, smithy_client_1.expectLong)(output.previousEventId),
|
|
2020
2020
|
stateEnteredEventDetails: output.stateEnteredEventDetails !== undefined && output.stateEnteredEventDetails !== null
|
|
2021
2021
|
? deserializeAws_json1_0StateEnteredEventDetails(output.stateEnteredEventDetails, context)
|
|
2022
2022
|
: undefined,
|
|
@@ -2048,14 +2048,14 @@ const deserializeAws_json1_0HistoryEvent = (output, context) => {
|
|
|
2048
2048
|
? deserializeAws_json1_0TaskTimedOutEventDetails(output.taskTimedOutEventDetails, context)
|
|
2049
2049
|
: undefined,
|
|
2050
2050
|
timestamp: output.timestamp !== undefined && output.timestamp !== null
|
|
2051
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.timestamp)))
|
|
2051
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.timestamp)))
|
|
2052
2052
|
: undefined,
|
|
2053
|
-
type: smithy_client_1.expectString(output.type),
|
|
2053
|
+
type: (0, smithy_client_1.expectString)(output.type),
|
|
2054
2054
|
};
|
|
2055
2055
|
};
|
|
2056
2056
|
const deserializeAws_json1_0HistoryEventExecutionDataDetails = (output, context) => {
|
|
2057
2057
|
return {
|
|
2058
|
-
truncated: smithy_client_1.expectBoolean(output.truncated),
|
|
2058
|
+
truncated: (0, smithy_client_1.expectBoolean)(output.truncated),
|
|
2059
2059
|
};
|
|
2060
2060
|
};
|
|
2061
2061
|
const deserializeAws_json1_0HistoryEventList = (output, context) => {
|
|
@@ -2071,75 +2071,75 @@ const deserializeAws_json1_0HistoryEventList = (output, context) => {
|
|
|
2071
2071
|
};
|
|
2072
2072
|
const deserializeAws_json1_0InvalidArn = (output, context) => {
|
|
2073
2073
|
return {
|
|
2074
|
-
message: smithy_client_1.expectString(output.message),
|
|
2074
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
2075
2075
|
};
|
|
2076
2076
|
};
|
|
2077
2077
|
const deserializeAws_json1_0InvalidDefinition = (output, context) => {
|
|
2078
2078
|
return {
|
|
2079
|
-
message: smithy_client_1.expectString(output.message),
|
|
2079
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
2080
2080
|
};
|
|
2081
2081
|
};
|
|
2082
2082
|
const deserializeAws_json1_0InvalidExecutionInput = (output, context) => {
|
|
2083
2083
|
return {
|
|
2084
|
-
message: smithy_client_1.expectString(output.message),
|
|
2084
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
2085
2085
|
};
|
|
2086
2086
|
};
|
|
2087
2087
|
const deserializeAws_json1_0InvalidLoggingConfiguration = (output, context) => {
|
|
2088
2088
|
return {
|
|
2089
|
-
message: smithy_client_1.expectString(output.message),
|
|
2089
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
2090
2090
|
};
|
|
2091
2091
|
};
|
|
2092
2092
|
const deserializeAws_json1_0InvalidName = (output, context) => {
|
|
2093
2093
|
return {
|
|
2094
|
-
message: smithy_client_1.expectString(output.message),
|
|
2094
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
2095
2095
|
};
|
|
2096
2096
|
};
|
|
2097
2097
|
const deserializeAws_json1_0InvalidOutput = (output, context) => {
|
|
2098
2098
|
return {
|
|
2099
|
-
message: smithy_client_1.expectString(output.message),
|
|
2099
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
2100
2100
|
};
|
|
2101
2101
|
};
|
|
2102
2102
|
const deserializeAws_json1_0InvalidToken = (output, context) => {
|
|
2103
2103
|
return {
|
|
2104
|
-
message: smithy_client_1.expectString(output.message),
|
|
2104
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
2105
2105
|
};
|
|
2106
2106
|
};
|
|
2107
2107
|
const deserializeAws_json1_0InvalidTracingConfiguration = (output, context) => {
|
|
2108
2108
|
return {
|
|
2109
|
-
message: smithy_client_1.expectString(output.message),
|
|
2109
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
2110
2110
|
};
|
|
2111
2111
|
};
|
|
2112
2112
|
const deserializeAws_json1_0LambdaFunctionFailedEventDetails = (output, context) => {
|
|
2113
2113
|
return {
|
|
2114
|
-
cause: smithy_client_1.expectString(output.cause),
|
|
2115
|
-
error: smithy_client_1.expectString(output.error),
|
|
2114
|
+
cause: (0, smithy_client_1.expectString)(output.cause),
|
|
2115
|
+
error: (0, smithy_client_1.expectString)(output.error),
|
|
2116
2116
|
};
|
|
2117
2117
|
};
|
|
2118
2118
|
const deserializeAws_json1_0LambdaFunctionScheduledEventDetails = (output, context) => {
|
|
2119
2119
|
return {
|
|
2120
|
-
input: smithy_client_1.expectString(output.input),
|
|
2120
|
+
input: (0, smithy_client_1.expectString)(output.input),
|
|
2121
2121
|
inputDetails: output.inputDetails !== undefined && output.inputDetails !== null
|
|
2122
2122
|
? deserializeAws_json1_0HistoryEventExecutionDataDetails(output.inputDetails, context)
|
|
2123
2123
|
: undefined,
|
|
2124
|
-
resource: smithy_client_1.expectString(output.resource),
|
|
2125
|
-
timeoutInSeconds: smithy_client_1.expectLong(output.timeoutInSeconds),
|
|
2124
|
+
resource: (0, smithy_client_1.expectString)(output.resource),
|
|
2125
|
+
timeoutInSeconds: (0, smithy_client_1.expectLong)(output.timeoutInSeconds),
|
|
2126
2126
|
};
|
|
2127
2127
|
};
|
|
2128
2128
|
const deserializeAws_json1_0LambdaFunctionScheduleFailedEventDetails = (output, context) => {
|
|
2129
2129
|
return {
|
|
2130
|
-
cause: smithy_client_1.expectString(output.cause),
|
|
2131
|
-
error: smithy_client_1.expectString(output.error),
|
|
2130
|
+
cause: (0, smithy_client_1.expectString)(output.cause),
|
|
2131
|
+
error: (0, smithy_client_1.expectString)(output.error),
|
|
2132
2132
|
};
|
|
2133
2133
|
};
|
|
2134
2134
|
const deserializeAws_json1_0LambdaFunctionStartFailedEventDetails = (output, context) => {
|
|
2135
2135
|
return {
|
|
2136
|
-
cause: smithy_client_1.expectString(output.cause),
|
|
2137
|
-
error: smithy_client_1.expectString(output.error),
|
|
2136
|
+
cause: (0, smithy_client_1.expectString)(output.cause),
|
|
2137
|
+
error: (0, smithy_client_1.expectString)(output.error),
|
|
2138
2138
|
};
|
|
2139
2139
|
};
|
|
2140
2140
|
const deserializeAws_json1_0LambdaFunctionSucceededEventDetails = (output, context) => {
|
|
2141
2141
|
return {
|
|
2142
|
-
output: smithy_client_1.expectString(output.output),
|
|
2142
|
+
output: (0, smithy_client_1.expectString)(output.output),
|
|
2143
2143
|
outputDetails: output.outputDetails !== undefined && output.outputDetails !== null
|
|
2144
2144
|
? deserializeAws_json1_0HistoryEventExecutionDataDetails(output.outputDetails, context)
|
|
2145
2145
|
: undefined,
|
|
@@ -2147,8 +2147,8 @@ const deserializeAws_json1_0LambdaFunctionSucceededEventDetails = (output, conte
|
|
|
2147
2147
|
};
|
|
2148
2148
|
const deserializeAws_json1_0LambdaFunctionTimedOutEventDetails = (output, context) => {
|
|
2149
2149
|
return {
|
|
2150
|
-
cause: smithy_client_1.expectString(output.cause),
|
|
2151
|
-
error: smithy_client_1.expectString(output.error),
|
|
2150
|
+
cause: (0, smithy_client_1.expectString)(output.cause),
|
|
2151
|
+
error: (0, smithy_client_1.expectString)(output.error),
|
|
2152
2152
|
};
|
|
2153
2153
|
};
|
|
2154
2154
|
const deserializeAws_json1_0ListActivitiesOutput = (output, context) => {
|
|
@@ -2156,7 +2156,7 @@ const deserializeAws_json1_0ListActivitiesOutput = (output, context) => {
|
|
|
2156
2156
|
activities: output.activities !== undefined && output.activities !== null
|
|
2157
2157
|
? deserializeAws_json1_0ActivityList(output.activities, context)
|
|
2158
2158
|
: undefined,
|
|
2159
|
-
nextToken: smithy_client_1.expectString(output.nextToken),
|
|
2159
|
+
nextToken: (0, smithy_client_1.expectString)(output.nextToken),
|
|
2160
2160
|
};
|
|
2161
2161
|
};
|
|
2162
2162
|
const deserializeAws_json1_0ListExecutionsOutput = (output, context) => {
|
|
@@ -2164,12 +2164,12 @@ const deserializeAws_json1_0ListExecutionsOutput = (output, context) => {
|
|
|
2164
2164
|
executions: output.executions !== undefined && output.executions !== null
|
|
2165
2165
|
? deserializeAws_json1_0ExecutionList(output.executions, context)
|
|
2166
2166
|
: undefined,
|
|
2167
|
-
nextToken: smithy_client_1.expectString(output.nextToken),
|
|
2167
|
+
nextToken: (0, smithy_client_1.expectString)(output.nextToken),
|
|
2168
2168
|
};
|
|
2169
2169
|
};
|
|
2170
2170
|
const deserializeAws_json1_0ListStateMachinesOutput = (output, context) => {
|
|
2171
2171
|
return {
|
|
2172
|
-
nextToken: smithy_client_1.expectString(output.nextToken),
|
|
2172
|
+
nextToken: (0, smithy_client_1.expectString)(output.nextToken),
|
|
2173
2173
|
stateMachines: output.stateMachines !== undefined && output.stateMachines !== null
|
|
2174
2174
|
? deserializeAws_json1_0StateMachineList(output.stateMachines, context)
|
|
2175
2175
|
: undefined,
|
|
@@ -2205,30 +2205,30 @@ const deserializeAws_json1_0LoggingConfiguration = (output, context) => {
|
|
|
2205
2205
|
destinations: output.destinations !== undefined && output.destinations !== null
|
|
2206
2206
|
? deserializeAws_json1_0LogDestinationList(output.destinations, context)
|
|
2207
2207
|
: undefined,
|
|
2208
|
-
includeExecutionData: smithy_client_1.expectBoolean(output.includeExecutionData),
|
|
2209
|
-
level: smithy_client_1.expectString(output.level),
|
|
2208
|
+
includeExecutionData: (0, smithy_client_1.expectBoolean)(output.includeExecutionData),
|
|
2209
|
+
level: (0, smithy_client_1.expectString)(output.level),
|
|
2210
2210
|
};
|
|
2211
2211
|
};
|
|
2212
2212
|
const deserializeAws_json1_0MapIterationEventDetails = (output, context) => {
|
|
2213
2213
|
return {
|
|
2214
|
-
index: smithy_client_1.expectInt32(output.index),
|
|
2215
|
-
name: smithy_client_1.expectString(output.name),
|
|
2214
|
+
index: (0, smithy_client_1.expectInt32)(output.index),
|
|
2215
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
2216
2216
|
};
|
|
2217
2217
|
};
|
|
2218
2218
|
const deserializeAws_json1_0MapStateStartedEventDetails = (output, context) => {
|
|
2219
2219
|
return {
|
|
2220
|
-
length: smithy_client_1.expectInt32(output.length),
|
|
2220
|
+
length: (0, smithy_client_1.expectInt32)(output.length),
|
|
2221
2221
|
};
|
|
2222
2222
|
};
|
|
2223
2223
|
const deserializeAws_json1_0MissingRequiredParameter = (output, context) => {
|
|
2224
2224
|
return {
|
|
2225
|
-
message: smithy_client_1.expectString(output.message),
|
|
2225
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
2226
2226
|
};
|
|
2227
2227
|
};
|
|
2228
2228
|
const deserializeAws_json1_0ResourceNotFound = (output, context) => {
|
|
2229
2229
|
return {
|
|
2230
|
-
message: smithy_client_1.expectString(output.message),
|
|
2231
|
-
resourceName: smithy_client_1.expectString(output.resourceName),
|
|
2230
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
2231
|
+
resourceName: (0, smithy_client_1.expectString)(output.resourceName),
|
|
2232
2232
|
};
|
|
2233
2233
|
};
|
|
2234
2234
|
const deserializeAws_json1_0SendTaskFailureOutput = (output, context) => {
|
|
@@ -2242,9 +2242,9 @@ const deserializeAws_json1_0SendTaskSuccessOutput = (output, context) => {
|
|
|
2242
2242
|
};
|
|
2243
2243
|
const deserializeAws_json1_0StartExecutionOutput = (output, context) => {
|
|
2244
2244
|
return {
|
|
2245
|
-
executionArn: smithy_client_1.expectString(output.executionArn),
|
|
2245
|
+
executionArn: (0, smithy_client_1.expectString)(output.executionArn),
|
|
2246
2246
|
startDate: output.startDate !== undefined && output.startDate !== null
|
|
2247
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.startDate)))
|
|
2247
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.startDate)))
|
|
2248
2248
|
: undefined,
|
|
2249
2249
|
};
|
|
2250
2250
|
};
|
|
@@ -2253,42 +2253,42 @@ const deserializeAws_json1_0StartSyncExecutionOutput = (output, context) => {
|
|
|
2253
2253
|
billingDetails: output.billingDetails !== undefined && output.billingDetails !== null
|
|
2254
2254
|
? deserializeAws_json1_0BillingDetails(output.billingDetails, context)
|
|
2255
2255
|
: undefined,
|
|
2256
|
-
cause: smithy_client_1.expectString(output.cause),
|
|
2257
|
-
error: smithy_client_1.expectString(output.error),
|
|
2258
|
-
executionArn: smithy_client_1.expectString(output.executionArn),
|
|
2259
|
-
input: smithy_client_1.expectString(output.input),
|
|
2256
|
+
cause: (0, smithy_client_1.expectString)(output.cause),
|
|
2257
|
+
error: (0, smithy_client_1.expectString)(output.error),
|
|
2258
|
+
executionArn: (0, smithy_client_1.expectString)(output.executionArn),
|
|
2259
|
+
input: (0, smithy_client_1.expectString)(output.input),
|
|
2260
2260
|
inputDetails: output.inputDetails !== undefined && output.inputDetails !== null
|
|
2261
2261
|
? deserializeAws_json1_0CloudWatchEventsExecutionDataDetails(output.inputDetails, context)
|
|
2262
2262
|
: undefined,
|
|
2263
|
-
name: smithy_client_1.expectString(output.name),
|
|
2264
|
-
output: smithy_client_1.expectString(output.output),
|
|
2263
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
2264
|
+
output: (0, smithy_client_1.expectString)(output.output),
|
|
2265
2265
|
outputDetails: output.outputDetails !== undefined && output.outputDetails !== null
|
|
2266
2266
|
? deserializeAws_json1_0CloudWatchEventsExecutionDataDetails(output.outputDetails, context)
|
|
2267
2267
|
: undefined,
|
|
2268
2268
|
startDate: output.startDate !== undefined && output.startDate !== null
|
|
2269
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.startDate)))
|
|
2269
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.startDate)))
|
|
2270
2270
|
: undefined,
|
|
2271
|
-
stateMachineArn: smithy_client_1.expectString(output.stateMachineArn),
|
|
2272
|
-
status: smithy_client_1.expectString(output.status),
|
|
2271
|
+
stateMachineArn: (0, smithy_client_1.expectString)(output.stateMachineArn),
|
|
2272
|
+
status: (0, smithy_client_1.expectString)(output.status),
|
|
2273
2273
|
stopDate: output.stopDate !== undefined && output.stopDate !== null
|
|
2274
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.stopDate)))
|
|
2274
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.stopDate)))
|
|
2275
2275
|
: undefined,
|
|
2276
|
-
traceHeader: smithy_client_1.expectString(output.traceHeader),
|
|
2276
|
+
traceHeader: (0, smithy_client_1.expectString)(output.traceHeader),
|
|
2277
2277
|
};
|
|
2278
2278
|
};
|
|
2279
2279
|
const deserializeAws_json1_0StateEnteredEventDetails = (output, context) => {
|
|
2280
2280
|
return {
|
|
2281
|
-
input: smithy_client_1.expectString(output.input),
|
|
2281
|
+
input: (0, smithy_client_1.expectString)(output.input),
|
|
2282
2282
|
inputDetails: output.inputDetails !== undefined && output.inputDetails !== null
|
|
2283
2283
|
? deserializeAws_json1_0HistoryEventExecutionDataDetails(output.inputDetails, context)
|
|
2284
2284
|
: undefined,
|
|
2285
|
-
name: smithy_client_1.expectString(output.name),
|
|
2285
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
2286
2286
|
};
|
|
2287
2287
|
};
|
|
2288
2288
|
const deserializeAws_json1_0StateExitedEventDetails = (output, context) => {
|
|
2289
2289
|
return {
|
|
2290
|
-
name: smithy_client_1.expectString(output.name),
|
|
2291
|
-
output: smithy_client_1.expectString(output.output),
|
|
2290
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
2291
|
+
output: (0, smithy_client_1.expectString)(output.output),
|
|
2292
2292
|
outputDetails: output.outputDetails !== undefined && output.outputDetails !== null
|
|
2293
2293
|
? deserializeAws_json1_0HistoryEventExecutionDataDetails(output.outputDetails, context)
|
|
2294
2294
|
: undefined,
|
|
@@ -2296,22 +2296,22 @@ const deserializeAws_json1_0StateExitedEventDetails = (output, context) => {
|
|
|
2296
2296
|
};
|
|
2297
2297
|
const deserializeAws_json1_0StateMachineAlreadyExists = (output, context) => {
|
|
2298
2298
|
return {
|
|
2299
|
-
message: smithy_client_1.expectString(output.message),
|
|
2299
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
2300
2300
|
};
|
|
2301
2301
|
};
|
|
2302
2302
|
const deserializeAws_json1_0StateMachineDeleting = (output, context) => {
|
|
2303
2303
|
return {
|
|
2304
|
-
message: smithy_client_1.expectString(output.message),
|
|
2304
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
2305
2305
|
};
|
|
2306
2306
|
};
|
|
2307
2307
|
const deserializeAws_json1_0StateMachineDoesNotExist = (output, context) => {
|
|
2308
2308
|
return {
|
|
2309
|
-
message: smithy_client_1.expectString(output.message),
|
|
2309
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
2310
2310
|
};
|
|
2311
2311
|
};
|
|
2312
2312
|
const deserializeAws_json1_0StateMachineLimitExceeded = (output, context) => {
|
|
2313
2313
|
return {
|
|
2314
|
-
message: smithy_client_1.expectString(output.message),
|
|
2314
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
2315
2315
|
};
|
|
2316
2316
|
};
|
|
2317
2317
|
const deserializeAws_json1_0StateMachineList = (output, context) => {
|
|
@@ -2328,29 +2328,29 @@ const deserializeAws_json1_0StateMachineList = (output, context) => {
|
|
|
2328
2328
|
const deserializeAws_json1_0StateMachineListItem = (output, context) => {
|
|
2329
2329
|
return {
|
|
2330
2330
|
creationDate: output.creationDate !== undefined && output.creationDate !== null
|
|
2331
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.creationDate)))
|
|
2331
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.creationDate)))
|
|
2332
2332
|
: undefined,
|
|
2333
|
-
name: smithy_client_1.expectString(output.name),
|
|
2334
|
-
stateMachineArn: smithy_client_1.expectString(output.stateMachineArn),
|
|
2335
|
-
type: smithy_client_1.expectString(output.type),
|
|
2333
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
2334
|
+
stateMachineArn: (0, smithy_client_1.expectString)(output.stateMachineArn),
|
|
2335
|
+
type: (0, smithy_client_1.expectString)(output.type),
|
|
2336
2336
|
};
|
|
2337
2337
|
};
|
|
2338
2338
|
const deserializeAws_json1_0StateMachineTypeNotSupported = (output, context) => {
|
|
2339
2339
|
return {
|
|
2340
|
-
message: smithy_client_1.expectString(output.message),
|
|
2340
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
2341
2341
|
};
|
|
2342
2342
|
};
|
|
2343
2343
|
const deserializeAws_json1_0StopExecutionOutput = (output, context) => {
|
|
2344
2344
|
return {
|
|
2345
2345
|
stopDate: output.stopDate !== undefined && output.stopDate !== null
|
|
2346
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.stopDate)))
|
|
2346
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.stopDate)))
|
|
2347
2347
|
: undefined,
|
|
2348
2348
|
};
|
|
2349
2349
|
};
|
|
2350
2350
|
const deserializeAws_json1_0Tag = (output, context) => {
|
|
2351
2351
|
return {
|
|
2352
|
-
key: smithy_client_1.expectString(output.key),
|
|
2353
|
-
value: smithy_client_1.expectString(output.value),
|
|
2352
|
+
key: (0, smithy_client_1.expectString)(output.key),
|
|
2353
|
+
value: (0, smithy_client_1.expectString)(output.value),
|
|
2354
2354
|
};
|
|
2355
2355
|
};
|
|
2356
2356
|
const deserializeAws_json1_0TagList = (output, context) => {
|
|
@@ -2369,91 +2369,91 @@ const deserializeAws_json1_0TagResourceOutput = (output, context) => {
|
|
|
2369
2369
|
};
|
|
2370
2370
|
const deserializeAws_json1_0TaskDoesNotExist = (output, context) => {
|
|
2371
2371
|
return {
|
|
2372
|
-
message: smithy_client_1.expectString(output.message),
|
|
2372
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
2373
2373
|
};
|
|
2374
2374
|
};
|
|
2375
2375
|
const deserializeAws_json1_0TaskFailedEventDetails = (output, context) => {
|
|
2376
2376
|
return {
|
|
2377
|
-
cause: smithy_client_1.expectString(output.cause),
|
|
2378
|
-
error: smithy_client_1.expectString(output.error),
|
|
2379
|
-
resource: smithy_client_1.expectString(output.resource),
|
|
2380
|
-
resourceType: smithy_client_1.expectString(output.resourceType),
|
|
2377
|
+
cause: (0, smithy_client_1.expectString)(output.cause),
|
|
2378
|
+
error: (0, smithy_client_1.expectString)(output.error),
|
|
2379
|
+
resource: (0, smithy_client_1.expectString)(output.resource),
|
|
2380
|
+
resourceType: (0, smithy_client_1.expectString)(output.resourceType),
|
|
2381
2381
|
};
|
|
2382
2382
|
};
|
|
2383
2383
|
const deserializeAws_json1_0TaskScheduledEventDetails = (output, context) => {
|
|
2384
2384
|
return {
|
|
2385
|
-
heartbeatInSeconds: smithy_client_1.expectLong(output.heartbeatInSeconds),
|
|
2386
|
-
parameters: smithy_client_1.expectString(output.parameters),
|
|
2387
|
-
region: smithy_client_1.expectString(output.region),
|
|
2388
|
-
resource: smithy_client_1.expectString(output.resource),
|
|
2389
|
-
resourceType: smithy_client_1.expectString(output.resourceType),
|
|
2390
|
-
timeoutInSeconds: smithy_client_1.expectLong(output.timeoutInSeconds),
|
|
2385
|
+
heartbeatInSeconds: (0, smithy_client_1.expectLong)(output.heartbeatInSeconds),
|
|
2386
|
+
parameters: (0, smithy_client_1.expectString)(output.parameters),
|
|
2387
|
+
region: (0, smithy_client_1.expectString)(output.region),
|
|
2388
|
+
resource: (0, smithy_client_1.expectString)(output.resource),
|
|
2389
|
+
resourceType: (0, smithy_client_1.expectString)(output.resourceType),
|
|
2390
|
+
timeoutInSeconds: (0, smithy_client_1.expectLong)(output.timeoutInSeconds),
|
|
2391
2391
|
};
|
|
2392
2392
|
};
|
|
2393
2393
|
const deserializeAws_json1_0TaskStartedEventDetails = (output, context) => {
|
|
2394
2394
|
return {
|
|
2395
|
-
resource: smithy_client_1.expectString(output.resource),
|
|
2396
|
-
resourceType: smithy_client_1.expectString(output.resourceType),
|
|
2395
|
+
resource: (0, smithy_client_1.expectString)(output.resource),
|
|
2396
|
+
resourceType: (0, smithy_client_1.expectString)(output.resourceType),
|
|
2397
2397
|
};
|
|
2398
2398
|
};
|
|
2399
2399
|
const deserializeAws_json1_0TaskStartFailedEventDetails = (output, context) => {
|
|
2400
2400
|
return {
|
|
2401
|
-
cause: smithy_client_1.expectString(output.cause),
|
|
2402
|
-
error: smithy_client_1.expectString(output.error),
|
|
2403
|
-
resource: smithy_client_1.expectString(output.resource),
|
|
2404
|
-
resourceType: smithy_client_1.expectString(output.resourceType),
|
|
2401
|
+
cause: (0, smithy_client_1.expectString)(output.cause),
|
|
2402
|
+
error: (0, smithy_client_1.expectString)(output.error),
|
|
2403
|
+
resource: (0, smithy_client_1.expectString)(output.resource),
|
|
2404
|
+
resourceType: (0, smithy_client_1.expectString)(output.resourceType),
|
|
2405
2405
|
};
|
|
2406
2406
|
};
|
|
2407
2407
|
const deserializeAws_json1_0TaskSubmitFailedEventDetails = (output, context) => {
|
|
2408
2408
|
return {
|
|
2409
|
-
cause: smithy_client_1.expectString(output.cause),
|
|
2410
|
-
error: smithy_client_1.expectString(output.error),
|
|
2411
|
-
resource: smithy_client_1.expectString(output.resource),
|
|
2412
|
-
resourceType: smithy_client_1.expectString(output.resourceType),
|
|
2409
|
+
cause: (0, smithy_client_1.expectString)(output.cause),
|
|
2410
|
+
error: (0, smithy_client_1.expectString)(output.error),
|
|
2411
|
+
resource: (0, smithy_client_1.expectString)(output.resource),
|
|
2412
|
+
resourceType: (0, smithy_client_1.expectString)(output.resourceType),
|
|
2413
2413
|
};
|
|
2414
2414
|
};
|
|
2415
2415
|
const deserializeAws_json1_0TaskSubmittedEventDetails = (output, context) => {
|
|
2416
2416
|
return {
|
|
2417
|
-
output: smithy_client_1.expectString(output.output),
|
|
2417
|
+
output: (0, smithy_client_1.expectString)(output.output),
|
|
2418
2418
|
outputDetails: output.outputDetails !== undefined && output.outputDetails !== null
|
|
2419
2419
|
? deserializeAws_json1_0HistoryEventExecutionDataDetails(output.outputDetails, context)
|
|
2420
2420
|
: undefined,
|
|
2421
|
-
resource: smithy_client_1.expectString(output.resource),
|
|
2422
|
-
resourceType: smithy_client_1.expectString(output.resourceType),
|
|
2421
|
+
resource: (0, smithy_client_1.expectString)(output.resource),
|
|
2422
|
+
resourceType: (0, smithy_client_1.expectString)(output.resourceType),
|
|
2423
2423
|
};
|
|
2424
2424
|
};
|
|
2425
2425
|
const deserializeAws_json1_0TaskSucceededEventDetails = (output, context) => {
|
|
2426
2426
|
return {
|
|
2427
|
-
output: smithy_client_1.expectString(output.output),
|
|
2427
|
+
output: (0, smithy_client_1.expectString)(output.output),
|
|
2428
2428
|
outputDetails: output.outputDetails !== undefined && output.outputDetails !== null
|
|
2429
2429
|
? deserializeAws_json1_0HistoryEventExecutionDataDetails(output.outputDetails, context)
|
|
2430
2430
|
: undefined,
|
|
2431
|
-
resource: smithy_client_1.expectString(output.resource),
|
|
2432
|
-
resourceType: smithy_client_1.expectString(output.resourceType),
|
|
2431
|
+
resource: (0, smithy_client_1.expectString)(output.resource),
|
|
2432
|
+
resourceType: (0, smithy_client_1.expectString)(output.resourceType),
|
|
2433
2433
|
};
|
|
2434
2434
|
};
|
|
2435
2435
|
const deserializeAws_json1_0TaskTimedOut = (output, context) => {
|
|
2436
2436
|
return {
|
|
2437
|
-
message: smithy_client_1.expectString(output.message),
|
|
2437
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
2438
2438
|
};
|
|
2439
2439
|
};
|
|
2440
2440
|
const deserializeAws_json1_0TaskTimedOutEventDetails = (output, context) => {
|
|
2441
2441
|
return {
|
|
2442
|
-
cause: smithy_client_1.expectString(output.cause),
|
|
2443
|
-
error: smithy_client_1.expectString(output.error),
|
|
2444
|
-
resource: smithy_client_1.expectString(output.resource),
|
|
2445
|
-
resourceType: smithy_client_1.expectString(output.resourceType),
|
|
2442
|
+
cause: (0, smithy_client_1.expectString)(output.cause),
|
|
2443
|
+
error: (0, smithy_client_1.expectString)(output.error),
|
|
2444
|
+
resource: (0, smithy_client_1.expectString)(output.resource),
|
|
2445
|
+
resourceType: (0, smithy_client_1.expectString)(output.resourceType),
|
|
2446
2446
|
};
|
|
2447
2447
|
};
|
|
2448
2448
|
const deserializeAws_json1_0TooManyTags = (output, context) => {
|
|
2449
2449
|
return {
|
|
2450
|
-
message: smithy_client_1.expectString(output.message),
|
|
2451
|
-
resourceName: smithy_client_1.expectString(output.resourceName),
|
|
2450
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
2451
|
+
resourceName: (0, smithy_client_1.expectString)(output.resourceName),
|
|
2452
2452
|
};
|
|
2453
2453
|
};
|
|
2454
2454
|
const deserializeAws_json1_0TracingConfiguration = (output, context) => {
|
|
2455
2455
|
return {
|
|
2456
|
-
enabled: smithy_client_1.expectBoolean(output.enabled),
|
|
2456
|
+
enabled: (0, smithy_client_1.expectBoolean)(output.enabled),
|
|
2457
2457
|
};
|
|
2458
2458
|
};
|
|
2459
2459
|
const deserializeAws_json1_0UntagResourceOutput = (output, context) => {
|
|
@@ -2462,7 +2462,7 @@ const deserializeAws_json1_0UntagResourceOutput = (output, context) => {
|
|
|
2462
2462
|
const deserializeAws_json1_0UpdateStateMachineOutput = (output, context) => {
|
|
2463
2463
|
return {
|
|
2464
2464
|
updateDate: output.updateDate !== undefined && output.updateDate !== null
|
|
2465
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.updateDate)))
|
|
2465
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.updateDate)))
|
|
2466
2466
|
: undefined,
|
|
2467
2467
|
};
|
|
2468
2468
|
};
|