@aws-sdk/client-sagemaker 3.180.0 → 3.182.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 +28 -0
- package/dist-cjs/commands/CreateFlowDefinitionCommand.js +3 -3
- package/dist-cjs/commands/CreateHumanTaskUiCommand.js +3 -3
- package/dist-cjs/commands/DescribeEndpointConfigCommand.js +2 -1
- package/dist-cjs/commands/DescribeExperimentCommand.js +3 -3
- package/dist-cjs/commands/DescribeFeatureGroupCommand.js +1 -2
- package/dist-cjs/commands/ListModelsCommand.js +3 -3
- package/dist-cjs/commands/ListMonitoringExecutionsCommand.js +3 -3
- package/dist-cjs/commands/ListMonitoringSchedulesCommand.js +3 -3
- package/dist-cjs/models/models_0.js +104 -41
- package/dist-cjs/models/models_1.js +43 -51
- package/dist-cjs/models/models_2.js +61 -56
- package/dist-cjs/models/models_3.js +58 -4
- package/dist-cjs/protocols/Aws_json1_1.js +470 -263
- package/dist-es/commands/CreateFlowDefinitionCommand.js +1 -1
- package/dist-es/commands/CreateHumanTaskUiCommand.js +1 -1
- package/dist-es/commands/DescribeEndpointConfigCommand.js +2 -1
- package/dist-es/commands/DescribeExperimentCommand.js +1 -1
- package/dist-es/commands/DescribeFeatureGroupCommand.js +1 -2
- package/dist-es/commands/ListModelsCommand.js +1 -1
- package/dist-es/commands/ListMonitoringExecutionsCommand.js +1 -1
- package/dist-es/commands/ListMonitoringSchedulesCommand.js +1 -1
- package/dist-es/models/models_0.js +81 -9
- package/dist-es/models/models_1.js +9 -26
- package/dist-es/models/models_2.js +34 -26
- package/dist-es/models/models_3.js +27 -0
- package/dist-es/protocols/Aws_json1_1.js +447 -270
- package/dist-types/SageMaker.d.ts +1 -1
- package/dist-types/commands/CreateFlowDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/CreateHumanTaskUiCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEndpointConfigCommand.d.ts +2 -1
- package/dist-types/commands/DescribeExperimentCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFeatureGroupCommand.d.ts +1 -2
- package/dist-types/commands/ListModelsCommand.d.ts +1 -1
- package/dist-types/commands/ListMonitoringExecutionsCommand.d.ts +1 -1
- package/dist-types/commands/ListMonitoringSchedulesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTrainingJobCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +352 -528
- package/dist-types/models/models_1.d.ts +529 -155
- package/dist-types/models/models_2.d.ts +214 -294
- package/dist-types/models/models_3.d.ts +324 -3
- package/dist-types/ts3.4/commands/CreateFlowDefinitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateHumanTaskUiCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeEndpointConfigCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeExperimentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeFeatureGroupCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListModelsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListMonitoringExecutionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListMonitoringSchedulesCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +129 -75
- package/dist-types/ts3.4/models/models_1.d.ts +80 -73
- package/dist-types/ts3.4/models/models_2.d.ts +93 -112
- package/dist-types/ts3.4/models/models_3.d.ts +123 -2
- package/package.json +3 -3
|
@@ -2664,7 +2664,7 @@ exports.deserializeAws_json1_1AddAssociationCommand = deserializeAws_json1_1AddA
|
|
|
2664
2664
|
const deserializeAws_json1_1AddAssociationCommandError = async (output, context) => {
|
|
2665
2665
|
const parsedOutput = {
|
|
2666
2666
|
...output,
|
|
2667
|
-
body: await
|
|
2667
|
+
body: await parseErrorBody(output.body, context),
|
|
2668
2668
|
};
|
|
2669
2669
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
2670
2670
|
switch (errorCode) {
|
|
@@ -2701,7 +2701,7 @@ exports.deserializeAws_json1_1AddTagsCommand = deserializeAws_json1_1AddTagsComm
|
|
|
2701
2701
|
const deserializeAws_json1_1AddTagsCommandError = async (output, context) => {
|
|
2702
2702
|
const parsedOutput = {
|
|
2703
2703
|
...output,
|
|
2704
|
-
body: await
|
|
2704
|
+
body: await parseErrorBody(output.body, context),
|
|
2705
2705
|
};
|
|
2706
2706
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
2707
2707
|
const parsedBody = parsedOutput.body;
|
|
@@ -2729,7 +2729,7 @@ exports.deserializeAws_json1_1AssociateTrialComponentCommand = deserializeAws_js
|
|
|
2729
2729
|
const deserializeAws_json1_1AssociateTrialComponentCommandError = async (output, context) => {
|
|
2730
2730
|
const parsedOutput = {
|
|
2731
2731
|
...output,
|
|
2732
|
-
body: await
|
|
2732
|
+
body: await parseErrorBody(output.body, context),
|
|
2733
2733
|
};
|
|
2734
2734
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
2735
2735
|
switch (errorCode) {
|
|
@@ -2766,7 +2766,7 @@ exports.deserializeAws_json1_1BatchDescribeModelPackageCommand = deserializeAws_
|
|
|
2766
2766
|
const deserializeAws_json1_1BatchDescribeModelPackageCommandError = async (output, context) => {
|
|
2767
2767
|
const parsedOutput = {
|
|
2768
2768
|
...output,
|
|
2769
|
-
body: await
|
|
2769
|
+
body: await parseErrorBody(output.body, context),
|
|
2770
2770
|
};
|
|
2771
2771
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
2772
2772
|
const parsedBody = parsedOutput.body;
|
|
@@ -2794,7 +2794,7 @@ exports.deserializeAws_json1_1CreateActionCommand = deserializeAws_json1_1Create
|
|
|
2794
2794
|
const deserializeAws_json1_1CreateActionCommandError = async (output, context) => {
|
|
2795
2795
|
const parsedOutput = {
|
|
2796
2796
|
...output,
|
|
2797
|
-
body: await
|
|
2797
|
+
body: await parseErrorBody(output.body, context),
|
|
2798
2798
|
};
|
|
2799
2799
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
2800
2800
|
switch (errorCode) {
|
|
@@ -2828,7 +2828,7 @@ exports.deserializeAws_json1_1CreateAlgorithmCommand = deserializeAws_json1_1Cre
|
|
|
2828
2828
|
const deserializeAws_json1_1CreateAlgorithmCommandError = async (output, context) => {
|
|
2829
2829
|
const parsedOutput = {
|
|
2830
2830
|
...output,
|
|
2831
|
-
body: await
|
|
2831
|
+
body: await parseErrorBody(output.body, context),
|
|
2832
2832
|
};
|
|
2833
2833
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
2834
2834
|
const parsedBody = parsedOutput.body;
|
|
@@ -2856,7 +2856,7 @@ exports.deserializeAws_json1_1CreateAppCommand = deserializeAws_json1_1CreateApp
|
|
|
2856
2856
|
const deserializeAws_json1_1CreateAppCommandError = async (output, context) => {
|
|
2857
2857
|
const parsedOutput = {
|
|
2858
2858
|
...output,
|
|
2859
|
-
body: await
|
|
2859
|
+
body: await parseErrorBody(output.body, context),
|
|
2860
2860
|
};
|
|
2861
2861
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
2862
2862
|
switch (errorCode) {
|
|
@@ -2893,7 +2893,7 @@ exports.deserializeAws_json1_1CreateAppImageConfigCommand = deserializeAws_json1
|
|
|
2893
2893
|
const deserializeAws_json1_1CreateAppImageConfigCommandError = async (output, context) => {
|
|
2894
2894
|
const parsedOutput = {
|
|
2895
2895
|
...output,
|
|
2896
|
-
body: await
|
|
2896
|
+
body: await parseErrorBody(output.body, context),
|
|
2897
2897
|
};
|
|
2898
2898
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
2899
2899
|
switch (errorCode) {
|
|
@@ -2927,7 +2927,7 @@ exports.deserializeAws_json1_1CreateArtifactCommand = deserializeAws_json1_1Crea
|
|
|
2927
2927
|
const deserializeAws_json1_1CreateArtifactCommandError = async (output, context) => {
|
|
2928
2928
|
const parsedOutput = {
|
|
2929
2929
|
...output,
|
|
2930
|
-
body: await
|
|
2930
|
+
body: await parseErrorBody(output.body, context),
|
|
2931
2931
|
};
|
|
2932
2932
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
2933
2933
|
switch (errorCode) {
|
|
@@ -2961,7 +2961,7 @@ exports.deserializeAws_json1_1CreateAutoMLJobCommand = deserializeAws_json1_1Cre
|
|
|
2961
2961
|
const deserializeAws_json1_1CreateAutoMLJobCommandError = async (output, context) => {
|
|
2962
2962
|
const parsedOutput = {
|
|
2963
2963
|
...output,
|
|
2964
|
-
body: await
|
|
2964
|
+
body: await parseErrorBody(output.body, context),
|
|
2965
2965
|
};
|
|
2966
2966
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
2967
2967
|
switch (errorCode) {
|
|
@@ -2998,7 +2998,7 @@ exports.deserializeAws_json1_1CreateCodeRepositoryCommand = deserializeAws_json1
|
|
|
2998
2998
|
const deserializeAws_json1_1CreateCodeRepositoryCommandError = async (output, context) => {
|
|
2999
2999
|
const parsedOutput = {
|
|
3000
3000
|
...output,
|
|
3001
|
-
body: await
|
|
3001
|
+
body: await parseErrorBody(output.body, context),
|
|
3002
3002
|
};
|
|
3003
3003
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3004
3004
|
const parsedBody = parsedOutput.body;
|
|
@@ -3026,7 +3026,7 @@ exports.deserializeAws_json1_1CreateCompilationJobCommand = deserializeAws_json1
|
|
|
3026
3026
|
const deserializeAws_json1_1CreateCompilationJobCommandError = async (output, context) => {
|
|
3027
3027
|
const parsedOutput = {
|
|
3028
3028
|
...output,
|
|
3029
|
-
body: await
|
|
3029
|
+
body: await parseErrorBody(output.body, context),
|
|
3030
3030
|
};
|
|
3031
3031
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3032
3032
|
switch (errorCode) {
|
|
@@ -3063,7 +3063,7 @@ exports.deserializeAws_json1_1CreateContextCommand = deserializeAws_json1_1Creat
|
|
|
3063
3063
|
const deserializeAws_json1_1CreateContextCommandError = async (output, context) => {
|
|
3064
3064
|
const parsedOutput = {
|
|
3065
3065
|
...output,
|
|
3066
|
-
body: await
|
|
3066
|
+
body: await parseErrorBody(output.body, context),
|
|
3067
3067
|
};
|
|
3068
3068
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3069
3069
|
switch (errorCode) {
|
|
@@ -3097,7 +3097,7 @@ exports.deserializeAws_json1_1CreateDataQualityJobDefinitionCommand = deserializ
|
|
|
3097
3097
|
const deserializeAws_json1_1CreateDataQualityJobDefinitionCommandError = async (output, context) => {
|
|
3098
3098
|
const parsedOutput = {
|
|
3099
3099
|
...output,
|
|
3100
|
-
body: await
|
|
3100
|
+
body: await parseErrorBody(output.body, context),
|
|
3101
3101
|
};
|
|
3102
3102
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3103
3103
|
switch (errorCode) {
|
|
@@ -3131,7 +3131,7 @@ exports.deserializeAws_json1_1CreateDeviceFleetCommand = deserializeAws_json1_1C
|
|
|
3131
3131
|
const deserializeAws_json1_1CreateDeviceFleetCommandError = async (output, context) => {
|
|
3132
3132
|
const parsedOutput = {
|
|
3133
3133
|
...output,
|
|
3134
|
-
body: await
|
|
3134
|
+
body: await parseErrorBody(output.body, context),
|
|
3135
3135
|
};
|
|
3136
3136
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3137
3137
|
switch (errorCode) {
|
|
@@ -3168,7 +3168,7 @@ exports.deserializeAws_json1_1CreateDomainCommand = deserializeAws_json1_1Create
|
|
|
3168
3168
|
const deserializeAws_json1_1CreateDomainCommandError = async (output, context) => {
|
|
3169
3169
|
const parsedOutput = {
|
|
3170
3170
|
...output,
|
|
3171
|
-
body: await
|
|
3171
|
+
body: await parseErrorBody(output.body, context),
|
|
3172
3172
|
};
|
|
3173
3173
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3174
3174
|
switch (errorCode) {
|
|
@@ -3205,7 +3205,7 @@ exports.deserializeAws_json1_1CreateEdgeDeploymentPlanCommand = deserializeAws_j
|
|
|
3205
3205
|
const deserializeAws_json1_1CreateEdgeDeploymentPlanCommandError = async (output, context) => {
|
|
3206
3206
|
const parsedOutput = {
|
|
3207
3207
|
...output,
|
|
3208
|
-
body: await
|
|
3208
|
+
body: await parseErrorBody(output.body, context),
|
|
3209
3209
|
};
|
|
3210
3210
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3211
3211
|
switch (errorCode) {
|
|
@@ -3236,7 +3236,7 @@ exports.deserializeAws_json1_1CreateEdgeDeploymentStageCommand = deserializeAws_
|
|
|
3236
3236
|
const deserializeAws_json1_1CreateEdgeDeploymentStageCommandError = async (output, context) => {
|
|
3237
3237
|
const parsedOutput = {
|
|
3238
3238
|
...output,
|
|
3239
|
-
body: await
|
|
3239
|
+
body: await parseErrorBody(output.body, context),
|
|
3240
3240
|
};
|
|
3241
3241
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3242
3242
|
switch (errorCode) {
|
|
@@ -3267,7 +3267,7 @@ exports.deserializeAws_json1_1CreateEdgePackagingJobCommand = deserializeAws_jso
|
|
|
3267
3267
|
const deserializeAws_json1_1CreateEdgePackagingJobCommandError = async (output, context) => {
|
|
3268
3268
|
const parsedOutput = {
|
|
3269
3269
|
...output,
|
|
3270
|
-
body: await
|
|
3270
|
+
body: await parseErrorBody(output.body, context),
|
|
3271
3271
|
};
|
|
3272
3272
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3273
3273
|
switch (errorCode) {
|
|
@@ -3301,7 +3301,7 @@ exports.deserializeAws_json1_1CreateEndpointCommand = deserializeAws_json1_1Crea
|
|
|
3301
3301
|
const deserializeAws_json1_1CreateEndpointCommandError = async (output, context) => {
|
|
3302
3302
|
const parsedOutput = {
|
|
3303
3303
|
...output,
|
|
3304
|
-
body: await
|
|
3304
|
+
body: await parseErrorBody(output.body, context),
|
|
3305
3305
|
};
|
|
3306
3306
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3307
3307
|
switch (errorCode) {
|
|
@@ -3335,7 +3335,7 @@ exports.deserializeAws_json1_1CreateEndpointConfigCommand = deserializeAws_json1
|
|
|
3335
3335
|
const deserializeAws_json1_1CreateEndpointConfigCommandError = async (output, context) => {
|
|
3336
3336
|
const parsedOutput = {
|
|
3337
3337
|
...output,
|
|
3338
|
-
body: await
|
|
3338
|
+
body: await parseErrorBody(output.body, context),
|
|
3339
3339
|
};
|
|
3340
3340
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3341
3341
|
switch (errorCode) {
|
|
@@ -3369,7 +3369,7 @@ exports.deserializeAws_json1_1CreateExperimentCommand = deserializeAws_json1_1Cr
|
|
|
3369
3369
|
const deserializeAws_json1_1CreateExperimentCommandError = async (output, context) => {
|
|
3370
3370
|
const parsedOutput = {
|
|
3371
3371
|
...output,
|
|
3372
|
-
body: await
|
|
3372
|
+
body: await parseErrorBody(output.body, context),
|
|
3373
3373
|
};
|
|
3374
3374
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3375
3375
|
switch (errorCode) {
|
|
@@ -3403,7 +3403,7 @@ exports.deserializeAws_json1_1CreateFeatureGroupCommand = deserializeAws_json1_1
|
|
|
3403
3403
|
const deserializeAws_json1_1CreateFeatureGroupCommandError = async (output, context) => {
|
|
3404
3404
|
const parsedOutput = {
|
|
3405
3405
|
...output,
|
|
3406
|
-
body: await
|
|
3406
|
+
body: await parseErrorBody(output.body, context),
|
|
3407
3407
|
};
|
|
3408
3408
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3409
3409
|
switch (errorCode) {
|
|
@@ -3440,7 +3440,7 @@ exports.deserializeAws_json1_1CreateFlowDefinitionCommand = deserializeAws_json1
|
|
|
3440
3440
|
const deserializeAws_json1_1CreateFlowDefinitionCommandError = async (output, context) => {
|
|
3441
3441
|
const parsedOutput = {
|
|
3442
3442
|
...output,
|
|
3443
|
-
body: await
|
|
3443
|
+
body: await parseErrorBody(output.body, context),
|
|
3444
3444
|
};
|
|
3445
3445
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3446
3446
|
switch (errorCode) {
|
|
@@ -3477,7 +3477,7 @@ exports.deserializeAws_json1_1CreateHumanTaskUiCommand = deserializeAws_json1_1C
|
|
|
3477
3477
|
const deserializeAws_json1_1CreateHumanTaskUiCommandError = async (output, context) => {
|
|
3478
3478
|
const parsedOutput = {
|
|
3479
3479
|
...output,
|
|
3480
|
-
body: await
|
|
3480
|
+
body: await parseErrorBody(output.body, context),
|
|
3481
3481
|
};
|
|
3482
3482
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3483
3483
|
switch (errorCode) {
|
|
@@ -3514,7 +3514,7 @@ exports.deserializeAws_json1_1CreateHyperParameterTuningJobCommand = deserialize
|
|
|
3514
3514
|
const deserializeAws_json1_1CreateHyperParameterTuningJobCommandError = async (output, context) => {
|
|
3515
3515
|
const parsedOutput = {
|
|
3516
3516
|
...output,
|
|
3517
|
-
body: await
|
|
3517
|
+
body: await parseErrorBody(output.body, context),
|
|
3518
3518
|
};
|
|
3519
3519
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3520
3520
|
switch (errorCode) {
|
|
@@ -3551,7 +3551,7 @@ exports.deserializeAws_json1_1CreateImageCommand = deserializeAws_json1_1CreateI
|
|
|
3551
3551
|
const deserializeAws_json1_1CreateImageCommandError = async (output, context) => {
|
|
3552
3552
|
const parsedOutput = {
|
|
3553
3553
|
...output,
|
|
3554
|
-
body: await
|
|
3554
|
+
body: await parseErrorBody(output.body, context),
|
|
3555
3555
|
};
|
|
3556
3556
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3557
3557
|
switch (errorCode) {
|
|
@@ -3588,7 +3588,7 @@ exports.deserializeAws_json1_1CreateImageVersionCommand = deserializeAws_json1_1
|
|
|
3588
3588
|
const deserializeAws_json1_1CreateImageVersionCommandError = async (output, context) => {
|
|
3589
3589
|
const parsedOutput = {
|
|
3590
3590
|
...output,
|
|
3591
|
-
body: await
|
|
3591
|
+
body: await parseErrorBody(output.body, context),
|
|
3592
3592
|
};
|
|
3593
3593
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3594
3594
|
switch (errorCode) {
|
|
@@ -3628,7 +3628,7 @@ exports.deserializeAws_json1_1CreateInferenceRecommendationsJobCommand = deseria
|
|
|
3628
3628
|
const deserializeAws_json1_1CreateInferenceRecommendationsJobCommandError = async (output, context) => {
|
|
3629
3629
|
const parsedOutput = {
|
|
3630
3630
|
...output,
|
|
3631
|
-
body: await
|
|
3631
|
+
body: await parseErrorBody(output.body, context),
|
|
3632
3632
|
};
|
|
3633
3633
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3634
3634
|
switch (errorCode) {
|
|
@@ -3665,7 +3665,7 @@ exports.deserializeAws_json1_1CreateLabelingJobCommand = deserializeAws_json1_1C
|
|
|
3665
3665
|
const deserializeAws_json1_1CreateLabelingJobCommandError = async (output, context) => {
|
|
3666
3666
|
const parsedOutput = {
|
|
3667
3667
|
...output,
|
|
3668
|
-
body: await
|
|
3668
|
+
body: await parseErrorBody(output.body, context),
|
|
3669
3669
|
};
|
|
3670
3670
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3671
3671
|
switch (errorCode) {
|
|
@@ -3702,7 +3702,7 @@ exports.deserializeAws_json1_1CreateModelCommand = deserializeAws_json1_1CreateM
|
|
|
3702
3702
|
const deserializeAws_json1_1CreateModelCommandError = async (output, context) => {
|
|
3703
3703
|
const parsedOutput = {
|
|
3704
3704
|
...output,
|
|
3705
|
-
body: await
|
|
3705
|
+
body: await parseErrorBody(output.body, context),
|
|
3706
3706
|
};
|
|
3707
3707
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3708
3708
|
switch (errorCode) {
|
|
@@ -3736,7 +3736,7 @@ exports.deserializeAws_json1_1CreateModelBiasJobDefinitionCommand = deserializeA
|
|
|
3736
3736
|
const deserializeAws_json1_1CreateModelBiasJobDefinitionCommandError = async (output, context) => {
|
|
3737
3737
|
const parsedOutput = {
|
|
3738
3738
|
...output,
|
|
3739
|
-
body: await
|
|
3739
|
+
body: await parseErrorBody(output.body, context),
|
|
3740
3740
|
};
|
|
3741
3741
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3742
3742
|
switch (errorCode) {
|
|
@@ -3773,7 +3773,7 @@ exports.deserializeAws_json1_1CreateModelExplainabilityJobDefinitionCommand = de
|
|
|
3773
3773
|
const deserializeAws_json1_1CreateModelExplainabilityJobDefinitionCommandError = async (output, context) => {
|
|
3774
3774
|
const parsedOutput = {
|
|
3775
3775
|
...output,
|
|
3776
|
-
body: await
|
|
3776
|
+
body: await parseErrorBody(output.body, context),
|
|
3777
3777
|
};
|
|
3778
3778
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3779
3779
|
switch (errorCode) {
|
|
@@ -3810,7 +3810,7 @@ exports.deserializeAws_json1_1CreateModelPackageCommand = deserializeAws_json1_1
|
|
|
3810
3810
|
const deserializeAws_json1_1CreateModelPackageCommandError = async (output, context) => {
|
|
3811
3811
|
const parsedOutput = {
|
|
3812
3812
|
...output,
|
|
3813
|
-
body: await
|
|
3813
|
+
body: await parseErrorBody(output.body, context),
|
|
3814
3814
|
};
|
|
3815
3815
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3816
3816
|
switch (errorCode) {
|
|
@@ -3847,7 +3847,7 @@ exports.deserializeAws_json1_1CreateModelPackageGroupCommand = deserializeAws_js
|
|
|
3847
3847
|
const deserializeAws_json1_1CreateModelPackageGroupCommandError = async (output, context) => {
|
|
3848
3848
|
const parsedOutput = {
|
|
3849
3849
|
...output,
|
|
3850
|
-
body: await
|
|
3850
|
+
body: await parseErrorBody(output.body, context),
|
|
3851
3851
|
};
|
|
3852
3852
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3853
3853
|
switch (errorCode) {
|
|
@@ -3881,7 +3881,7 @@ exports.deserializeAws_json1_1CreateModelQualityJobDefinitionCommand = deseriali
|
|
|
3881
3881
|
const deserializeAws_json1_1CreateModelQualityJobDefinitionCommandError = async (output, context) => {
|
|
3882
3882
|
const parsedOutput = {
|
|
3883
3883
|
...output,
|
|
3884
|
-
body: await
|
|
3884
|
+
body: await parseErrorBody(output.body, context),
|
|
3885
3885
|
};
|
|
3886
3886
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3887
3887
|
switch (errorCode) {
|
|
@@ -3918,7 +3918,7 @@ exports.deserializeAws_json1_1CreateMonitoringScheduleCommand = deserializeAws_j
|
|
|
3918
3918
|
const deserializeAws_json1_1CreateMonitoringScheduleCommandError = async (output, context) => {
|
|
3919
3919
|
const parsedOutput = {
|
|
3920
3920
|
...output,
|
|
3921
|
-
body: await
|
|
3921
|
+
body: await parseErrorBody(output.body, context),
|
|
3922
3922
|
};
|
|
3923
3923
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3924
3924
|
switch (errorCode) {
|
|
@@ -3955,7 +3955,7 @@ exports.deserializeAws_json1_1CreateNotebookInstanceCommand = deserializeAws_jso
|
|
|
3955
3955
|
const deserializeAws_json1_1CreateNotebookInstanceCommandError = async (output, context) => {
|
|
3956
3956
|
const parsedOutput = {
|
|
3957
3957
|
...output,
|
|
3958
|
-
body: await
|
|
3958
|
+
body: await parseErrorBody(output.body, context),
|
|
3959
3959
|
};
|
|
3960
3960
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3961
3961
|
switch (errorCode) {
|
|
@@ -3989,7 +3989,7 @@ exports.deserializeAws_json1_1CreateNotebookInstanceLifecycleConfigCommand = des
|
|
|
3989
3989
|
const deserializeAws_json1_1CreateNotebookInstanceLifecycleConfigCommandError = async (output, context) => {
|
|
3990
3990
|
const parsedOutput = {
|
|
3991
3991
|
...output,
|
|
3992
|
-
body: await
|
|
3992
|
+
body: await parseErrorBody(output.body, context),
|
|
3993
3993
|
};
|
|
3994
3994
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3995
3995
|
switch (errorCode) {
|
|
@@ -4023,7 +4023,7 @@ exports.deserializeAws_json1_1CreatePipelineCommand = deserializeAws_json1_1Crea
|
|
|
4023
4023
|
const deserializeAws_json1_1CreatePipelineCommandError = async (output, context) => {
|
|
4024
4024
|
const parsedOutput = {
|
|
4025
4025
|
...output,
|
|
4026
|
-
body: await
|
|
4026
|
+
body: await parseErrorBody(output.body, context),
|
|
4027
4027
|
};
|
|
4028
4028
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4029
4029
|
switch (errorCode) {
|
|
@@ -4060,7 +4060,7 @@ exports.deserializeAws_json1_1CreatePresignedDomainUrlCommand = deserializeAws_j
|
|
|
4060
4060
|
const deserializeAws_json1_1CreatePresignedDomainUrlCommandError = async (output, context) => {
|
|
4061
4061
|
const parsedOutput = {
|
|
4062
4062
|
...output,
|
|
4063
|
-
body: await
|
|
4063
|
+
body: await parseErrorBody(output.body, context),
|
|
4064
4064
|
};
|
|
4065
4065
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4066
4066
|
switch (errorCode) {
|
|
@@ -4094,7 +4094,7 @@ exports.deserializeAws_json1_1CreatePresignedNotebookInstanceUrlCommand = deseri
|
|
|
4094
4094
|
const deserializeAws_json1_1CreatePresignedNotebookInstanceUrlCommandError = async (output, context) => {
|
|
4095
4095
|
const parsedOutput = {
|
|
4096
4096
|
...output,
|
|
4097
|
-
body: await
|
|
4097
|
+
body: await parseErrorBody(output.body, context),
|
|
4098
4098
|
};
|
|
4099
4099
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4100
4100
|
const parsedBody = parsedOutput.body;
|
|
@@ -4122,7 +4122,7 @@ exports.deserializeAws_json1_1CreateProcessingJobCommand = deserializeAws_json1_
|
|
|
4122
4122
|
const deserializeAws_json1_1CreateProcessingJobCommandError = async (output, context) => {
|
|
4123
4123
|
const parsedOutput = {
|
|
4124
4124
|
...output,
|
|
4125
|
-
body: await
|
|
4125
|
+
body: await parseErrorBody(output.body, context),
|
|
4126
4126
|
};
|
|
4127
4127
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4128
4128
|
switch (errorCode) {
|
|
@@ -4162,7 +4162,7 @@ exports.deserializeAws_json1_1CreateProjectCommand = deserializeAws_json1_1Creat
|
|
|
4162
4162
|
const deserializeAws_json1_1CreateProjectCommandError = async (output, context) => {
|
|
4163
4163
|
const parsedOutput = {
|
|
4164
4164
|
...output,
|
|
4165
|
-
body: await
|
|
4165
|
+
body: await parseErrorBody(output.body, context),
|
|
4166
4166
|
};
|
|
4167
4167
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4168
4168
|
switch (errorCode) {
|
|
@@ -4196,7 +4196,7 @@ exports.deserializeAws_json1_1CreateStudioLifecycleConfigCommand = deserializeAw
|
|
|
4196
4196
|
const deserializeAws_json1_1CreateStudioLifecycleConfigCommandError = async (output, context) => {
|
|
4197
4197
|
const parsedOutput = {
|
|
4198
4198
|
...output,
|
|
4199
|
-
body: await
|
|
4199
|
+
body: await parseErrorBody(output.body, context),
|
|
4200
4200
|
};
|
|
4201
4201
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4202
4202
|
switch (errorCode) {
|
|
@@ -4230,7 +4230,7 @@ exports.deserializeAws_json1_1CreateTrainingJobCommand = deserializeAws_json1_1C
|
|
|
4230
4230
|
const deserializeAws_json1_1CreateTrainingJobCommandError = async (output, context) => {
|
|
4231
4231
|
const parsedOutput = {
|
|
4232
4232
|
...output,
|
|
4233
|
-
body: await
|
|
4233
|
+
body: await parseErrorBody(output.body, context),
|
|
4234
4234
|
};
|
|
4235
4235
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4236
4236
|
switch (errorCode) {
|
|
@@ -4270,7 +4270,7 @@ exports.deserializeAws_json1_1CreateTransformJobCommand = deserializeAws_json1_1
|
|
|
4270
4270
|
const deserializeAws_json1_1CreateTransformJobCommandError = async (output, context) => {
|
|
4271
4271
|
const parsedOutput = {
|
|
4272
4272
|
...output,
|
|
4273
|
-
body: await
|
|
4273
|
+
body: await parseErrorBody(output.body, context),
|
|
4274
4274
|
};
|
|
4275
4275
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4276
4276
|
switch (errorCode) {
|
|
@@ -4310,7 +4310,7 @@ exports.deserializeAws_json1_1CreateTrialCommand = deserializeAws_json1_1CreateT
|
|
|
4310
4310
|
const deserializeAws_json1_1CreateTrialCommandError = async (output, context) => {
|
|
4311
4311
|
const parsedOutput = {
|
|
4312
4312
|
...output,
|
|
4313
|
-
body: await
|
|
4313
|
+
body: await parseErrorBody(output.body, context),
|
|
4314
4314
|
};
|
|
4315
4315
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4316
4316
|
switch (errorCode) {
|
|
@@ -4347,7 +4347,7 @@ exports.deserializeAws_json1_1CreateTrialComponentCommand = deserializeAws_json1
|
|
|
4347
4347
|
const deserializeAws_json1_1CreateTrialComponentCommandError = async (output, context) => {
|
|
4348
4348
|
const parsedOutput = {
|
|
4349
4349
|
...output,
|
|
4350
|
-
body: await
|
|
4350
|
+
body: await parseErrorBody(output.body, context),
|
|
4351
4351
|
};
|
|
4352
4352
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4353
4353
|
switch (errorCode) {
|
|
@@ -4381,7 +4381,7 @@ exports.deserializeAws_json1_1CreateUserProfileCommand = deserializeAws_json1_1C
|
|
|
4381
4381
|
const deserializeAws_json1_1CreateUserProfileCommandError = async (output, context) => {
|
|
4382
4382
|
const parsedOutput = {
|
|
4383
4383
|
...output,
|
|
4384
|
-
body: await
|
|
4384
|
+
body: await parseErrorBody(output.body, context),
|
|
4385
4385
|
};
|
|
4386
4386
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4387
4387
|
switch (errorCode) {
|
|
@@ -4418,7 +4418,7 @@ exports.deserializeAws_json1_1CreateWorkforceCommand = deserializeAws_json1_1Cre
|
|
|
4418
4418
|
const deserializeAws_json1_1CreateWorkforceCommandError = async (output, context) => {
|
|
4419
4419
|
const parsedOutput = {
|
|
4420
4420
|
...output,
|
|
4421
|
-
body: await
|
|
4421
|
+
body: await parseErrorBody(output.body, context),
|
|
4422
4422
|
};
|
|
4423
4423
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4424
4424
|
const parsedBody = parsedOutput.body;
|
|
@@ -4446,7 +4446,7 @@ exports.deserializeAws_json1_1CreateWorkteamCommand = deserializeAws_json1_1Crea
|
|
|
4446
4446
|
const deserializeAws_json1_1CreateWorkteamCommandError = async (output, context) => {
|
|
4447
4447
|
const parsedOutput = {
|
|
4448
4448
|
...output,
|
|
4449
|
-
body: await
|
|
4449
|
+
body: await parseErrorBody(output.body, context),
|
|
4450
4450
|
};
|
|
4451
4451
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4452
4452
|
switch (errorCode) {
|
|
@@ -4483,7 +4483,7 @@ exports.deserializeAws_json1_1DeleteActionCommand = deserializeAws_json1_1Delete
|
|
|
4483
4483
|
const deserializeAws_json1_1DeleteActionCommandError = async (output, context) => {
|
|
4484
4484
|
const parsedOutput = {
|
|
4485
4485
|
...output,
|
|
4486
|
-
body: await
|
|
4486
|
+
body: await parseErrorBody(output.body, context),
|
|
4487
4487
|
};
|
|
4488
4488
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4489
4489
|
switch (errorCode) {
|
|
@@ -4514,7 +4514,7 @@ exports.deserializeAws_json1_1DeleteAlgorithmCommand = deserializeAws_json1_1Del
|
|
|
4514
4514
|
const deserializeAws_json1_1DeleteAlgorithmCommandError = async (output, context) => {
|
|
4515
4515
|
const parsedOutput = {
|
|
4516
4516
|
...output,
|
|
4517
|
-
body: await
|
|
4517
|
+
body: await parseErrorBody(output.body, context),
|
|
4518
4518
|
};
|
|
4519
4519
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4520
4520
|
const parsedBody = parsedOutput.body;
|
|
@@ -4539,7 +4539,7 @@ exports.deserializeAws_json1_1DeleteAppCommand = deserializeAws_json1_1DeleteApp
|
|
|
4539
4539
|
const deserializeAws_json1_1DeleteAppCommandError = async (output, context) => {
|
|
4540
4540
|
const parsedOutput = {
|
|
4541
4541
|
...output,
|
|
4542
|
-
body: await
|
|
4542
|
+
body: await parseErrorBody(output.body, context),
|
|
4543
4543
|
};
|
|
4544
4544
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4545
4545
|
switch (errorCode) {
|
|
@@ -4573,7 +4573,7 @@ exports.deserializeAws_json1_1DeleteAppImageConfigCommand = deserializeAws_json1
|
|
|
4573
4573
|
const deserializeAws_json1_1DeleteAppImageConfigCommandError = async (output, context) => {
|
|
4574
4574
|
const parsedOutput = {
|
|
4575
4575
|
...output,
|
|
4576
|
-
body: await
|
|
4576
|
+
body: await parseErrorBody(output.body, context),
|
|
4577
4577
|
};
|
|
4578
4578
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4579
4579
|
switch (errorCode) {
|
|
@@ -4607,7 +4607,7 @@ exports.deserializeAws_json1_1DeleteArtifactCommand = deserializeAws_json1_1Dele
|
|
|
4607
4607
|
const deserializeAws_json1_1DeleteArtifactCommandError = async (output, context) => {
|
|
4608
4608
|
const parsedOutput = {
|
|
4609
4609
|
...output,
|
|
4610
|
-
body: await
|
|
4610
|
+
body: await parseErrorBody(output.body, context),
|
|
4611
4611
|
};
|
|
4612
4612
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4613
4613
|
switch (errorCode) {
|
|
@@ -4641,7 +4641,7 @@ exports.deserializeAws_json1_1DeleteAssociationCommand = deserializeAws_json1_1D
|
|
|
4641
4641
|
const deserializeAws_json1_1DeleteAssociationCommandError = async (output, context) => {
|
|
4642
4642
|
const parsedOutput = {
|
|
4643
4643
|
...output,
|
|
4644
|
-
body: await
|
|
4644
|
+
body: await parseErrorBody(output.body, context),
|
|
4645
4645
|
};
|
|
4646
4646
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4647
4647
|
switch (errorCode) {
|
|
@@ -4672,7 +4672,7 @@ exports.deserializeAws_json1_1DeleteCodeRepositoryCommand = deserializeAws_json1
|
|
|
4672
4672
|
const deserializeAws_json1_1DeleteCodeRepositoryCommandError = async (output, context) => {
|
|
4673
4673
|
const parsedOutput = {
|
|
4674
4674
|
...output,
|
|
4675
|
-
body: await
|
|
4675
|
+
body: await parseErrorBody(output.body, context),
|
|
4676
4676
|
};
|
|
4677
4677
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4678
4678
|
const parsedBody = parsedOutput.body;
|
|
@@ -4700,7 +4700,7 @@ exports.deserializeAws_json1_1DeleteContextCommand = deserializeAws_json1_1Delet
|
|
|
4700
4700
|
const deserializeAws_json1_1DeleteContextCommandError = async (output, context) => {
|
|
4701
4701
|
const parsedOutput = {
|
|
4702
4702
|
...output,
|
|
4703
|
-
body: await
|
|
4703
|
+
body: await parseErrorBody(output.body, context),
|
|
4704
4704
|
};
|
|
4705
4705
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4706
4706
|
switch (errorCode) {
|
|
@@ -4731,7 +4731,7 @@ exports.deserializeAws_json1_1DeleteDataQualityJobDefinitionCommand = deserializ
|
|
|
4731
4731
|
const deserializeAws_json1_1DeleteDataQualityJobDefinitionCommandError = async (output, context) => {
|
|
4732
4732
|
const parsedOutput = {
|
|
4733
4733
|
...output,
|
|
4734
|
-
body: await
|
|
4734
|
+
body: await parseErrorBody(output.body, context),
|
|
4735
4735
|
};
|
|
4736
4736
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4737
4737
|
switch (errorCode) {
|
|
@@ -4762,7 +4762,7 @@ exports.deserializeAws_json1_1DeleteDeviceFleetCommand = deserializeAws_json1_1D
|
|
|
4762
4762
|
const deserializeAws_json1_1DeleteDeviceFleetCommandError = async (output, context) => {
|
|
4763
4763
|
const parsedOutput = {
|
|
4764
4764
|
...output,
|
|
4765
|
-
body: await
|
|
4765
|
+
body: await parseErrorBody(output.body, context),
|
|
4766
4766
|
};
|
|
4767
4767
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4768
4768
|
switch (errorCode) {
|
|
@@ -4793,7 +4793,7 @@ exports.deserializeAws_json1_1DeleteDomainCommand = deserializeAws_json1_1Delete
|
|
|
4793
4793
|
const deserializeAws_json1_1DeleteDomainCommandError = async (output, context) => {
|
|
4794
4794
|
const parsedOutput = {
|
|
4795
4795
|
...output,
|
|
4796
|
-
body: await
|
|
4796
|
+
body: await parseErrorBody(output.body, context),
|
|
4797
4797
|
};
|
|
4798
4798
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4799
4799
|
switch (errorCode) {
|
|
@@ -4827,7 +4827,7 @@ exports.deserializeAws_json1_1DeleteEdgeDeploymentPlanCommand = deserializeAws_j
|
|
|
4827
4827
|
const deserializeAws_json1_1DeleteEdgeDeploymentPlanCommandError = async (output, context) => {
|
|
4828
4828
|
const parsedOutput = {
|
|
4829
4829
|
...output,
|
|
4830
|
-
body: await
|
|
4830
|
+
body: await parseErrorBody(output.body, context),
|
|
4831
4831
|
};
|
|
4832
4832
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4833
4833
|
switch (errorCode) {
|
|
@@ -4858,7 +4858,7 @@ exports.deserializeAws_json1_1DeleteEdgeDeploymentStageCommand = deserializeAws_
|
|
|
4858
4858
|
const deserializeAws_json1_1DeleteEdgeDeploymentStageCommandError = async (output, context) => {
|
|
4859
4859
|
const parsedOutput = {
|
|
4860
4860
|
...output,
|
|
4861
|
-
body: await
|
|
4861
|
+
body: await parseErrorBody(output.body, context),
|
|
4862
4862
|
};
|
|
4863
4863
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4864
4864
|
switch (errorCode) {
|
|
@@ -4889,7 +4889,7 @@ exports.deserializeAws_json1_1DeleteEndpointCommand = deserializeAws_json1_1Dele
|
|
|
4889
4889
|
const deserializeAws_json1_1DeleteEndpointCommandError = async (output, context) => {
|
|
4890
4890
|
const parsedOutput = {
|
|
4891
4891
|
...output,
|
|
4892
|
-
body: await
|
|
4892
|
+
body: await parseErrorBody(output.body, context),
|
|
4893
4893
|
};
|
|
4894
4894
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4895
4895
|
const parsedBody = parsedOutput.body;
|
|
@@ -4914,7 +4914,7 @@ exports.deserializeAws_json1_1DeleteEndpointConfigCommand = deserializeAws_json1
|
|
|
4914
4914
|
const deserializeAws_json1_1DeleteEndpointConfigCommandError = async (output, context) => {
|
|
4915
4915
|
const parsedOutput = {
|
|
4916
4916
|
...output,
|
|
4917
|
-
body: await
|
|
4917
|
+
body: await parseErrorBody(output.body, context),
|
|
4918
4918
|
};
|
|
4919
4919
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4920
4920
|
const parsedBody = parsedOutput.body;
|
|
@@ -4942,7 +4942,7 @@ exports.deserializeAws_json1_1DeleteExperimentCommand = deserializeAws_json1_1De
|
|
|
4942
4942
|
const deserializeAws_json1_1DeleteExperimentCommandError = async (output, context) => {
|
|
4943
4943
|
const parsedOutput = {
|
|
4944
4944
|
...output,
|
|
4945
|
-
body: await
|
|
4945
|
+
body: await parseErrorBody(output.body, context),
|
|
4946
4946
|
};
|
|
4947
4947
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4948
4948
|
switch (errorCode) {
|
|
@@ -4973,7 +4973,7 @@ exports.deserializeAws_json1_1DeleteFeatureGroupCommand = deserializeAws_json1_1
|
|
|
4973
4973
|
const deserializeAws_json1_1DeleteFeatureGroupCommandError = async (output, context) => {
|
|
4974
4974
|
const parsedOutput = {
|
|
4975
4975
|
...output,
|
|
4976
|
-
body: await
|
|
4976
|
+
body: await parseErrorBody(output.body, context),
|
|
4977
4977
|
};
|
|
4978
4978
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4979
4979
|
switch (errorCode) {
|
|
@@ -5007,7 +5007,7 @@ exports.deserializeAws_json1_1DeleteFlowDefinitionCommand = deserializeAws_json1
|
|
|
5007
5007
|
const deserializeAws_json1_1DeleteFlowDefinitionCommandError = async (output, context) => {
|
|
5008
5008
|
const parsedOutput = {
|
|
5009
5009
|
...output,
|
|
5010
|
-
body: await
|
|
5010
|
+
body: await parseErrorBody(output.body, context),
|
|
5011
5011
|
};
|
|
5012
5012
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5013
5013
|
switch (errorCode) {
|
|
@@ -5044,7 +5044,7 @@ exports.deserializeAws_json1_1DeleteHumanTaskUiCommand = deserializeAws_json1_1D
|
|
|
5044
5044
|
const deserializeAws_json1_1DeleteHumanTaskUiCommandError = async (output, context) => {
|
|
5045
5045
|
const parsedOutput = {
|
|
5046
5046
|
...output,
|
|
5047
|
-
body: await
|
|
5047
|
+
body: await parseErrorBody(output.body, context),
|
|
5048
5048
|
};
|
|
5049
5049
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5050
5050
|
switch (errorCode) {
|
|
@@ -5078,7 +5078,7 @@ exports.deserializeAws_json1_1DeleteImageCommand = deserializeAws_json1_1DeleteI
|
|
|
5078
5078
|
const deserializeAws_json1_1DeleteImageCommandError = async (output, context) => {
|
|
5079
5079
|
const parsedOutput = {
|
|
5080
5080
|
...output,
|
|
5081
|
-
body: await
|
|
5081
|
+
body: await parseErrorBody(output.body, context),
|
|
5082
5082
|
};
|
|
5083
5083
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5084
5084
|
switch (errorCode) {
|
|
@@ -5115,7 +5115,7 @@ exports.deserializeAws_json1_1DeleteImageVersionCommand = deserializeAws_json1_1
|
|
|
5115
5115
|
const deserializeAws_json1_1DeleteImageVersionCommandError = async (output, context) => {
|
|
5116
5116
|
const parsedOutput = {
|
|
5117
5117
|
...output,
|
|
5118
|
-
body: await
|
|
5118
|
+
body: await parseErrorBody(output.body, context),
|
|
5119
5119
|
};
|
|
5120
5120
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5121
5121
|
switch (errorCode) {
|
|
@@ -5149,7 +5149,7 @@ exports.deserializeAws_json1_1DeleteModelCommand = deserializeAws_json1_1DeleteM
|
|
|
5149
5149
|
const deserializeAws_json1_1DeleteModelCommandError = async (output, context) => {
|
|
5150
5150
|
const parsedOutput = {
|
|
5151
5151
|
...output,
|
|
5152
|
-
body: await
|
|
5152
|
+
body: await parseErrorBody(output.body, context),
|
|
5153
5153
|
};
|
|
5154
5154
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5155
5155
|
const parsedBody = parsedOutput.body;
|
|
@@ -5174,7 +5174,7 @@ exports.deserializeAws_json1_1DeleteModelBiasJobDefinitionCommand = deserializeA
|
|
|
5174
5174
|
const deserializeAws_json1_1DeleteModelBiasJobDefinitionCommandError = async (output, context) => {
|
|
5175
5175
|
const parsedOutput = {
|
|
5176
5176
|
...output,
|
|
5177
|
-
body: await
|
|
5177
|
+
body: await parseErrorBody(output.body, context),
|
|
5178
5178
|
};
|
|
5179
5179
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5180
5180
|
switch (errorCode) {
|
|
@@ -5205,7 +5205,7 @@ exports.deserializeAws_json1_1DeleteModelExplainabilityJobDefinitionCommand = de
|
|
|
5205
5205
|
const deserializeAws_json1_1DeleteModelExplainabilityJobDefinitionCommandError = async (output, context) => {
|
|
5206
5206
|
const parsedOutput = {
|
|
5207
5207
|
...output,
|
|
5208
|
-
body: await
|
|
5208
|
+
body: await parseErrorBody(output.body, context),
|
|
5209
5209
|
};
|
|
5210
5210
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5211
5211
|
switch (errorCode) {
|
|
@@ -5236,7 +5236,7 @@ exports.deserializeAws_json1_1DeleteModelPackageCommand = deserializeAws_json1_1
|
|
|
5236
5236
|
const deserializeAws_json1_1DeleteModelPackageCommandError = async (output, context) => {
|
|
5237
5237
|
const parsedOutput = {
|
|
5238
5238
|
...output,
|
|
5239
|
-
body: await
|
|
5239
|
+
body: await parseErrorBody(output.body, context),
|
|
5240
5240
|
};
|
|
5241
5241
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5242
5242
|
switch (errorCode) {
|
|
@@ -5267,7 +5267,7 @@ exports.deserializeAws_json1_1DeleteModelPackageGroupCommand = deserializeAws_js
|
|
|
5267
5267
|
const deserializeAws_json1_1DeleteModelPackageGroupCommandError = async (output, context) => {
|
|
5268
5268
|
const parsedOutput = {
|
|
5269
5269
|
...output,
|
|
5270
|
-
body: await
|
|
5270
|
+
body: await parseErrorBody(output.body, context),
|
|
5271
5271
|
};
|
|
5272
5272
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5273
5273
|
switch (errorCode) {
|
|
@@ -5298,7 +5298,7 @@ exports.deserializeAws_json1_1DeleteModelPackageGroupPolicyCommand = deserialize
|
|
|
5298
5298
|
const deserializeAws_json1_1DeleteModelPackageGroupPolicyCommandError = async (output, context) => {
|
|
5299
5299
|
const parsedOutput = {
|
|
5300
5300
|
...output,
|
|
5301
|
-
body: await
|
|
5301
|
+
body: await parseErrorBody(output.body, context),
|
|
5302
5302
|
};
|
|
5303
5303
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5304
5304
|
const parsedBody = parsedOutput.body;
|
|
@@ -5323,7 +5323,7 @@ exports.deserializeAws_json1_1DeleteModelQualityJobDefinitionCommand = deseriali
|
|
|
5323
5323
|
const deserializeAws_json1_1DeleteModelQualityJobDefinitionCommandError = async (output, context) => {
|
|
5324
5324
|
const parsedOutput = {
|
|
5325
5325
|
...output,
|
|
5326
|
-
body: await
|
|
5326
|
+
body: await parseErrorBody(output.body, context),
|
|
5327
5327
|
};
|
|
5328
5328
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5329
5329
|
switch (errorCode) {
|
|
@@ -5354,7 +5354,7 @@ exports.deserializeAws_json1_1DeleteMonitoringScheduleCommand = deserializeAws_j
|
|
|
5354
5354
|
const deserializeAws_json1_1DeleteMonitoringScheduleCommandError = async (output, context) => {
|
|
5355
5355
|
const parsedOutput = {
|
|
5356
5356
|
...output,
|
|
5357
|
-
body: await
|
|
5357
|
+
body: await parseErrorBody(output.body, context),
|
|
5358
5358
|
};
|
|
5359
5359
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5360
5360
|
switch (errorCode) {
|
|
@@ -5385,7 +5385,7 @@ exports.deserializeAws_json1_1DeleteNotebookInstanceCommand = deserializeAws_jso
|
|
|
5385
5385
|
const deserializeAws_json1_1DeleteNotebookInstanceCommandError = async (output, context) => {
|
|
5386
5386
|
const parsedOutput = {
|
|
5387
5387
|
...output,
|
|
5388
|
-
body: await
|
|
5388
|
+
body: await parseErrorBody(output.body, context),
|
|
5389
5389
|
};
|
|
5390
5390
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5391
5391
|
const parsedBody = parsedOutput.body;
|
|
@@ -5410,7 +5410,7 @@ exports.deserializeAws_json1_1DeleteNotebookInstanceLifecycleConfigCommand = des
|
|
|
5410
5410
|
const deserializeAws_json1_1DeleteNotebookInstanceLifecycleConfigCommandError = async (output, context) => {
|
|
5411
5411
|
const parsedOutput = {
|
|
5412
5412
|
...output,
|
|
5413
|
-
body: await
|
|
5413
|
+
body: await parseErrorBody(output.body, context),
|
|
5414
5414
|
};
|
|
5415
5415
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5416
5416
|
const parsedBody = parsedOutput.body;
|
|
@@ -5438,7 +5438,7 @@ exports.deserializeAws_json1_1DeletePipelineCommand = deserializeAws_json1_1Dele
|
|
|
5438
5438
|
const deserializeAws_json1_1DeletePipelineCommandError = async (output, context) => {
|
|
5439
5439
|
const parsedOutput = {
|
|
5440
5440
|
...output,
|
|
5441
|
-
body: await
|
|
5441
|
+
body: await parseErrorBody(output.body, context),
|
|
5442
5442
|
};
|
|
5443
5443
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5444
5444
|
switch (errorCode) {
|
|
@@ -5469,7 +5469,7 @@ exports.deserializeAws_json1_1DeleteProjectCommand = deserializeAws_json1_1Delet
|
|
|
5469
5469
|
const deserializeAws_json1_1DeleteProjectCommandError = async (output, context) => {
|
|
5470
5470
|
const parsedOutput = {
|
|
5471
5471
|
...output,
|
|
5472
|
-
body: await
|
|
5472
|
+
body: await parseErrorBody(output.body, context),
|
|
5473
5473
|
};
|
|
5474
5474
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5475
5475
|
switch (errorCode) {
|
|
@@ -5500,7 +5500,7 @@ exports.deserializeAws_json1_1DeleteStudioLifecycleConfigCommand = deserializeAw
|
|
|
5500
5500
|
const deserializeAws_json1_1DeleteStudioLifecycleConfigCommandError = async (output, context) => {
|
|
5501
5501
|
const parsedOutput = {
|
|
5502
5502
|
...output,
|
|
5503
|
-
body: await
|
|
5503
|
+
body: await parseErrorBody(output.body, context),
|
|
5504
5504
|
};
|
|
5505
5505
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5506
5506
|
switch (errorCode) {
|
|
@@ -5537,7 +5537,7 @@ exports.deserializeAws_json1_1DeleteTagsCommand = deserializeAws_json1_1DeleteTa
|
|
|
5537
5537
|
const deserializeAws_json1_1DeleteTagsCommandError = async (output, context) => {
|
|
5538
5538
|
const parsedOutput = {
|
|
5539
5539
|
...output,
|
|
5540
|
-
body: await
|
|
5540
|
+
body: await parseErrorBody(output.body, context),
|
|
5541
5541
|
};
|
|
5542
5542
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5543
5543
|
const parsedBody = parsedOutput.body;
|
|
@@ -5565,7 +5565,7 @@ exports.deserializeAws_json1_1DeleteTrialCommand = deserializeAws_json1_1DeleteT
|
|
|
5565
5565
|
const deserializeAws_json1_1DeleteTrialCommandError = async (output, context) => {
|
|
5566
5566
|
const parsedOutput = {
|
|
5567
5567
|
...output,
|
|
5568
|
-
body: await
|
|
5568
|
+
body: await parseErrorBody(output.body, context),
|
|
5569
5569
|
};
|
|
5570
5570
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5571
5571
|
switch (errorCode) {
|
|
@@ -5599,7 +5599,7 @@ exports.deserializeAws_json1_1DeleteTrialComponentCommand = deserializeAws_json1
|
|
|
5599
5599
|
const deserializeAws_json1_1DeleteTrialComponentCommandError = async (output, context) => {
|
|
5600
5600
|
const parsedOutput = {
|
|
5601
5601
|
...output,
|
|
5602
|
-
body: await
|
|
5602
|
+
body: await parseErrorBody(output.body, context),
|
|
5603
5603
|
};
|
|
5604
5604
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5605
5605
|
switch (errorCode) {
|
|
@@ -5630,7 +5630,7 @@ exports.deserializeAws_json1_1DeleteUserProfileCommand = deserializeAws_json1_1D
|
|
|
5630
5630
|
const deserializeAws_json1_1DeleteUserProfileCommandError = async (output, context) => {
|
|
5631
5631
|
const parsedOutput = {
|
|
5632
5632
|
...output,
|
|
5633
|
-
body: await
|
|
5633
|
+
body: await parseErrorBody(output.body, context),
|
|
5634
5634
|
};
|
|
5635
5635
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5636
5636
|
switch (errorCode) {
|
|
@@ -5667,7 +5667,7 @@ exports.deserializeAws_json1_1DeleteWorkforceCommand = deserializeAws_json1_1Del
|
|
|
5667
5667
|
const deserializeAws_json1_1DeleteWorkforceCommandError = async (output, context) => {
|
|
5668
5668
|
const parsedOutput = {
|
|
5669
5669
|
...output,
|
|
5670
|
-
body: await
|
|
5670
|
+
body: await parseErrorBody(output.body, context),
|
|
5671
5671
|
};
|
|
5672
5672
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5673
5673
|
const parsedBody = parsedOutput.body;
|
|
@@ -5695,7 +5695,7 @@ exports.deserializeAws_json1_1DeleteWorkteamCommand = deserializeAws_json1_1Dele
|
|
|
5695
5695
|
const deserializeAws_json1_1DeleteWorkteamCommandError = async (output, context) => {
|
|
5696
5696
|
const parsedOutput = {
|
|
5697
5697
|
...output,
|
|
5698
|
-
body: await
|
|
5698
|
+
body: await parseErrorBody(output.body, context),
|
|
5699
5699
|
};
|
|
5700
5700
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5701
5701
|
switch (errorCode) {
|
|
@@ -5726,7 +5726,7 @@ exports.deserializeAws_json1_1DeregisterDevicesCommand = deserializeAws_json1_1D
|
|
|
5726
5726
|
const deserializeAws_json1_1DeregisterDevicesCommandError = async (output, context) => {
|
|
5727
5727
|
const parsedOutput = {
|
|
5728
5728
|
...output,
|
|
5729
|
-
body: await
|
|
5729
|
+
body: await parseErrorBody(output.body, context),
|
|
5730
5730
|
};
|
|
5731
5731
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5732
5732
|
const parsedBody = parsedOutput.body;
|
|
@@ -5754,7 +5754,7 @@ exports.deserializeAws_json1_1DescribeActionCommand = deserializeAws_json1_1Desc
|
|
|
5754
5754
|
const deserializeAws_json1_1DescribeActionCommandError = async (output, context) => {
|
|
5755
5755
|
const parsedOutput = {
|
|
5756
5756
|
...output,
|
|
5757
|
-
body: await
|
|
5757
|
+
body: await parseErrorBody(output.body, context),
|
|
5758
5758
|
};
|
|
5759
5759
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5760
5760
|
switch (errorCode) {
|
|
@@ -5788,7 +5788,7 @@ exports.deserializeAws_json1_1DescribeAlgorithmCommand = deserializeAws_json1_1D
|
|
|
5788
5788
|
const deserializeAws_json1_1DescribeAlgorithmCommandError = async (output, context) => {
|
|
5789
5789
|
const parsedOutput = {
|
|
5790
5790
|
...output,
|
|
5791
|
-
body: await
|
|
5791
|
+
body: await parseErrorBody(output.body, context),
|
|
5792
5792
|
};
|
|
5793
5793
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5794
5794
|
const parsedBody = parsedOutput.body;
|
|
@@ -5816,7 +5816,7 @@ exports.deserializeAws_json1_1DescribeAppCommand = deserializeAws_json1_1Describ
|
|
|
5816
5816
|
const deserializeAws_json1_1DescribeAppCommandError = async (output, context) => {
|
|
5817
5817
|
const parsedOutput = {
|
|
5818
5818
|
...output,
|
|
5819
|
-
body: await
|
|
5819
|
+
body: await parseErrorBody(output.body, context),
|
|
5820
5820
|
};
|
|
5821
5821
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5822
5822
|
switch (errorCode) {
|
|
@@ -5850,7 +5850,7 @@ exports.deserializeAws_json1_1DescribeAppImageConfigCommand = deserializeAws_jso
|
|
|
5850
5850
|
const deserializeAws_json1_1DescribeAppImageConfigCommandError = async (output, context) => {
|
|
5851
5851
|
const parsedOutput = {
|
|
5852
5852
|
...output,
|
|
5853
|
-
body: await
|
|
5853
|
+
body: await parseErrorBody(output.body, context),
|
|
5854
5854
|
};
|
|
5855
5855
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5856
5856
|
switch (errorCode) {
|
|
@@ -5884,7 +5884,7 @@ exports.deserializeAws_json1_1DescribeArtifactCommand = deserializeAws_json1_1De
|
|
|
5884
5884
|
const deserializeAws_json1_1DescribeArtifactCommandError = async (output, context) => {
|
|
5885
5885
|
const parsedOutput = {
|
|
5886
5886
|
...output,
|
|
5887
|
-
body: await
|
|
5887
|
+
body: await parseErrorBody(output.body, context),
|
|
5888
5888
|
};
|
|
5889
5889
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5890
5890
|
switch (errorCode) {
|
|
@@ -5918,7 +5918,7 @@ exports.deserializeAws_json1_1DescribeAutoMLJobCommand = deserializeAws_json1_1D
|
|
|
5918
5918
|
const deserializeAws_json1_1DescribeAutoMLJobCommandError = async (output, context) => {
|
|
5919
5919
|
const parsedOutput = {
|
|
5920
5920
|
...output,
|
|
5921
|
-
body: await
|
|
5921
|
+
body: await parseErrorBody(output.body, context),
|
|
5922
5922
|
};
|
|
5923
5923
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5924
5924
|
switch (errorCode) {
|
|
@@ -5952,7 +5952,7 @@ exports.deserializeAws_json1_1DescribeCodeRepositoryCommand = deserializeAws_jso
|
|
|
5952
5952
|
const deserializeAws_json1_1DescribeCodeRepositoryCommandError = async (output, context) => {
|
|
5953
5953
|
const parsedOutput = {
|
|
5954
5954
|
...output,
|
|
5955
|
-
body: await
|
|
5955
|
+
body: await parseErrorBody(output.body, context),
|
|
5956
5956
|
};
|
|
5957
5957
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5958
5958
|
const parsedBody = parsedOutput.body;
|
|
@@ -5980,7 +5980,7 @@ exports.deserializeAws_json1_1DescribeCompilationJobCommand = deserializeAws_jso
|
|
|
5980
5980
|
const deserializeAws_json1_1DescribeCompilationJobCommandError = async (output, context) => {
|
|
5981
5981
|
const parsedOutput = {
|
|
5982
5982
|
...output,
|
|
5983
|
-
body: await
|
|
5983
|
+
body: await parseErrorBody(output.body, context),
|
|
5984
5984
|
};
|
|
5985
5985
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5986
5986
|
switch (errorCode) {
|
|
@@ -6014,7 +6014,7 @@ exports.deserializeAws_json1_1DescribeContextCommand = deserializeAws_json1_1Des
|
|
|
6014
6014
|
const deserializeAws_json1_1DescribeContextCommandError = async (output, context) => {
|
|
6015
6015
|
const parsedOutput = {
|
|
6016
6016
|
...output,
|
|
6017
|
-
body: await
|
|
6017
|
+
body: await parseErrorBody(output.body, context),
|
|
6018
6018
|
};
|
|
6019
6019
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6020
6020
|
switch (errorCode) {
|
|
@@ -6048,7 +6048,7 @@ exports.deserializeAws_json1_1DescribeDataQualityJobDefinitionCommand = deserial
|
|
|
6048
6048
|
const deserializeAws_json1_1DescribeDataQualityJobDefinitionCommandError = async (output, context) => {
|
|
6049
6049
|
const parsedOutput = {
|
|
6050
6050
|
...output,
|
|
6051
|
-
body: await
|
|
6051
|
+
body: await parseErrorBody(output.body, context),
|
|
6052
6052
|
};
|
|
6053
6053
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6054
6054
|
switch (errorCode) {
|
|
@@ -6082,7 +6082,7 @@ exports.deserializeAws_json1_1DescribeDeviceCommand = deserializeAws_json1_1Desc
|
|
|
6082
6082
|
const deserializeAws_json1_1DescribeDeviceCommandError = async (output, context) => {
|
|
6083
6083
|
const parsedOutput = {
|
|
6084
6084
|
...output,
|
|
6085
|
-
body: await
|
|
6085
|
+
body: await parseErrorBody(output.body, context),
|
|
6086
6086
|
};
|
|
6087
6087
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6088
6088
|
switch (errorCode) {
|
|
@@ -6116,7 +6116,7 @@ exports.deserializeAws_json1_1DescribeDeviceFleetCommand = deserializeAws_json1_
|
|
|
6116
6116
|
const deserializeAws_json1_1DescribeDeviceFleetCommandError = async (output, context) => {
|
|
6117
6117
|
const parsedOutput = {
|
|
6118
6118
|
...output,
|
|
6119
|
-
body: await
|
|
6119
|
+
body: await parseErrorBody(output.body, context),
|
|
6120
6120
|
};
|
|
6121
6121
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6122
6122
|
switch (errorCode) {
|
|
@@ -6150,7 +6150,7 @@ exports.deserializeAws_json1_1DescribeDomainCommand = deserializeAws_json1_1Desc
|
|
|
6150
6150
|
const deserializeAws_json1_1DescribeDomainCommandError = async (output, context) => {
|
|
6151
6151
|
const parsedOutput = {
|
|
6152
6152
|
...output,
|
|
6153
|
-
body: await
|
|
6153
|
+
body: await parseErrorBody(output.body, context),
|
|
6154
6154
|
};
|
|
6155
6155
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6156
6156
|
switch (errorCode) {
|
|
@@ -6184,7 +6184,7 @@ exports.deserializeAws_json1_1DescribeEdgeDeploymentPlanCommand = deserializeAws
|
|
|
6184
6184
|
const deserializeAws_json1_1DescribeEdgeDeploymentPlanCommandError = async (output, context) => {
|
|
6185
6185
|
const parsedOutput = {
|
|
6186
6186
|
...output,
|
|
6187
|
-
body: await
|
|
6187
|
+
body: await parseErrorBody(output.body, context),
|
|
6188
6188
|
};
|
|
6189
6189
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6190
6190
|
switch (errorCode) {
|
|
@@ -6218,7 +6218,7 @@ exports.deserializeAws_json1_1DescribeEdgePackagingJobCommand = deserializeAws_j
|
|
|
6218
6218
|
const deserializeAws_json1_1DescribeEdgePackagingJobCommandError = async (output, context) => {
|
|
6219
6219
|
const parsedOutput = {
|
|
6220
6220
|
...output,
|
|
6221
|
-
body: await
|
|
6221
|
+
body: await parseErrorBody(output.body, context),
|
|
6222
6222
|
};
|
|
6223
6223
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6224
6224
|
switch (errorCode) {
|
|
@@ -6252,7 +6252,7 @@ exports.deserializeAws_json1_1DescribeEndpointCommand = deserializeAws_json1_1De
|
|
|
6252
6252
|
const deserializeAws_json1_1DescribeEndpointCommandError = async (output, context) => {
|
|
6253
6253
|
const parsedOutput = {
|
|
6254
6254
|
...output,
|
|
6255
|
-
body: await
|
|
6255
|
+
body: await parseErrorBody(output.body, context),
|
|
6256
6256
|
};
|
|
6257
6257
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6258
6258
|
const parsedBody = parsedOutput.body;
|
|
@@ -6280,7 +6280,7 @@ exports.deserializeAws_json1_1DescribeEndpointConfigCommand = deserializeAws_jso
|
|
|
6280
6280
|
const deserializeAws_json1_1DescribeEndpointConfigCommandError = async (output, context) => {
|
|
6281
6281
|
const parsedOutput = {
|
|
6282
6282
|
...output,
|
|
6283
|
-
body: await
|
|
6283
|
+
body: await parseErrorBody(output.body, context),
|
|
6284
6284
|
};
|
|
6285
6285
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6286
6286
|
const parsedBody = parsedOutput.body;
|
|
@@ -6308,7 +6308,7 @@ exports.deserializeAws_json1_1DescribeExperimentCommand = deserializeAws_json1_1
|
|
|
6308
6308
|
const deserializeAws_json1_1DescribeExperimentCommandError = async (output, context) => {
|
|
6309
6309
|
const parsedOutput = {
|
|
6310
6310
|
...output,
|
|
6311
|
-
body: await
|
|
6311
|
+
body: await parseErrorBody(output.body, context),
|
|
6312
6312
|
};
|
|
6313
6313
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6314
6314
|
switch (errorCode) {
|
|
@@ -6342,7 +6342,7 @@ exports.deserializeAws_json1_1DescribeFeatureGroupCommand = deserializeAws_json1
|
|
|
6342
6342
|
const deserializeAws_json1_1DescribeFeatureGroupCommandError = async (output, context) => {
|
|
6343
6343
|
const parsedOutput = {
|
|
6344
6344
|
...output,
|
|
6345
|
-
body: await
|
|
6345
|
+
body: await parseErrorBody(output.body, context),
|
|
6346
6346
|
};
|
|
6347
6347
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6348
6348
|
switch (errorCode) {
|
|
@@ -6376,7 +6376,7 @@ exports.deserializeAws_json1_1DescribeFeatureMetadataCommand = deserializeAws_js
|
|
|
6376
6376
|
const deserializeAws_json1_1DescribeFeatureMetadataCommandError = async (output, context) => {
|
|
6377
6377
|
const parsedOutput = {
|
|
6378
6378
|
...output,
|
|
6379
|
-
body: await
|
|
6379
|
+
body: await parseErrorBody(output.body, context),
|
|
6380
6380
|
};
|
|
6381
6381
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6382
6382
|
switch (errorCode) {
|
|
@@ -6410,7 +6410,7 @@ exports.deserializeAws_json1_1DescribeFlowDefinitionCommand = deserializeAws_jso
|
|
|
6410
6410
|
const deserializeAws_json1_1DescribeFlowDefinitionCommandError = async (output, context) => {
|
|
6411
6411
|
const parsedOutput = {
|
|
6412
6412
|
...output,
|
|
6413
|
-
body: await
|
|
6413
|
+
body: await parseErrorBody(output.body, context),
|
|
6414
6414
|
};
|
|
6415
6415
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6416
6416
|
switch (errorCode) {
|
|
@@ -6444,7 +6444,7 @@ exports.deserializeAws_json1_1DescribeHumanTaskUiCommand = deserializeAws_json1_
|
|
|
6444
6444
|
const deserializeAws_json1_1DescribeHumanTaskUiCommandError = async (output, context) => {
|
|
6445
6445
|
const parsedOutput = {
|
|
6446
6446
|
...output,
|
|
6447
|
-
body: await
|
|
6447
|
+
body: await parseErrorBody(output.body, context),
|
|
6448
6448
|
};
|
|
6449
6449
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6450
6450
|
switch (errorCode) {
|
|
@@ -6478,7 +6478,7 @@ exports.deserializeAws_json1_1DescribeHyperParameterTuningJobCommand = deseriali
|
|
|
6478
6478
|
const deserializeAws_json1_1DescribeHyperParameterTuningJobCommandError = async (output, context) => {
|
|
6479
6479
|
const parsedOutput = {
|
|
6480
6480
|
...output,
|
|
6481
|
-
body: await
|
|
6481
|
+
body: await parseErrorBody(output.body, context),
|
|
6482
6482
|
};
|
|
6483
6483
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6484
6484
|
switch (errorCode) {
|
|
@@ -6512,7 +6512,7 @@ exports.deserializeAws_json1_1DescribeImageCommand = deserializeAws_json1_1Descr
|
|
|
6512
6512
|
const deserializeAws_json1_1DescribeImageCommandError = async (output, context) => {
|
|
6513
6513
|
const parsedOutput = {
|
|
6514
6514
|
...output,
|
|
6515
|
-
body: await
|
|
6515
|
+
body: await parseErrorBody(output.body, context),
|
|
6516
6516
|
};
|
|
6517
6517
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6518
6518
|
switch (errorCode) {
|
|
@@ -6546,7 +6546,7 @@ exports.deserializeAws_json1_1DescribeImageVersionCommand = deserializeAws_json1
|
|
|
6546
6546
|
const deserializeAws_json1_1DescribeImageVersionCommandError = async (output, context) => {
|
|
6547
6547
|
const parsedOutput = {
|
|
6548
6548
|
...output,
|
|
6549
|
-
body: await
|
|
6549
|
+
body: await parseErrorBody(output.body, context),
|
|
6550
6550
|
};
|
|
6551
6551
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6552
6552
|
switch (errorCode) {
|
|
@@ -6580,7 +6580,7 @@ exports.deserializeAws_json1_1DescribeInferenceRecommendationsJobCommand = deser
|
|
|
6580
6580
|
const deserializeAws_json1_1DescribeInferenceRecommendationsJobCommandError = async (output, context) => {
|
|
6581
6581
|
const parsedOutput = {
|
|
6582
6582
|
...output,
|
|
6583
|
-
body: await
|
|
6583
|
+
body: await parseErrorBody(output.body, context),
|
|
6584
6584
|
};
|
|
6585
6585
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6586
6586
|
switch (errorCode) {
|
|
@@ -6614,7 +6614,7 @@ exports.deserializeAws_json1_1DescribeLabelingJobCommand = deserializeAws_json1_
|
|
|
6614
6614
|
const deserializeAws_json1_1DescribeLabelingJobCommandError = async (output, context) => {
|
|
6615
6615
|
const parsedOutput = {
|
|
6616
6616
|
...output,
|
|
6617
|
-
body: await
|
|
6617
|
+
body: await parseErrorBody(output.body, context),
|
|
6618
6618
|
};
|
|
6619
6619
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6620
6620
|
switch (errorCode) {
|
|
@@ -6648,7 +6648,7 @@ exports.deserializeAws_json1_1DescribeLineageGroupCommand = deserializeAws_json1
|
|
|
6648
6648
|
const deserializeAws_json1_1DescribeLineageGroupCommandError = async (output, context) => {
|
|
6649
6649
|
const parsedOutput = {
|
|
6650
6650
|
...output,
|
|
6651
|
-
body: await
|
|
6651
|
+
body: await parseErrorBody(output.body, context),
|
|
6652
6652
|
};
|
|
6653
6653
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6654
6654
|
switch (errorCode) {
|
|
@@ -6682,7 +6682,7 @@ exports.deserializeAws_json1_1DescribeModelCommand = deserializeAws_json1_1Descr
|
|
|
6682
6682
|
const deserializeAws_json1_1DescribeModelCommandError = async (output, context) => {
|
|
6683
6683
|
const parsedOutput = {
|
|
6684
6684
|
...output,
|
|
6685
|
-
body: await
|
|
6685
|
+
body: await parseErrorBody(output.body, context),
|
|
6686
6686
|
};
|
|
6687
6687
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6688
6688
|
const parsedBody = parsedOutput.body;
|
|
@@ -6710,7 +6710,7 @@ exports.deserializeAws_json1_1DescribeModelBiasJobDefinitionCommand = deserializ
|
|
|
6710
6710
|
const deserializeAws_json1_1DescribeModelBiasJobDefinitionCommandError = async (output, context) => {
|
|
6711
6711
|
const parsedOutput = {
|
|
6712
6712
|
...output,
|
|
6713
|
-
body: await
|
|
6713
|
+
body: await parseErrorBody(output.body, context),
|
|
6714
6714
|
};
|
|
6715
6715
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6716
6716
|
switch (errorCode) {
|
|
@@ -6744,7 +6744,7 @@ exports.deserializeAws_json1_1DescribeModelExplainabilityJobDefinitionCommand =
|
|
|
6744
6744
|
const deserializeAws_json1_1DescribeModelExplainabilityJobDefinitionCommandError = async (output, context) => {
|
|
6745
6745
|
const parsedOutput = {
|
|
6746
6746
|
...output,
|
|
6747
|
-
body: await
|
|
6747
|
+
body: await parseErrorBody(output.body, context),
|
|
6748
6748
|
};
|
|
6749
6749
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6750
6750
|
switch (errorCode) {
|
|
@@ -6778,7 +6778,7 @@ exports.deserializeAws_json1_1DescribeModelPackageCommand = deserializeAws_json1
|
|
|
6778
6778
|
const deserializeAws_json1_1DescribeModelPackageCommandError = async (output, context) => {
|
|
6779
6779
|
const parsedOutput = {
|
|
6780
6780
|
...output,
|
|
6781
|
-
body: await
|
|
6781
|
+
body: await parseErrorBody(output.body, context),
|
|
6782
6782
|
};
|
|
6783
6783
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6784
6784
|
const parsedBody = parsedOutput.body;
|
|
@@ -6806,7 +6806,7 @@ exports.deserializeAws_json1_1DescribeModelPackageGroupCommand = deserializeAws_
|
|
|
6806
6806
|
const deserializeAws_json1_1DescribeModelPackageGroupCommandError = async (output, context) => {
|
|
6807
6807
|
const parsedOutput = {
|
|
6808
6808
|
...output,
|
|
6809
|
-
body: await
|
|
6809
|
+
body: await parseErrorBody(output.body, context),
|
|
6810
6810
|
};
|
|
6811
6811
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6812
6812
|
const parsedBody = parsedOutput.body;
|
|
@@ -6834,7 +6834,7 @@ exports.deserializeAws_json1_1DescribeModelQualityJobDefinitionCommand = deseria
|
|
|
6834
6834
|
const deserializeAws_json1_1DescribeModelQualityJobDefinitionCommandError = async (output, context) => {
|
|
6835
6835
|
const parsedOutput = {
|
|
6836
6836
|
...output,
|
|
6837
|
-
body: await
|
|
6837
|
+
body: await parseErrorBody(output.body, context),
|
|
6838
6838
|
};
|
|
6839
6839
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6840
6840
|
switch (errorCode) {
|
|
@@ -6868,7 +6868,7 @@ exports.deserializeAws_json1_1DescribeMonitoringScheduleCommand = deserializeAws
|
|
|
6868
6868
|
const deserializeAws_json1_1DescribeMonitoringScheduleCommandError = async (output, context) => {
|
|
6869
6869
|
const parsedOutput = {
|
|
6870
6870
|
...output,
|
|
6871
|
-
body: await
|
|
6871
|
+
body: await parseErrorBody(output.body, context),
|
|
6872
6872
|
};
|
|
6873
6873
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6874
6874
|
switch (errorCode) {
|
|
@@ -6902,7 +6902,7 @@ exports.deserializeAws_json1_1DescribeNotebookInstanceCommand = deserializeAws_j
|
|
|
6902
6902
|
const deserializeAws_json1_1DescribeNotebookInstanceCommandError = async (output, context) => {
|
|
6903
6903
|
const parsedOutput = {
|
|
6904
6904
|
...output,
|
|
6905
|
-
body: await
|
|
6905
|
+
body: await parseErrorBody(output.body, context),
|
|
6906
6906
|
};
|
|
6907
6907
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6908
6908
|
const parsedBody = parsedOutput.body;
|
|
@@ -6930,7 +6930,7 @@ exports.deserializeAws_json1_1DescribeNotebookInstanceLifecycleConfigCommand = d
|
|
|
6930
6930
|
const deserializeAws_json1_1DescribeNotebookInstanceLifecycleConfigCommandError = async (output, context) => {
|
|
6931
6931
|
const parsedOutput = {
|
|
6932
6932
|
...output,
|
|
6933
|
-
body: await
|
|
6933
|
+
body: await parseErrorBody(output.body, context),
|
|
6934
6934
|
};
|
|
6935
6935
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6936
6936
|
const parsedBody = parsedOutput.body;
|
|
@@ -6958,7 +6958,7 @@ exports.deserializeAws_json1_1DescribePipelineCommand = deserializeAws_json1_1De
|
|
|
6958
6958
|
const deserializeAws_json1_1DescribePipelineCommandError = async (output, context) => {
|
|
6959
6959
|
const parsedOutput = {
|
|
6960
6960
|
...output,
|
|
6961
|
-
body: await
|
|
6961
|
+
body: await parseErrorBody(output.body, context),
|
|
6962
6962
|
};
|
|
6963
6963
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6964
6964
|
switch (errorCode) {
|
|
@@ -6992,7 +6992,7 @@ exports.deserializeAws_json1_1DescribePipelineDefinitionForExecutionCommand = de
|
|
|
6992
6992
|
const deserializeAws_json1_1DescribePipelineDefinitionForExecutionCommandError = async (output, context) => {
|
|
6993
6993
|
const parsedOutput = {
|
|
6994
6994
|
...output,
|
|
6995
|
-
body: await
|
|
6995
|
+
body: await parseErrorBody(output.body, context),
|
|
6996
6996
|
};
|
|
6997
6997
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6998
6998
|
switch (errorCode) {
|
|
@@ -7026,7 +7026,7 @@ exports.deserializeAws_json1_1DescribePipelineExecutionCommand = deserializeAws_
|
|
|
7026
7026
|
const deserializeAws_json1_1DescribePipelineExecutionCommandError = async (output, context) => {
|
|
7027
7027
|
const parsedOutput = {
|
|
7028
7028
|
...output,
|
|
7029
|
-
body: await
|
|
7029
|
+
body: await parseErrorBody(output.body, context),
|
|
7030
7030
|
};
|
|
7031
7031
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7032
7032
|
switch (errorCode) {
|
|
@@ -7060,7 +7060,7 @@ exports.deserializeAws_json1_1DescribeProcessingJobCommand = deserializeAws_json
|
|
|
7060
7060
|
const deserializeAws_json1_1DescribeProcessingJobCommandError = async (output, context) => {
|
|
7061
7061
|
const parsedOutput = {
|
|
7062
7062
|
...output,
|
|
7063
|
-
body: await
|
|
7063
|
+
body: await parseErrorBody(output.body, context),
|
|
7064
7064
|
};
|
|
7065
7065
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7066
7066
|
switch (errorCode) {
|
|
@@ -7094,7 +7094,7 @@ exports.deserializeAws_json1_1DescribeProjectCommand = deserializeAws_json1_1Des
|
|
|
7094
7094
|
const deserializeAws_json1_1DescribeProjectCommandError = async (output, context) => {
|
|
7095
7095
|
const parsedOutput = {
|
|
7096
7096
|
...output,
|
|
7097
|
-
body: await
|
|
7097
|
+
body: await parseErrorBody(output.body, context),
|
|
7098
7098
|
};
|
|
7099
7099
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7100
7100
|
const parsedBody = parsedOutput.body;
|
|
@@ -7122,7 +7122,7 @@ exports.deserializeAws_json1_1DescribeStudioLifecycleConfigCommand = deserialize
|
|
|
7122
7122
|
const deserializeAws_json1_1DescribeStudioLifecycleConfigCommandError = async (output, context) => {
|
|
7123
7123
|
const parsedOutput = {
|
|
7124
7124
|
...output,
|
|
7125
|
-
body: await
|
|
7125
|
+
body: await parseErrorBody(output.body, context),
|
|
7126
7126
|
};
|
|
7127
7127
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7128
7128
|
switch (errorCode) {
|
|
@@ -7156,7 +7156,7 @@ exports.deserializeAws_json1_1DescribeSubscribedWorkteamCommand = deserializeAws
|
|
|
7156
7156
|
const deserializeAws_json1_1DescribeSubscribedWorkteamCommandError = async (output, context) => {
|
|
7157
7157
|
const parsedOutput = {
|
|
7158
7158
|
...output,
|
|
7159
|
-
body: await
|
|
7159
|
+
body: await parseErrorBody(output.body, context),
|
|
7160
7160
|
};
|
|
7161
7161
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7162
7162
|
const parsedBody = parsedOutput.body;
|
|
@@ -7184,7 +7184,7 @@ exports.deserializeAws_json1_1DescribeTrainingJobCommand = deserializeAws_json1_
|
|
|
7184
7184
|
const deserializeAws_json1_1DescribeTrainingJobCommandError = async (output, context) => {
|
|
7185
7185
|
const parsedOutput = {
|
|
7186
7186
|
...output,
|
|
7187
|
-
body: await
|
|
7187
|
+
body: await parseErrorBody(output.body, context),
|
|
7188
7188
|
};
|
|
7189
7189
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7190
7190
|
switch (errorCode) {
|
|
@@ -7218,7 +7218,7 @@ exports.deserializeAws_json1_1DescribeTransformJobCommand = deserializeAws_json1
|
|
|
7218
7218
|
const deserializeAws_json1_1DescribeTransformJobCommandError = async (output, context) => {
|
|
7219
7219
|
const parsedOutput = {
|
|
7220
7220
|
...output,
|
|
7221
|
-
body: await
|
|
7221
|
+
body: await parseErrorBody(output.body, context),
|
|
7222
7222
|
};
|
|
7223
7223
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7224
7224
|
switch (errorCode) {
|
|
@@ -7252,7 +7252,7 @@ exports.deserializeAws_json1_1DescribeTrialCommand = deserializeAws_json1_1Descr
|
|
|
7252
7252
|
const deserializeAws_json1_1DescribeTrialCommandError = async (output, context) => {
|
|
7253
7253
|
const parsedOutput = {
|
|
7254
7254
|
...output,
|
|
7255
|
-
body: await
|
|
7255
|
+
body: await parseErrorBody(output.body, context),
|
|
7256
7256
|
};
|
|
7257
7257
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7258
7258
|
switch (errorCode) {
|
|
@@ -7286,7 +7286,7 @@ exports.deserializeAws_json1_1DescribeTrialComponentCommand = deserializeAws_jso
|
|
|
7286
7286
|
const deserializeAws_json1_1DescribeTrialComponentCommandError = async (output, context) => {
|
|
7287
7287
|
const parsedOutput = {
|
|
7288
7288
|
...output,
|
|
7289
|
-
body: await
|
|
7289
|
+
body: await parseErrorBody(output.body, context),
|
|
7290
7290
|
};
|
|
7291
7291
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7292
7292
|
switch (errorCode) {
|
|
@@ -7320,7 +7320,7 @@ exports.deserializeAws_json1_1DescribeUserProfileCommand = deserializeAws_json1_
|
|
|
7320
7320
|
const deserializeAws_json1_1DescribeUserProfileCommandError = async (output, context) => {
|
|
7321
7321
|
const parsedOutput = {
|
|
7322
7322
|
...output,
|
|
7323
|
-
body: await
|
|
7323
|
+
body: await parseErrorBody(output.body, context),
|
|
7324
7324
|
};
|
|
7325
7325
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7326
7326
|
switch (errorCode) {
|
|
@@ -7354,7 +7354,7 @@ exports.deserializeAws_json1_1DescribeWorkforceCommand = deserializeAws_json1_1D
|
|
|
7354
7354
|
const deserializeAws_json1_1DescribeWorkforceCommandError = async (output, context) => {
|
|
7355
7355
|
const parsedOutput = {
|
|
7356
7356
|
...output,
|
|
7357
|
-
body: await
|
|
7357
|
+
body: await parseErrorBody(output.body, context),
|
|
7358
7358
|
};
|
|
7359
7359
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7360
7360
|
const parsedBody = parsedOutput.body;
|
|
@@ -7382,7 +7382,7 @@ exports.deserializeAws_json1_1DescribeWorkteamCommand = deserializeAws_json1_1De
|
|
|
7382
7382
|
const deserializeAws_json1_1DescribeWorkteamCommandError = async (output, context) => {
|
|
7383
7383
|
const parsedOutput = {
|
|
7384
7384
|
...output,
|
|
7385
|
-
body: await
|
|
7385
|
+
body: await parseErrorBody(output.body, context),
|
|
7386
7386
|
};
|
|
7387
7387
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7388
7388
|
const parsedBody = parsedOutput.body;
|
|
@@ -7410,7 +7410,7 @@ exports.deserializeAws_json1_1DisableSagemakerServicecatalogPortfolioCommand = d
|
|
|
7410
7410
|
const deserializeAws_json1_1DisableSagemakerServicecatalogPortfolioCommandError = async (output, context) => {
|
|
7411
7411
|
const parsedOutput = {
|
|
7412
7412
|
...output,
|
|
7413
|
-
body: await
|
|
7413
|
+
body: await parseErrorBody(output.body, context),
|
|
7414
7414
|
};
|
|
7415
7415
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7416
7416
|
const parsedBody = parsedOutput.body;
|
|
@@ -7438,7 +7438,7 @@ exports.deserializeAws_json1_1DisassociateTrialComponentCommand = deserializeAws
|
|
|
7438
7438
|
const deserializeAws_json1_1DisassociateTrialComponentCommandError = async (output, context) => {
|
|
7439
7439
|
const parsedOutput = {
|
|
7440
7440
|
...output,
|
|
7441
|
-
body: await
|
|
7441
|
+
body: await parseErrorBody(output.body, context),
|
|
7442
7442
|
};
|
|
7443
7443
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7444
7444
|
switch (errorCode) {
|
|
@@ -7472,7 +7472,7 @@ exports.deserializeAws_json1_1EnableSagemakerServicecatalogPortfolioCommand = de
|
|
|
7472
7472
|
const deserializeAws_json1_1EnableSagemakerServicecatalogPortfolioCommandError = async (output, context) => {
|
|
7473
7473
|
const parsedOutput = {
|
|
7474
7474
|
...output,
|
|
7475
|
-
body: await
|
|
7475
|
+
body: await parseErrorBody(output.body, context),
|
|
7476
7476
|
};
|
|
7477
7477
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7478
7478
|
const parsedBody = parsedOutput.body;
|
|
@@ -7500,7 +7500,7 @@ exports.deserializeAws_json1_1GetDeviceFleetReportCommand = deserializeAws_json1
|
|
|
7500
7500
|
const deserializeAws_json1_1GetDeviceFleetReportCommandError = async (output, context) => {
|
|
7501
7501
|
const parsedOutput = {
|
|
7502
7502
|
...output,
|
|
7503
|
-
body: await
|
|
7503
|
+
body: await parseErrorBody(output.body, context),
|
|
7504
7504
|
};
|
|
7505
7505
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7506
7506
|
const parsedBody = parsedOutput.body;
|
|
@@ -7528,7 +7528,7 @@ exports.deserializeAws_json1_1GetLineageGroupPolicyCommand = deserializeAws_json
|
|
|
7528
7528
|
const deserializeAws_json1_1GetLineageGroupPolicyCommandError = async (output, context) => {
|
|
7529
7529
|
const parsedOutput = {
|
|
7530
7530
|
...output,
|
|
7531
|
-
body: await
|
|
7531
|
+
body: await parseErrorBody(output.body, context),
|
|
7532
7532
|
};
|
|
7533
7533
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7534
7534
|
switch (errorCode) {
|
|
@@ -7562,7 +7562,7 @@ exports.deserializeAws_json1_1GetModelPackageGroupPolicyCommand = deserializeAws
|
|
|
7562
7562
|
const deserializeAws_json1_1GetModelPackageGroupPolicyCommandError = async (output, context) => {
|
|
7563
7563
|
const parsedOutput = {
|
|
7564
7564
|
...output,
|
|
7565
|
-
body: await
|
|
7565
|
+
body: await parseErrorBody(output.body, context),
|
|
7566
7566
|
};
|
|
7567
7567
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7568
7568
|
const parsedBody = parsedOutput.body;
|
|
@@ -7590,7 +7590,7 @@ exports.deserializeAws_json1_1GetSagemakerServicecatalogPortfolioStatusCommand =
|
|
|
7590
7590
|
const deserializeAws_json1_1GetSagemakerServicecatalogPortfolioStatusCommandError = async (output, context) => {
|
|
7591
7591
|
const parsedOutput = {
|
|
7592
7592
|
...output,
|
|
7593
|
-
body: await
|
|
7593
|
+
body: await parseErrorBody(output.body, context),
|
|
7594
7594
|
};
|
|
7595
7595
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7596
7596
|
const parsedBody = parsedOutput.body;
|
|
@@ -7618,7 +7618,7 @@ exports.deserializeAws_json1_1GetSearchSuggestionsCommand = deserializeAws_json1
|
|
|
7618
7618
|
const deserializeAws_json1_1GetSearchSuggestionsCommandError = async (output, context) => {
|
|
7619
7619
|
const parsedOutput = {
|
|
7620
7620
|
...output,
|
|
7621
|
-
body: await
|
|
7621
|
+
body: await parseErrorBody(output.body, context),
|
|
7622
7622
|
};
|
|
7623
7623
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7624
7624
|
const parsedBody = parsedOutput.body;
|
|
@@ -7646,7 +7646,7 @@ exports.deserializeAws_json1_1ListActionsCommand = deserializeAws_json1_1ListAct
|
|
|
7646
7646
|
const deserializeAws_json1_1ListActionsCommandError = async (output, context) => {
|
|
7647
7647
|
const parsedOutput = {
|
|
7648
7648
|
...output,
|
|
7649
|
-
body: await
|
|
7649
|
+
body: await parseErrorBody(output.body, context),
|
|
7650
7650
|
};
|
|
7651
7651
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7652
7652
|
switch (errorCode) {
|
|
@@ -7680,7 +7680,7 @@ exports.deserializeAws_json1_1ListAlgorithmsCommand = deserializeAws_json1_1List
|
|
|
7680
7680
|
const deserializeAws_json1_1ListAlgorithmsCommandError = async (output, context) => {
|
|
7681
7681
|
const parsedOutput = {
|
|
7682
7682
|
...output,
|
|
7683
|
-
body: await
|
|
7683
|
+
body: await parseErrorBody(output.body, context),
|
|
7684
7684
|
};
|
|
7685
7685
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7686
7686
|
const parsedBody = parsedOutput.body;
|
|
@@ -7708,7 +7708,7 @@ exports.deserializeAws_json1_1ListAppImageConfigsCommand = deserializeAws_json1_
|
|
|
7708
7708
|
const deserializeAws_json1_1ListAppImageConfigsCommandError = async (output, context) => {
|
|
7709
7709
|
const parsedOutput = {
|
|
7710
7710
|
...output,
|
|
7711
|
-
body: await
|
|
7711
|
+
body: await parseErrorBody(output.body, context),
|
|
7712
7712
|
};
|
|
7713
7713
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7714
7714
|
const parsedBody = parsedOutput.body;
|
|
@@ -7736,7 +7736,7 @@ exports.deserializeAws_json1_1ListAppsCommand = deserializeAws_json1_1ListAppsCo
|
|
|
7736
7736
|
const deserializeAws_json1_1ListAppsCommandError = async (output, context) => {
|
|
7737
7737
|
const parsedOutput = {
|
|
7738
7738
|
...output,
|
|
7739
|
-
body: await
|
|
7739
|
+
body: await parseErrorBody(output.body, context),
|
|
7740
7740
|
};
|
|
7741
7741
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7742
7742
|
const parsedBody = parsedOutput.body;
|
|
@@ -7764,7 +7764,7 @@ exports.deserializeAws_json1_1ListArtifactsCommand = deserializeAws_json1_1ListA
|
|
|
7764
7764
|
const deserializeAws_json1_1ListArtifactsCommandError = async (output, context) => {
|
|
7765
7765
|
const parsedOutput = {
|
|
7766
7766
|
...output,
|
|
7767
|
-
body: await
|
|
7767
|
+
body: await parseErrorBody(output.body, context),
|
|
7768
7768
|
};
|
|
7769
7769
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7770
7770
|
switch (errorCode) {
|
|
@@ -7798,7 +7798,7 @@ exports.deserializeAws_json1_1ListAssociationsCommand = deserializeAws_json1_1Li
|
|
|
7798
7798
|
const deserializeAws_json1_1ListAssociationsCommandError = async (output, context) => {
|
|
7799
7799
|
const parsedOutput = {
|
|
7800
7800
|
...output,
|
|
7801
|
-
body: await
|
|
7801
|
+
body: await parseErrorBody(output.body, context),
|
|
7802
7802
|
};
|
|
7803
7803
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7804
7804
|
switch (errorCode) {
|
|
@@ -7832,7 +7832,7 @@ exports.deserializeAws_json1_1ListAutoMLJobsCommand = deserializeAws_json1_1List
|
|
|
7832
7832
|
const deserializeAws_json1_1ListAutoMLJobsCommandError = async (output, context) => {
|
|
7833
7833
|
const parsedOutput = {
|
|
7834
7834
|
...output,
|
|
7835
|
-
body: await
|
|
7835
|
+
body: await parseErrorBody(output.body, context),
|
|
7836
7836
|
};
|
|
7837
7837
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7838
7838
|
const parsedBody = parsedOutput.body;
|
|
@@ -7860,7 +7860,7 @@ exports.deserializeAws_json1_1ListCandidatesForAutoMLJobCommand = deserializeAws
|
|
|
7860
7860
|
const deserializeAws_json1_1ListCandidatesForAutoMLJobCommandError = async (output, context) => {
|
|
7861
7861
|
const parsedOutput = {
|
|
7862
7862
|
...output,
|
|
7863
|
-
body: await
|
|
7863
|
+
body: await parseErrorBody(output.body, context),
|
|
7864
7864
|
};
|
|
7865
7865
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7866
7866
|
switch (errorCode) {
|
|
@@ -7894,7 +7894,7 @@ exports.deserializeAws_json1_1ListCodeRepositoriesCommand = deserializeAws_json1
|
|
|
7894
7894
|
const deserializeAws_json1_1ListCodeRepositoriesCommandError = async (output, context) => {
|
|
7895
7895
|
const parsedOutput = {
|
|
7896
7896
|
...output,
|
|
7897
|
-
body: await
|
|
7897
|
+
body: await parseErrorBody(output.body, context),
|
|
7898
7898
|
};
|
|
7899
7899
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7900
7900
|
const parsedBody = parsedOutput.body;
|
|
@@ -7922,7 +7922,7 @@ exports.deserializeAws_json1_1ListCompilationJobsCommand = deserializeAws_json1_
|
|
|
7922
7922
|
const deserializeAws_json1_1ListCompilationJobsCommandError = async (output, context) => {
|
|
7923
7923
|
const parsedOutput = {
|
|
7924
7924
|
...output,
|
|
7925
|
-
body: await
|
|
7925
|
+
body: await parseErrorBody(output.body, context),
|
|
7926
7926
|
};
|
|
7927
7927
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7928
7928
|
const parsedBody = parsedOutput.body;
|
|
@@ -7950,7 +7950,7 @@ exports.deserializeAws_json1_1ListContextsCommand = deserializeAws_json1_1ListCo
|
|
|
7950
7950
|
const deserializeAws_json1_1ListContextsCommandError = async (output, context) => {
|
|
7951
7951
|
const parsedOutput = {
|
|
7952
7952
|
...output,
|
|
7953
|
-
body: await
|
|
7953
|
+
body: await parseErrorBody(output.body, context),
|
|
7954
7954
|
};
|
|
7955
7955
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7956
7956
|
switch (errorCode) {
|
|
@@ -7984,7 +7984,7 @@ exports.deserializeAws_json1_1ListDataQualityJobDefinitionsCommand = deserialize
|
|
|
7984
7984
|
const deserializeAws_json1_1ListDataQualityJobDefinitionsCommandError = async (output, context) => {
|
|
7985
7985
|
const parsedOutput = {
|
|
7986
7986
|
...output,
|
|
7987
|
-
body: await
|
|
7987
|
+
body: await parseErrorBody(output.body, context),
|
|
7988
7988
|
};
|
|
7989
7989
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7990
7990
|
const parsedBody = parsedOutput.body;
|
|
@@ -8012,7 +8012,7 @@ exports.deserializeAws_json1_1ListDeviceFleetsCommand = deserializeAws_json1_1Li
|
|
|
8012
8012
|
const deserializeAws_json1_1ListDeviceFleetsCommandError = async (output, context) => {
|
|
8013
8013
|
const parsedOutput = {
|
|
8014
8014
|
...output,
|
|
8015
|
-
body: await
|
|
8015
|
+
body: await parseErrorBody(output.body, context),
|
|
8016
8016
|
};
|
|
8017
8017
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8018
8018
|
const parsedBody = parsedOutput.body;
|
|
@@ -8040,7 +8040,7 @@ exports.deserializeAws_json1_1ListDevicesCommand = deserializeAws_json1_1ListDev
|
|
|
8040
8040
|
const deserializeAws_json1_1ListDevicesCommandError = async (output, context) => {
|
|
8041
8041
|
const parsedOutput = {
|
|
8042
8042
|
...output,
|
|
8043
|
-
body: await
|
|
8043
|
+
body: await parseErrorBody(output.body, context),
|
|
8044
8044
|
};
|
|
8045
8045
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8046
8046
|
const parsedBody = parsedOutput.body;
|
|
@@ -8068,7 +8068,7 @@ exports.deserializeAws_json1_1ListDomainsCommand = deserializeAws_json1_1ListDom
|
|
|
8068
8068
|
const deserializeAws_json1_1ListDomainsCommandError = async (output, context) => {
|
|
8069
8069
|
const parsedOutput = {
|
|
8070
8070
|
...output,
|
|
8071
|
-
body: await
|
|
8071
|
+
body: await parseErrorBody(output.body, context),
|
|
8072
8072
|
};
|
|
8073
8073
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8074
8074
|
const parsedBody = parsedOutput.body;
|
|
@@ -8096,7 +8096,7 @@ exports.deserializeAws_json1_1ListEdgeDeploymentPlansCommand = deserializeAws_js
|
|
|
8096
8096
|
const deserializeAws_json1_1ListEdgeDeploymentPlansCommandError = async (output, context) => {
|
|
8097
8097
|
const parsedOutput = {
|
|
8098
8098
|
...output,
|
|
8099
|
-
body: await
|
|
8099
|
+
body: await parseErrorBody(output.body, context),
|
|
8100
8100
|
};
|
|
8101
8101
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8102
8102
|
const parsedBody = parsedOutput.body;
|
|
@@ -8124,7 +8124,7 @@ exports.deserializeAws_json1_1ListEdgePackagingJobsCommand = deserializeAws_json
|
|
|
8124
8124
|
const deserializeAws_json1_1ListEdgePackagingJobsCommandError = async (output, context) => {
|
|
8125
8125
|
const parsedOutput = {
|
|
8126
8126
|
...output,
|
|
8127
|
-
body: await
|
|
8127
|
+
body: await parseErrorBody(output.body, context),
|
|
8128
8128
|
};
|
|
8129
8129
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8130
8130
|
const parsedBody = parsedOutput.body;
|
|
@@ -8152,7 +8152,7 @@ exports.deserializeAws_json1_1ListEndpointConfigsCommand = deserializeAws_json1_
|
|
|
8152
8152
|
const deserializeAws_json1_1ListEndpointConfigsCommandError = async (output, context) => {
|
|
8153
8153
|
const parsedOutput = {
|
|
8154
8154
|
...output,
|
|
8155
|
-
body: await
|
|
8155
|
+
body: await parseErrorBody(output.body, context),
|
|
8156
8156
|
};
|
|
8157
8157
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8158
8158
|
const parsedBody = parsedOutput.body;
|
|
@@ -8180,7 +8180,7 @@ exports.deserializeAws_json1_1ListEndpointsCommand = deserializeAws_json1_1ListE
|
|
|
8180
8180
|
const deserializeAws_json1_1ListEndpointsCommandError = async (output, context) => {
|
|
8181
8181
|
const parsedOutput = {
|
|
8182
8182
|
...output,
|
|
8183
|
-
body: await
|
|
8183
|
+
body: await parseErrorBody(output.body, context),
|
|
8184
8184
|
};
|
|
8185
8185
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8186
8186
|
const parsedBody = parsedOutput.body;
|
|
@@ -8208,7 +8208,7 @@ exports.deserializeAws_json1_1ListExperimentsCommand = deserializeAws_json1_1Lis
|
|
|
8208
8208
|
const deserializeAws_json1_1ListExperimentsCommandError = async (output, context) => {
|
|
8209
8209
|
const parsedOutput = {
|
|
8210
8210
|
...output,
|
|
8211
|
-
body: await
|
|
8211
|
+
body: await parseErrorBody(output.body, context),
|
|
8212
8212
|
};
|
|
8213
8213
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8214
8214
|
const parsedBody = parsedOutput.body;
|
|
@@ -8236,7 +8236,7 @@ exports.deserializeAws_json1_1ListFeatureGroupsCommand = deserializeAws_json1_1L
|
|
|
8236
8236
|
const deserializeAws_json1_1ListFeatureGroupsCommandError = async (output, context) => {
|
|
8237
8237
|
const parsedOutput = {
|
|
8238
8238
|
...output,
|
|
8239
|
-
body: await
|
|
8239
|
+
body: await parseErrorBody(output.body, context),
|
|
8240
8240
|
};
|
|
8241
8241
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8242
8242
|
const parsedBody = parsedOutput.body;
|
|
@@ -8264,7 +8264,7 @@ exports.deserializeAws_json1_1ListFlowDefinitionsCommand = deserializeAws_json1_
|
|
|
8264
8264
|
const deserializeAws_json1_1ListFlowDefinitionsCommandError = async (output, context) => {
|
|
8265
8265
|
const parsedOutput = {
|
|
8266
8266
|
...output,
|
|
8267
|
-
body: await
|
|
8267
|
+
body: await parseErrorBody(output.body, context),
|
|
8268
8268
|
};
|
|
8269
8269
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8270
8270
|
const parsedBody = parsedOutput.body;
|
|
@@ -8292,7 +8292,7 @@ exports.deserializeAws_json1_1ListHumanTaskUisCommand = deserializeAws_json1_1Li
|
|
|
8292
8292
|
const deserializeAws_json1_1ListHumanTaskUisCommandError = async (output, context) => {
|
|
8293
8293
|
const parsedOutput = {
|
|
8294
8294
|
...output,
|
|
8295
|
-
body: await
|
|
8295
|
+
body: await parseErrorBody(output.body, context),
|
|
8296
8296
|
};
|
|
8297
8297
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8298
8298
|
const parsedBody = parsedOutput.body;
|
|
@@ -8320,7 +8320,7 @@ exports.deserializeAws_json1_1ListHyperParameterTuningJobsCommand = deserializeA
|
|
|
8320
8320
|
const deserializeAws_json1_1ListHyperParameterTuningJobsCommandError = async (output, context) => {
|
|
8321
8321
|
const parsedOutput = {
|
|
8322
8322
|
...output,
|
|
8323
|
-
body: await
|
|
8323
|
+
body: await parseErrorBody(output.body, context),
|
|
8324
8324
|
};
|
|
8325
8325
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8326
8326
|
const parsedBody = parsedOutput.body;
|
|
@@ -8348,7 +8348,7 @@ exports.deserializeAws_json1_1ListImagesCommand = deserializeAws_json1_1ListImag
|
|
|
8348
8348
|
const deserializeAws_json1_1ListImagesCommandError = async (output, context) => {
|
|
8349
8349
|
const parsedOutput = {
|
|
8350
8350
|
...output,
|
|
8351
|
-
body: await
|
|
8351
|
+
body: await parseErrorBody(output.body, context),
|
|
8352
8352
|
};
|
|
8353
8353
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8354
8354
|
const parsedBody = parsedOutput.body;
|
|
@@ -8376,7 +8376,7 @@ exports.deserializeAws_json1_1ListImageVersionsCommand = deserializeAws_json1_1L
|
|
|
8376
8376
|
const deserializeAws_json1_1ListImageVersionsCommandError = async (output, context) => {
|
|
8377
8377
|
const parsedOutput = {
|
|
8378
8378
|
...output,
|
|
8379
|
-
body: await
|
|
8379
|
+
body: await parseErrorBody(output.body, context),
|
|
8380
8380
|
};
|
|
8381
8381
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8382
8382
|
switch (errorCode) {
|
|
@@ -8410,7 +8410,7 @@ exports.deserializeAws_json1_1ListInferenceRecommendationsJobsCommand = deserial
|
|
|
8410
8410
|
const deserializeAws_json1_1ListInferenceRecommendationsJobsCommandError = async (output, context) => {
|
|
8411
8411
|
const parsedOutput = {
|
|
8412
8412
|
...output,
|
|
8413
|
-
body: await
|
|
8413
|
+
body: await parseErrorBody(output.body, context),
|
|
8414
8414
|
};
|
|
8415
8415
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8416
8416
|
const parsedBody = parsedOutput.body;
|
|
@@ -8438,7 +8438,7 @@ exports.deserializeAws_json1_1ListLabelingJobsCommand = deserializeAws_json1_1Li
|
|
|
8438
8438
|
const deserializeAws_json1_1ListLabelingJobsCommandError = async (output, context) => {
|
|
8439
8439
|
const parsedOutput = {
|
|
8440
8440
|
...output,
|
|
8441
|
-
body: await
|
|
8441
|
+
body: await parseErrorBody(output.body, context),
|
|
8442
8442
|
};
|
|
8443
8443
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8444
8444
|
const parsedBody = parsedOutput.body;
|
|
@@ -8466,7 +8466,7 @@ exports.deserializeAws_json1_1ListLabelingJobsForWorkteamCommand = deserializeAw
|
|
|
8466
8466
|
const deserializeAws_json1_1ListLabelingJobsForWorkteamCommandError = async (output, context) => {
|
|
8467
8467
|
const parsedOutput = {
|
|
8468
8468
|
...output,
|
|
8469
|
-
body: await
|
|
8469
|
+
body: await parseErrorBody(output.body, context),
|
|
8470
8470
|
};
|
|
8471
8471
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8472
8472
|
switch (errorCode) {
|
|
@@ -8500,7 +8500,7 @@ exports.deserializeAws_json1_1ListLineageGroupsCommand = deserializeAws_json1_1L
|
|
|
8500
8500
|
const deserializeAws_json1_1ListLineageGroupsCommandError = async (output, context) => {
|
|
8501
8501
|
const parsedOutput = {
|
|
8502
8502
|
...output,
|
|
8503
|
-
body: await
|
|
8503
|
+
body: await parseErrorBody(output.body, context),
|
|
8504
8504
|
};
|
|
8505
8505
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8506
8506
|
const parsedBody = parsedOutput.body;
|
|
@@ -8528,7 +8528,7 @@ exports.deserializeAws_json1_1ListModelBiasJobDefinitionsCommand = deserializeAw
|
|
|
8528
8528
|
const deserializeAws_json1_1ListModelBiasJobDefinitionsCommandError = async (output, context) => {
|
|
8529
8529
|
const parsedOutput = {
|
|
8530
8530
|
...output,
|
|
8531
|
-
body: await
|
|
8531
|
+
body: await parseErrorBody(output.body, context),
|
|
8532
8532
|
};
|
|
8533
8533
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8534
8534
|
const parsedBody = parsedOutput.body;
|
|
@@ -8556,7 +8556,7 @@ exports.deserializeAws_json1_1ListModelExplainabilityJobDefinitionsCommand = des
|
|
|
8556
8556
|
const deserializeAws_json1_1ListModelExplainabilityJobDefinitionsCommandError = async (output, context) => {
|
|
8557
8557
|
const parsedOutput = {
|
|
8558
8558
|
...output,
|
|
8559
|
-
body: await
|
|
8559
|
+
body: await parseErrorBody(output.body, context),
|
|
8560
8560
|
};
|
|
8561
8561
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8562
8562
|
const parsedBody = parsedOutput.body;
|
|
@@ -8584,7 +8584,7 @@ exports.deserializeAws_json1_1ListModelMetadataCommand = deserializeAws_json1_1L
|
|
|
8584
8584
|
const deserializeAws_json1_1ListModelMetadataCommandError = async (output, context) => {
|
|
8585
8585
|
const parsedOutput = {
|
|
8586
8586
|
...output,
|
|
8587
|
-
body: await
|
|
8587
|
+
body: await parseErrorBody(output.body, context),
|
|
8588
8588
|
};
|
|
8589
8589
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8590
8590
|
const parsedBody = parsedOutput.body;
|
|
@@ -8612,7 +8612,7 @@ exports.deserializeAws_json1_1ListModelPackageGroupsCommand = deserializeAws_jso
|
|
|
8612
8612
|
const deserializeAws_json1_1ListModelPackageGroupsCommandError = async (output, context) => {
|
|
8613
8613
|
const parsedOutput = {
|
|
8614
8614
|
...output,
|
|
8615
|
-
body: await
|
|
8615
|
+
body: await parseErrorBody(output.body, context),
|
|
8616
8616
|
};
|
|
8617
8617
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8618
8618
|
const parsedBody = parsedOutput.body;
|
|
@@ -8640,7 +8640,7 @@ exports.deserializeAws_json1_1ListModelPackagesCommand = deserializeAws_json1_1L
|
|
|
8640
8640
|
const deserializeAws_json1_1ListModelPackagesCommandError = async (output, context) => {
|
|
8641
8641
|
const parsedOutput = {
|
|
8642
8642
|
...output,
|
|
8643
|
-
body: await
|
|
8643
|
+
body: await parseErrorBody(output.body, context),
|
|
8644
8644
|
};
|
|
8645
8645
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8646
8646
|
const parsedBody = parsedOutput.body;
|
|
@@ -8668,7 +8668,7 @@ exports.deserializeAws_json1_1ListModelQualityJobDefinitionsCommand = deserializ
|
|
|
8668
8668
|
const deserializeAws_json1_1ListModelQualityJobDefinitionsCommandError = async (output, context) => {
|
|
8669
8669
|
const parsedOutput = {
|
|
8670
8670
|
...output,
|
|
8671
|
-
body: await
|
|
8671
|
+
body: await parseErrorBody(output.body, context),
|
|
8672
8672
|
};
|
|
8673
8673
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8674
8674
|
const parsedBody = parsedOutput.body;
|
|
@@ -8696,7 +8696,7 @@ exports.deserializeAws_json1_1ListModelsCommand = deserializeAws_json1_1ListMode
|
|
|
8696
8696
|
const deserializeAws_json1_1ListModelsCommandError = async (output, context) => {
|
|
8697
8697
|
const parsedOutput = {
|
|
8698
8698
|
...output,
|
|
8699
|
-
body: await
|
|
8699
|
+
body: await parseErrorBody(output.body, context),
|
|
8700
8700
|
};
|
|
8701
8701
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8702
8702
|
const parsedBody = parsedOutput.body;
|
|
@@ -8724,7 +8724,7 @@ exports.deserializeAws_json1_1ListMonitoringExecutionsCommand = deserializeAws_j
|
|
|
8724
8724
|
const deserializeAws_json1_1ListMonitoringExecutionsCommandError = async (output, context) => {
|
|
8725
8725
|
const parsedOutput = {
|
|
8726
8726
|
...output,
|
|
8727
|
-
body: await
|
|
8727
|
+
body: await parseErrorBody(output.body, context),
|
|
8728
8728
|
};
|
|
8729
8729
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8730
8730
|
const parsedBody = parsedOutput.body;
|
|
@@ -8752,7 +8752,7 @@ exports.deserializeAws_json1_1ListMonitoringSchedulesCommand = deserializeAws_js
|
|
|
8752
8752
|
const deserializeAws_json1_1ListMonitoringSchedulesCommandError = async (output, context) => {
|
|
8753
8753
|
const parsedOutput = {
|
|
8754
8754
|
...output,
|
|
8755
|
-
body: await
|
|
8755
|
+
body: await parseErrorBody(output.body, context),
|
|
8756
8756
|
};
|
|
8757
8757
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8758
8758
|
const parsedBody = parsedOutput.body;
|
|
@@ -8780,7 +8780,7 @@ exports.deserializeAws_json1_1ListNotebookInstanceLifecycleConfigsCommand = dese
|
|
|
8780
8780
|
const deserializeAws_json1_1ListNotebookInstanceLifecycleConfigsCommandError = async (output, context) => {
|
|
8781
8781
|
const parsedOutput = {
|
|
8782
8782
|
...output,
|
|
8783
|
-
body: await
|
|
8783
|
+
body: await parseErrorBody(output.body, context),
|
|
8784
8784
|
};
|
|
8785
8785
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8786
8786
|
const parsedBody = parsedOutput.body;
|
|
@@ -8808,7 +8808,7 @@ exports.deserializeAws_json1_1ListNotebookInstancesCommand = deserializeAws_json
|
|
|
8808
8808
|
const deserializeAws_json1_1ListNotebookInstancesCommandError = async (output, context) => {
|
|
8809
8809
|
const parsedOutput = {
|
|
8810
8810
|
...output,
|
|
8811
|
-
body: await
|
|
8811
|
+
body: await parseErrorBody(output.body, context),
|
|
8812
8812
|
};
|
|
8813
8813
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8814
8814
|
const parsedBody = parsedOutput.body;
|
|
@@ -8836,7 +8836,7 @@ exports.deserializeAws_json1_1ListPipelineExecutionsCommand = deserializeAws_jso
|
|
|
8836
8836
|
const deserializeAws_json1_1ListPipelineExecutionsCommandError = async (output, context) => {
|
|
8837
8837
|
const parsedOutput = {
|
|
8838
8838
|
...output,
|
|
8839
|
-
body: await
|
|
8839
|
+
body: await parseErrorBody(output.body, context),
|
|
8840
8840
|
};
|
|
8841
8841
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8842
8842
|
switch (errorCode) {
|
|
@@ -8870,7 +8870,7 @@ exports.deserializeAws_json1_1ListPipelineExecutionStepsCommand = deserializeAws
|
|
|
8870
8870
|
const deserializeAws_json1_1ListPipelineExecutionStepsCommandError = async (output, context) => {
|
|
8871
8871
|
const parsedOutput = {
|
|
8872
8872
|
...output,
|
|
8873
|
-
body: await
|
|
8873
|
+
body: await parseErrorBody(output.body, context),
|
|
8874
8874
|
};
|
|
8875
8875
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8876
8876
|
switch (errorCode) {
|
|
@@ -8904,7 +8904,7 @@ exports.deserializeAws_json1_1ListPipelineParametersForExecutionCommand = deseri
|
|
|
8904
8904
|
const deserializeAws_json1_1ListPipelineParametersForExecutionCommandError = async (output, context) => {
|
|
8905
8905
|
const parsedOutput = {
|
|
8906
8906
|
...output,
|
|
8907
|
-
body: await
|
|
8907
|
+
body: await parseErrorBody(output.body, context),
|
|
8908
8908
|
};
|
|
8909
8909
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8910
8910
|
switch (errorCode) {
|
|
@@ -8938,7 +8938,7 @@ exports.deserializeAws_json1_1ListPipelinesCommand = deserializeAws_json1_1ListP
|
|
|
8938
8938
|
const deserializeAws_json1_1ListPipelinesCommandError = async (output, context) => {
|
|
8939
8939
|
const parsedOutput = {
|
|
8940
8940
|
...output,
|
|
8941
|
-
body: await
|
|
8941
|
+
body: await parseErrorBody(output.body, context),
|
|
8942
8942
|
};
|
|
8943
8943
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8944
8944
|
const parsedBody = parsedOutput.body;
|
|
@@ -8966,7 +8966,7 @@ exports.deserializeAws_json1_1ListProcessingJobsCommand = deserializeAws_json1_1
|
|
|
8966
8966
|
const deserializeAws_json1_1ListProcessingJobsCommandError = async (output, context) => {
|
|
8967
8967
|
const parsedOutput = {
|
|
8968
8968
|
...output,
|
|
8969
|
-
body: await
|
|
8969
|
+
body: await parseErrorBody(output.body, context),
|
|
8970
8970
|
};
|
|
8971
8971
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8972
8972
|
const parsedBody = parsedOutput.body;
|
|
@@ -8994,7 +8994,7 @@ exports.deserializeAws_json1_1ListProjectsCommand = deserializeAws_json1_1ListPr
|
|
|
8994
8994
|
const deserializeAws_json1_1ListProjectsCommandError = async (output, context) => {
|
|
8995
8995
|
const parsedOutput = {
|
|
8996
8996
|
...output,
|
|
8997
|
-
body: await
|
|
8997
|
+
body: await parseErrorBody(output.body, context),
|
|
8998
8998
|
};
|
|
8999
8999
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9000
9000
|
const parsedBody = parsedOutput.body;
|
|
@@ -9022,7 +9022,7 @@ exports.deserializeAws_json1_1ListStageDevicesCommand = deserializeAws_json1_1Li
|
|
|
9022
9022
|
const deserializeAws_json1_1ListStageDevicesCommandError = async (output, context) => {
|
|
9023
9023
|
const parsedOutput = {
|
|
9024
9024
|
...output,
|
|
9025
|
-
body: await
|
|
9025
|
+
body: await parseErrorBody(output.body, context),
|
|
9026
9026
|
};
|
|
9027
9027
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9028
9028
|
const parsedBody = parsedOutput.body;
|
|
@@ -9050,7 +9050,7 @@ exports.deserializeAws_json1_1ListStudioLifecycleConfigsCommand = deserializeAws
|
|
|
9050
9050
|
const deserializeAws_json1_1ListStudioLifecycleConfigsCommandError = async (output, context) => {
|
|
9051
9051
|
const parsedOutput = {
|
|
9052
9052
|
...output,
|
|
9053
|
-
body: await
|
|
9053
|
+
body: await parseErrorBody(output.body, context),
|
|
9054
9054
|
};
|
|
9055
9055
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9056
9056
|
switch (errorCode) {
|
|
@@ -9084,7 +9084,7 @@ exports.deserializeAws_json1_1ListSubscribedWorkteamsCommand = deserializeAws_js
|
|
|
9084
9084
|
const deserializeAws_json1_1ListSubscribedWorkteamsCommandError = async (output, context) => {
|
|
9085
9085
|
const parsedOutput = {
|
|
9086
9086
|
...output,
|
|
9087
|
-
body: await
|
|
9087
|
+
body: await parseErrorBody(output.body, context),
|
|
9088
9088
|
};
|
|
9089
9089
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9090
9090
|
const parsedBody = parsedOutput.body;
|
|
@@ -9112,7 +9112,7 @@ exports.deserializeAws_json1_1ListTagsCommand = deserializeAws_json1_1ListTagsCo
|
|
|
9112
9112
|
const deserializeAws_json1_1ListTagsCommandError = async (output, context) => {
|
|
9113
9113
|
const parsedOutput = {
|
|
9114
9114
|
...output,
|
|
9115
|
-
body: await
|
|
9115
|
+
body: await parseErrorBody(output.body, context),
|
|
9116
9116
|
};
|
|
9117
9117
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9118
9118
|
const parsedBody = parsedOutput.body;
|
|
@@ -9140,7 +9140,7 @@ exports.deserializeAws_json1_1ListTrainingJobsCommand = deserializeAws_json1_1Li
|
|
|
9140
9140
|
const deserializeAws_json1_1ListTrainingJobsCommandError = async (output, context) => {
|
|
9141
9141
|
const parsedOutput = {
|
|
9142
9142
|
...output,
|
|
9143
|
-
body: await
|
|
9143
|
+
body: await parseErrorBody(output.body, context),
|
|
9144
9144
|
};
|
|
9145
9145
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9146
9146
|
const parsedBody = parsedOutput.body;
|
|
@@ -9168,7 +9168,7 @@ exports.deserializeAws_json1_1ListTrainingJobsForHyperParameterTuningJobCommand
|
|
|
9168
9168
|
const deserializeAws_json1_1ListTrainingJobsForHyperParameterTuningJobCommandError = async (output, context) => {
|
|
9169
9169
|
const parsedOutput = {
|
|
9170
9170
|
...output,
|
|
9171
|
-
body: await
|
|
9171
|
+
body: await parseErrorBody(output.body, context),
|
|
9172
9172
|
};
|
|
9173
9173
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9174
9174
|
switch (errorCode) {
|
|
@@ -9202,7 +9202,7 @@ exports.deserializeAws_json1_1ListTransformJobsCommand = deserializeAws_json1_1L
|
|
|
9202
9202
|
const deserializeAws_json1_1ListTransformJobsCommandError = async (output, context) => {
|
|
9203
9203
|
const parsedOutput = {
|
|
9204
9204
|
...output,
|
|
9205
|
-
body: await
|
|
9205
|
+
body: await parseErrorBody(output.body, context),
|
|
9206
9206
|
};
|
|
9207
9207
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9208
9208
|
const parsedBody = parsedOutput.body;
|
|
@@ -9230,7 +9230,7 @@ exports.deserializeAws_json1_1ListTrialComponentsCommand = deserializeAws_json1_
|
|
|
9230
9230
|
const deserializeAws_json1_1ListTrialComponentsCommandError = async (output, context) => {
|
|
9231
9231
|
const parsedOutput = {
|
|
9232
9232
|
...output,
|
|
9233
|
-
body: await
|
|
9233
|
+
body: await parseErrorBody(output.body, context),
|
|
9234
9234
|
};
|
|
9235
9235
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9236
9236
|
switch (errorCode) {
|
|
@@ -9264,7 +9264,7 @@ exports.deserializeAws_json1_1ListTrialsCommand = deserializeAws_json1_1ListTria
|
|
|
9264
9264
|
const deserializeAws_json1_1ListTrialsCommandError = async (output, context) => {
|
|
9265
9265
|
const parsedOutput = {
|
|
9266
9266
|
...output,
|
|
9267
|
-
body: await
|
|
9267
|
+
body: await parseErrorBody(output.body, context),
|
|
9268
9268
|
};
|
|
9269
9269
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9270
9270
|
switch (errorCode) {
|
|
@@ -9298,7 +9298,7 @@ exports.deserializeAws_json1_1ListUserProfilesCommand = deserializeAws_json1_1Li
|
|
|
9298
9298
|
const deserializeAws_json1_1ListUserProfilesCommandError = async (output, context) => {
|
|
9299
9299
|
const parsedOutput = {
|
|
9300
9300
|
...output,
|
|
9301
|
-
body: await
|
|
9301
|
+
body: await parseErrorBody(output.body, context),
|
|
9302
9302
|
};
|
|
9303
9303
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9304
9304
|
const parsedBody = parsedOutput.body;
|
|
@@ -9326,7 +9326,7 @@ exports.deserializeAws_json1_1ListWorkforcesCommand = deserializeAws_json1_1List
|
|
|
9326
9326
|
const deserializeAws_json1_1ListWorkforcesCommandError = async (output, context) => {
|
|
9327
9327
|
const parsedOutput = {
|
|
9328
9328
|
...output,
|
|
9329
|
-
body: await
|
|
9329
|
+
body: await parseErrorBody(output.body, context),
|
|
9330
9330
|
};
|
|
9331
9331
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9332
9332
|
const parsedBody = parsedOutput.body;
|
|
@@ -9354,7 +9354,7 @@ exports.deserializeAws_json1_1ListWorkteamsCommand = deserializeAws_json1_1ListW
|
|
|
9354
9354
|
const deserializeAws_json1_1ListWorkteamsCommandError = async (output, context) => {
|
|
9355
9355
|
const parsedOutput = {
|
|
9356
9356
|
...output,
|
|
9357
|
-
body: await
|
|
9357
|
+
body: await parseErrorBody(output.body, context),
|
|
9358
9358
|
};
|
|
9359
9359
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9360
9360
|
const parsedBody = parsedOutput.body;
|
|
@@ -9382,7 +9382,7 @@ exports.deserializeAws_json1_1PutModelPackageGroupPolicyCommand = deserializeAws
|
|
|
9382
9382
|
const deserializeAws_json1_1PutModelPackageGroupPolicyCommandError = async (output, context) => {
|
|
9383
9383
|
const parsedOutput = {
|
|
9384
9384
|
...output,
|
|
9385
|
-
body: await
|
|
9385
|
+
body: await parseErrorBody(output.body, context),
|
|
9386
9386
|
};
|
|
9387
9387
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9388
9388
|
const parsedBody = parsedOutput.body;
|
|
@@ -9410,7 +9410,7 @@ exports.deserializeAws_json1_1QueryLineageCommand = deserializeAws_json1_1QueryL
|
|
|
9410
9410
|
const deserializeAws_json1_1QueryLineageCommandError = async (output, context) => {
|
|
9411
9411
|
const parsedOutput = {
|
|
9412
9412
|
...output,
|
|
9413
|
-
body: await
|
|
9413
|
+
body: await parseErrorBody(output.body, context),
|
|
9414
9414
|
};
|
|
9415
9415
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9416
9416
|
switch (errorCode) {
|
|
@@ -9441,7 +9441,7 @@ exports.deserializeAws_json1_1RegisterDevicesCommand = deserializeAws_json1_1Reg
|
|
|
9441
9441
|
const deserializeAws_json1_1RegisterDevicesCommandError = async (output, context) => {
|
|
9442
9442
|
const parsedOutput = {
|
|
9443
9443
|
...output,
|
|
9444
|
-
body: await
|
|
9444
|
+
body: await parseErrorBody(output.body, context),
|
|
9445
9445
|
};
|
|
9446
9446
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9447
9447
|
switch (errorCode) {
|
|
@@ -9475,7 +9475,7 @@ exports.deserializeAws_json1_1RenderUiTemplateCommand = deserializeAws_json1_1Re
|
|
|
9475
9475
|
const deserializeAws_json1_1RenderUiTemplateCommandError = async (output, context) => {
|
|
9476
9476
|
const parsedOutput = {
|
|
9477
9477
|
...output,
|
|
9478
|
-
body: await
|
|
9478
|
+
body: await parseErrorBody(output.body, context),
|
|
9479
9479
|
};
|
|
9480
9480
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9481
9481
|
switch (errorCode) {
|
|
@@ -9509,7 +9509,7 @@ exports.deserializeAws_json1_1RetryPipelineExecutionCommand = deserializeAws_jso
|
|
|
9509
9509
|
const deserializeAws_json1_1RetryPipelineExecutionCommandError = async (output, context) => {
|
|
9510
9510
|
const parsedOutput = {
|
|
9511
9511
|
...output,
|
|
9512
|
-
body: await
|
|
9512
|
+
body: await parseErrorBody(output.body, context),
|
|
9513
9513
|
};
|
|
9514
9514
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9515
9515
|
switch (errorCode) {
|
|
@@ -9549,7 +9549,7 @@ exports.deserializeAws_json1_1SearchCommand = deserializeAws_json1_1SearchComman
|
|
|
9549
9549
|
const deserializeAws_json1_1SearchCommandError = async (output, context) => {
|
|
9550
9550
|
const parsedOutput = {
|
|
9551
9551
|
...output,
|
|
9552
|
-
body: await
|
|
9552
|
+
body: await parseErrorBody(output.body, context),
|
|
9553
9553
|
};
|
|
9554
9554
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9555
9555
|
const parsedBody = parsedOutput.body;
|
|
@@ -9577,7 +9577,7 @@ exports.deserializeAws_json1_1SendPipelineExecutionStepFailureCommand = deserial
|
|
|
9577
9577
|
const deserializeAws_json1_1SendPipelineExecutionStepFailureCommandError = async (output, context) => {
|
|
9578
9578
|
const parsedOutput = {
|
|
9579
9579
|
...output,
|
|
9580
|
-
body: await
|
|
9580
|
+
body: await parseErrorBody(output.body, context),
|
|
9581
9581
|
};
|
|
9582
9582
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9583
9583
|
switch (errorCode) {
|
|
@@ -9614,7 +9614,7 @@ exports.deserializeAws_json1_1SendPipelineExecutionStepSuccessCommand = deserial
|
|
|
9614
9614
|
const deserializeAws_json1_1SendPipelineExecutionStepSuccessCommandError = async (output, context) => {
|
|
9615
9615
|
const parsedOutput = {
|
|
9616
9616
|
...output,
|
|
9617
|
-
body: await
|
|
9617
|
+
body: await parseErrorBody(output.body, context),
|
|
9618
9618
|
};
|
|
9619
9619
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9620
9620
|
switch (errorCode) {
|
|
@@ -9648,7 +9648,7 @@ exports.deserializeAws_json1_1StartEdgeDeploymentStageCommand = deserializeAws_j
|
|
|
9648
9648
|
const deserializeAws_json1_1StartEdgeDeploymentStageCommandError = async (output, context) => {
|
|
9649
9649
|
const parsedOutput = {
|
|
9650
9650
|
...output,
|
|
9651
|
-
body: await
|
|
9651
|
+
body: await parseErrorBody(output.body, context),
|
|
9652
9652
|
};
|
|
9653
9653
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9654
9654
|
const parsedBody = parsedOutput.body;
|
|
@@ -9673,7 +9673,7 @@ exports.deserializeAws_json1_1StartMonitoringScheduleCommand = deserializeAws_js
|
|
|
9673
9673
|
const deserializeAws_json1_1StartMonitoringScheduleCommandError = async (output, context) => {
|
|
9674
9674
|
const parsedOutput = {
|
|
9675
9675
|
...output,
|
|
9676
|
-
body: await
|
|
9676
|
+
body: await parseErrorBody(output.body, context),
|
|
9677
9677
|
};
|
|
9678
9678
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9679
9679
|
switch (errorCode) {
|
|
@@ -9704,7 +9704,7 @@ exports.deserializeAws_json1_1StartNotebookInstanceCommand = deserializeAws_json
|
|
|
9704
9704
|
const deserializeAws_json1_1StartNotebookInstanceCommandError = async (output, context) => {
|
|
9705
9705
|
const parsedOutput = {
|
|
9706
9706
|
...output,
|
|
9707
|
-
body: await
|
|
9707
|
+
body: await parseErrorBody(output.body, context),
|
|
9708
9708
|
};
|
|
9709
9709
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9710
9710
|
switch (errorCode) {
|
|
@@ -9738,7 +9738,7 @@ exports.deserializeAws_json1_1StartPipelineExecutionCommand = deserializeAws_jso
|
|
|
9738
9738
|
const deserializeAws_json1_1StartPipelineExecutionCommandError = async (output, context) => {
|
|
9739
9739
|
const parsedOutput = {
|
|
9740
9740
|
...output,
|
|
9741
|
-
body: await
|
|
9741
|
+
body: await parseErrorBody(output.body, context),
|
|
9742
9742
|
};
|
|
9743
9743
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9744
9744
|
switch (errorCode) {
|
|
@@ -9772,7 +9772,7 @@ exports.deserializeAws_json1_1StopAutoMLJobCommand = deserializeAws_json1_1StopA
|
|
|
9772
9772
|
const deserializeAws_json1_1StopAutoMLJobCommandError = async (output, context) => {
|
|
9773
9773
|
const parsedOutput = {
|
|
9774
9774
|
...output,
|
|
9775
|
-
body: await
|
|
9775
|
+
body: await parseErrorBody(output.body, context),
|
|
9776
9776
|
};
|
|
9777
9777
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9778
9778
|
switch (errorCode) {
|
|
@@ -9803,7 +9803,7 @@ exports.deserializeAws_json1_1StopCompilationJobCommand = deserializeAws_json1_1
|
|
|
9803
9803
|
const deserializeAws_json1_1StopCompilationJobCommandError = async (output, context) => {
|
|
9804
9804
|
const parsedOutput = {
|
|
9805
9805
|
...output,
|
|
9806
|
-
body: await
|
|
9806
|
+
body: await parseErrorBody(output.body, context),
|
|
9807
9807
|
};
|
|
9808
9808
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9809
9809
|
switch (errorCode) {
|
|
@@ -9834,7 +9834,7 @@ exports.deserializeAws_json1_1StopEdgeDeploymentStageCommand = deserializeAws_js
|
|
|
9834
9834
|
const deserializeAws_json1_1StopEdgeDeploymentStageCommandError = async (output, context) => {
|
|
9835
9835
|
const parsedOutput = {
|
|
9836
9836
|
...output,
|
|
9837
|
-
body: await
|
|
9837
|
+
body: await parseErrorBody(output.body, context),
|
|
9838
9838
|
};
|
|
9839
9839
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9840
9840
|
const parsedBody = parsedOutput.body;
|
|
@@ -9859,7 +9859,7 @@ exports.deserializeAws_json1_1StopEdgePackagingJobCommand = deserializeAws_json1
|
|
|
9859
9859
|
const deserializeAws_json1_1StopEdgePackagingJobCommandError = async (output, context) => {
|
|
9860
9860
|
const parsedOutput = {
|
|
9861
9861
|
...output,
|
|
9862
|
-
body: await
|
|
9862
|
+
body: await parseErrorBody(output.body, context),
|
|
9863
9863
|
};
|
|
9864
9864
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9865
9865
|
const parsedBody = parsedOutput.body;
|
|
@@ -9884,7 +9884,7 @@ exports.deserializeAws_json1_1StopHyperParameterTuningJobCommand = deserializeAw
|
|
|
9884
9884
|
const deserializeAws_json1_1StopHyperParameterTuningJobCommandError = async (output, context) => {
|
|
9885
9885
|
const parsedOutput = {
|
|
9886
9886
|
...output,
|
|
9887
|
-
body: await
|
|
9887
|
+
body: await parseErrorBody(output.body, context),
|
|
9888
9888
|
};
|
|
9889
9889
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9890
9890
|
switch (errorCode) {
|
|
@@ -9915,7 +9915,7 @@ exports.deserializeAws_json1_1StopInferenceRecommendationsJobCommand = deseriali
|
|
|
9915
9915
|
const deserializeAws_json1_1StopInferenceRecommendationsJobCommandError = async (output, context) => {
|
|
9916
9916
|
const parsedOutput = {
|
|
9917
9917
|
...output,
|
|
9918
|
-
body: await
|
|
9918
|
+
body: await parseErrorBody(output.body, context),
|
|
9919
9919
|
};
|
|
9920
9920
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9921
9921
|
switch (errorCode) {
|
|
@@ -9946,7 +9946,7 @@ exports.deserializeAws_json1_1StopLabelingJobCommand = deserializeAws_json1_1Sto
|
|
|
9946
9946
|
const deserializeAws_json1_1StopLabelingJobCommandError = async (output, context) => {
|
|
9947
9947
|
const parsedOutput = {
|
|
9948
9948
|
...output,
|
|
9949
|
-
body: await
|
|
9949
|
+
body: await parseErrorBody(output.body, context),
|
|
9950
9950
|
};
|
|
9951
9951
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9952
9952
|
switch (errorCode) {
|
|
@@ -9977,7 +9977,7 @@ exports.deserializeAws_json1_1StopMonitoringScheduleCommand = deserializeAws_jso
|
|
|
9977
9977
|
const deserializeAws_json1_1StopMonitoringScheduleCommandError = async (output, context) => {
|
|
9978
9978
|
const parsedOutput = {
|
|
9979
9979
|
...output,
|
|
9980
|
-
body: await
|
|
9980
|
+
body: await parseErrorBody(output.body, context),
|
|
9981
9981
|
};
|
|
9982
9982
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9983
9983
|
switch (errorCode) {
|
|
@@ -10008,7 +10008,7 @@ exports.deserializeAws_json1_1StopNotebookInstanceCommand = deserializeAws_json1
|
|
|
10008
10008
|
const deserializeAws_json1_1StopNotebookInstanceCommandError = async (output, context) => {
|
|
10009
10009
|
const parsedOutput = {
|
|
10010
10010
|
...output,
|
|
10011
|
-
body: await
|
|
10011
|
+
body: await parseErrorBody(output.body, context),
|
|
10012
10012
|
};
|
|
10013
10013
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10014
10014
|
const parsedBody = parsedOutput.body;
|
|
@@ -10036,7 +10036,7 @@ exports.deserializeAws_json1_1StopPipelineExecutionCommand = deserializeAws_json
|
|
|
10036
10036
|
const deserializeAws_json1_1StopPipelineExecutionCommandError = async (output, context) => {
|
|
10037
10037
|
const parsedOutput = {
|
|
10038
10038
|
...output,
|
|
10039
|
-
body: await
|
|
10039
|
+
body: await parseErrorBody(output.body, context),
|
|
10040
10040
|
};
|
|
10041
10041
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10042
10042
|
switch (errorCode) {
|
|
@@ -10067,7 +10067,7 @@ exports.deserializeAws_json1_1StopProcessingJobCommand = deserializeAws_json1_1S
|
|
|
10067
10067
|
const deserializeAws_json1_1StopProcessingJobCommandError = async (output, context) => {
|
|
10068
10068
|
const parsedOutput = {
|
|
10069
10069
|
...output,
|
|
10070
|
-
body: await
|
|
10070
|
+
body: await parseErrorBody(output.body, context),
|
|
10071
10071
|
};
|
|
10072
10072
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10073
10073
|
switch (errorCode) {
|
|
@@ -10098,7 +10098,7 @@ exports.deserializeAws_json1_1StopTrainingJobCommand = deserializeAws_json1_1Sto
|
|
|
10098
10098
|
const deserializeAws_json1_1StopTrainingJobCommandError = async (output, context) => {
|
|
10099
10099
|
const parsedOutput = {
|
|
10100
10100
|
...output,
|
|
10101
|
-
body: await
|
|
10101
|
+
body: await parseErrorBody(output.body, context),
|
|
10102
10102
|
};
|
|
10103
10103
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10104
10104
|
switch (errorCode) {
|
|
@@ -10129,7 +10129,7 @@ exports.deserializeAws_json1_1StopTransformJobCommand = deserializeAws_json1_1St
|
|
|
10129
10129
|
const deserializeAws_json1_1StopTransformJobCommandError = async (output, context) => {
|
|
10130
10130
|
const parsedOutput = {
|
|
10131
10131
|
...output,
|
|
10132
|
-
body: await
|
|
10132
|
+
body: await parseErrorBody(output.body, context),
|
|
10133
10133
|
};
|
|
10134
10134
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10135
10135
|
switch (errorCode) {
|
|
@@ -10163,7 +10163,7 @@ exports.deserializeAws_json1_1UpdateActionCommand = deserializeAws_json1_1Update
|
|
|
10163
10163
|
const deserializeAws_json1_1UpdateActionCommandError = async (output, context) => {
|
|
10164
10164
|
const parsedOutput = {
|
|
10165
10165
|
...output,
|
|
10166
|
-
body: await
|
|
10166
|
+
body: await parseErrorBody(output.body, context),
|
|
10167
10167
|
};
|
|
10168
10168
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10169
10169
|
switch (errorCode) {
|
|
@@ -10200,7 +10200,7 @@ exports.deserializeAws_json1_1UpdateAppImageConfigCommand = deserializeAws_json1
|
|
|
10200
10200
|
const deserializeAws_json1_1UpdateAppImageConfigCommandError = async (output, context) => {
|
|
10201
10201
|
const parsedOutput = {
|
|
10202
10202
|
...output,
|
|
10203
|
-
body: await
|
|
10203
|
+
body: await parseErrorBody(output.body, context),
|
|
10204
10204
|
};
|
|
10205
10205
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10206
10206
|
switch (errorCode) {
|
|
@@ -10234,7 +10234,7 @@ exports.deserializeAws_json1_1UpdateArtifactCommand = deserializeAws_json1_1Upda
|
|
|
10234
10234
|
const deserializeAws_json1_1UpdateArtifactCommandError = async (output, context) => {
|
|
10235
10235
|
const parsedOutput = {
|
|
10236
10236
|
...output,
|
|
10237
|
-
body: await
|
|
10237
|
+
body: await parseErrorBody(output.body, context),
|
|
10238
10238
|
};
|
|
10239
10239
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10240
10240
|
switch (errorCode) {
|
|
@@ -10271,7 +10271,7 @@ exports.deserializeAws_json1_1UpdateCodeRepositoryCommand = deserializeAws_json1
|
|
|
10271
10271
|
const deserializeAws_json1_1UpdateCodeRepositoryCommandError = async (output, context) => {
|
|
10272
10272
|
const parsedOutput = {
|
|
10273
10273
|
...output,
|
|
10274
|
-
body: await
|
|
10274
|
+
body: await parseErrorBody(output.body, context),
|
|
10275
10275
|
};
|
|
10276
10276
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10277
10277
|
const parsedBody = parsedOutput.body;
|
|
@@ -10299,7 +10299,7 @@ exports.deserializeAws_json1_1UpdateContextCommand = deserializeAws_json1_1Updat
|
|
|
10299
10299
|
const deserializeAws_json1_1UpdateContextCommandError = async (output, context) => {
|
|
10300
10300
|
const parsedOutput = {
|
|
10301
10301
|
...output,
|
|
10302
|
-
body: await
|
|
10302
|
+
body: await parseErrorBody(output.body, context),
|
|
10303
10303
|
};
|
|
10304
10304
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10305
10305
|
switch (errorCode) {
|
|
@@ -10333,7 +10333,7 @@ exports.deserializeAws_json1_1UpdateDeviceFleetCommand = deserializeAws_json1_1U
|
|
|
10333
10333
|
const deserializeAws_json1_1UpdateDeviceFleetCommandError = async (output, context) => {
|
|
10334
10334
|
const parsedOutput = {
|
|
10335
10335
|
...output,
|
|
10336
|
-
body: await
|
|
10336
|
+
body: await parseErrorBody(output.body, context),
|
|
10337
10337
|
};
|
|
10338
10338
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10339
10339
|
switch (errorCode) {
|
|
@@ -10364,7 +10364,7 @@ exports.deserializeAws_json1_1UpdateDevicesCommand = deserializeAws_json1_1Updat
|
|
|
10364
10364
|
const deserializeAws_json1_1UpdateDevicesCommandError = async (output, context) => {
|
|
10365
10365
|
const parsedOutput = {
|
|
10366
10366
|
...output,
|
|
10367
|
-
body: await
|
|
10367
|
+
body: await parseErrorBody(output.body, context),
|
|
10368
10368
|
};
|
|
10369
10369
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10370
10370
|
const parsedBody = parsedOutput.body;
|
|
@@ -10392,7 +10392,7 @@ exports.deserializeAws_json1_1UpdateDomainCommand = deserializeAws_json1_1Update
|
|
|
10392
10392
|
const deserializeAws_json1_1UpdateDomainCommandError = async (output, context) => {
|
|
10393
10393
|
const parsedOutput = {
|
|
10394
10394
|
...output,
|
|
10395
|
-
body: await
|
|
10395
|
+
body: await parseErrorBody(output.body, context),
|
|
10396
10396
|
};
|
|
10397
10397
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10398
10398
|
switch (errorCode) {
|
|
@@ -10432,7 +10432,7 @@ exports.deserializeAws_json1_1UpdateEndpointCommand = deserializeAws_json1_1Upda
|
|
|
10432
10432
|
const deserializeAws_json1_1UpdateEndpointCommandError = async (output, context) => {
|
|
10433
10433
|
const parsedOutput = {
|
|
10434
10434
|
...output,
|
|
10435
|
-
body: await
|
|
10435
|
+
body: await parseErrorBody(output.body, context),
|
|
10436
10436
|
};
|
|
10437
10437
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10438
10438
|
switch (errorCode) {
|
|
@@ -10466,7 +10466,7 @@ exports.deserializeAws_json1_1UpdateEndpointWeightsAndCapacitiesCommand = deseri
|
|
|
10466
10466
|
const deserializeAws_json1_1UpdateEndpointWeightsAndCapacitiesCommandError = async (output, context) => {
|
|
10467
10467
|
const parsedOutput = {
|
|
10468
10468
|
...output,
|
|
10469
|
-
body: await
|
|
10469
|
+
body: await parseErrorBody(output.body, context),
|
|
10470
10470
|
};
|
|
10471
10471
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10472
10472
|
switch (errorCode) {
|
|
@@ -10500,7 +10500,7 @@ exports.deserializeAws_json1_1UpdateExperimentCommand = deserializeAws_json1_1Up
|
|
|
10500
10500
|
const deserializeAws_json1_1UpdateExperimentCommandError = async (output, context) => {
|
|
10501
10501
|
const parsedOutput = {
|
|
10502
10502
|
...output,
|
|
10503
|
-
body: await
|
|
10503
|
+
body: await parseErrorBody(output.body, context),
|
|
10504
10504
|
};
|
|
10505
10505
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10506
10506
|
switch (errorCode) {
|
|
@@ -10537,7 +10537,7 @@ exports.deserializeAws_json1_1UpdateFeatureGroupCommand = deserializeAws_json1_1
|
|
|
10537
10537
|
const deserializeAws_json1_1UpdateFeatureGroupCommandError = async (output, context) => {
|
|
10538
10538
|
const parsedOutput = {
|
|
10539
10539
|
...output,
|
|
10540
|
-
body: await
|
|
10540
|
+
body: await parseErrorBody(output.body, context),
|
|
10541
10541
|
};
|
|
10542
10542
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10543
10543
|
switch (errorCode) {
|
|
@@ -10568,7 +10568,7 @@ exports.deserializeAws_json1_1UpdateFeatureMetadataCommand = deserializeAws_json
|
|
|
10568
10568
|
const deserializeAws_json1_1UpdateFeatureMetadataCommandError = async (output, context) => {
|
|
10569
10569
|
const parsedOutput = {
|
|
10570
10570
|
...output,
|
|
10571
|
-
body: await
|
|
10571
|
+
body: await parseErrorBody(output.body, context),
|
|
10572
10572
|
};
|
|
10573
10573
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10574
10574
|
switch (errorCode) {
|
|
@@ -10602,7 +10602,7 @@ exports.deserializeAws_json1_1UpdateImageCommand = deserializeAws_json1_1UpdateI
|
|
|
10602
10602
|
const deserializeAws_json1_1UpdateImageCommandError = async (output, context) => {
|
|
10603
10603
|
const parsedOutput = {
|
|
10604
10604
|
...output,
|
|
10605
|
-
body: await
|
|
10605
|
+
body: await parseErrorBody(output.body, context),
|
|
10606
10606
|
};
|
|
10607
10607
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10608
10608
|
switch (errorCode) {
|
|
@@ -10639,7 +10639,7 @@ exports.deserializeAws_json1_1UpdateModelPackageCommand = deserializeAws_json1_1
|
|
|
10639
10639
|
const deserializeAws_json1_1UpdateModelPackageCommandError = async (output, context) => {
|
|
10640
10640
|
const parsedOutput = {
|
|
10641
10641
|
...output,
|
|
10642
|
-
body: await
|
|
10642
|
+
body: await parseErrorBody(output.body, context),
|
|
10643
10643
|
};
|
|
10644
10644
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10645
10645
|
const parsedBody = parsedOutput.body;
|
|
@@ -10667,7 +10667,7 @@ exports.deserializeAws_json1_1UpdateMonitoringScheduleCommand = deserializeAws_j
|
|
|
10667
10667
|
const deserializeAws_json1_1UpdateMonitoringScheduleCommandError = async (output, context) => {
|
|
10668
10668
|
const parsedOutput = {
|
|
10669
10669
|
...output,
|
|
10670
|
-
body: await
|
|
10670
|
+
body: await parseErrorBody(output.body, context),
|
|
10671
10671
|
};
|
|
10672
10672
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10673
10673
|
switch (errorCode) {
|
|
@@ -10704,7 +10704,7 @@ exports.deserializeAws_json1_1UpdateNotebookInstanceCommand = deserializeAws_jso
|
|
|
10704
10704
|
const deserializeAws_json1_1UpdateNotebookInstanceCommandError = async (output, context) => {
|
|
10705
10705
|
const parsedOutput = {
|
|
10706
10706
|
...output,
|
|
10707
|
-
body: await
|
|
10707
|
+
body: await parseErrorBody(output.body, context),
|
|
10708
10708
|
};
|
|
10709
10709
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10710
10710
|
switch (errorCode) {
|
|
@@ -10738,7 +10738,7 @@ exports.deserializeAws_json1_1UpdateNotebookInstanceLifecycleConfigCommand = des
|
|
|
10738
10738
|
const deserializeAws_json1_1UpdateNotebookInstanceLifecycleConfigCommandError = async (output, context) => {
|
|
10739
10739
|
const parsedOutput = {
|
|
10740
10740
|
...output,
|
|
10741
|
-
body: await
|
|
10741
|
+
body: await parseErrorBody(output.body, context),
|
|
10742
10742
|
};
|
|
10743
10743
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10744
10744
|
switch (errorCode) {
|
|
@@ -10772,7 +10772,7 @@ exports.deserializeAws_json1_1UpdatePipelineCommand = deserializeAws_json1_1Upda
|
|
|
10772
10772
|
const deserializeAws_json1_1UpdatePipelineCommandError = async (output, context) => {
|
|
10773
10773
|
const parsedOutput = {
|
|
10774
10774
|
...output,
|
|
10775
|
-
body: await
|
|
10775
|
+
body: await parseErrorBody(output.body, context),
|
|
10776
10776
|
};
|
|
10777
10777
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10778
10778
|
switch (errorCode) {
|
|
@@ -10806,7 +10806,7 @@ exports.deserializeAws_json1_1UpdatePipelineExecutionCommand = deserializeAws_js
|
|
|
10806
10806
|
const deserializeAws_json1_1UpdatePipelineExecutionCommandError = async (output, context) => {
|
|
10807
10807
|
const parsedOutput = {
|
|
10808
10808
|
...output,
|
|
10809
|
-
body: await
|
|
10809
|
+
body: await parseErrorBody(output.body, context),
|
|
10810
10810
|
};
|
|
10811
10811
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10812
10812
|
switch (errorCode) {
|
|
@@ -10840,7 +10840,7 @@ exports.deserializeAws_json1_1UpdateProjectCommand = deserializeAws_json1_1Updat
|
|
|
10840
10840
|
const deserializeAws_json1_1UpdateProjectCommandError = async (output, context) => {
|
|
10841
10841
|
const parsedOutput = {
|
|
10842
10842
|
...output,
|
|
10843
|
-
body: await
|
|
10843
|
+
body: await parseErrorBody(output.body, context),
|
|
10844
10844
|
};
|
|
10845
10845
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10846
10846
|
const parsedBody = parsedOutput.body;
|
|
@@ -10868,7 +10868,7 @@ exports.deserializeAws_json1_1UpdateTrainingJobCommand = deserializeAws_json1_1U
|
|
|
10868
10868
|
const deserializeAws_json1_1UpdateTrainingJobCommandError = async (output, context) => {
|
|
10869
10869
|
const parsedOutput = {
|
|
10870
10870
|
...output,
|
|
10871
|
-
body: await
|
|
10871
|
+
body: await parseErrorBody(output.body, context),
|
|
10872
10872
|
};
|
|
10873
10873
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10874
10874
|
switch (errorCode) {
|
|
@@ -10902,7 +10902,7 @@ exports.deserializeAws_json1_1UpdateTrialCommand = deserializeAws_json1_1UpdateT
|
|
|
10902
10902
|
const deserializeAws_json1_1UpdateTrialCommandError = async (output, context) => {
|
|
10903
10903
|
const parsedOutput = {
|
|
10904
10904
|
...output,
|
|
10905
|
-
body: await
|
|
10905
|
+
body: await parseErrorBody(output.body, context),
|
|
10906
10906
|
};
|
|
10907
10907
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10908
10908
|
switch (errorCode) {
|
|
@@ -10939,7 +10939,7 @@ exports.deserializeAws_json1_1UpdateTrialComponentCommand = deserializeAws_json1
|
|
|
10939
10939
|
const deserializeAws_json1_1UpdateTrialComponentCommandError = async (output, context) => {
|
|
10940
10940
|
const parsedOutput = {
|
|
10941
10941
|
...output,
|
|
10942
|
-
body: await
|
|
10942
|
+
body: await parseErrorBody(output.body, context),
|
|
10943
10943
|
};
|
|
10944
10944
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10945
10945
|
switch (errorCode) {
|
|
@@ -10976,7 +10976,7 @@ exports.deserializeAws_json1_1UpdateUserProfileCommand = deserializeAws_json1_1U
|
|
|
10976
10976
|
const deserializeAws_json1_1UpdateUserProfileCommandError = async (output, context) => {
|
|
10977
10977
|
const parsedOutput = {
|
|
10978
10978
|
...output,
|
|
10979
|
-
body: await
|
|
10979
|
+
body: await parseErrorBody(output.body, context),
|
|
10980
10980
|
};
|
|
10981
10981
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10982
10982
|
switch (errorCode) {
|
|
@@ -11016,7 +11016,7 @@ exports.deserializeAws_json1_1UpdateWorkforceCommand = deserializeAws_json1_1Upd
|
|
|
11016
11016
|
const deserializeAws_json1_1UpdateWorkforceCommandError = async (output, context) => {
|
|
11017
11017
|
const parsedOutput = {
|
|
11018
11018
|
...output,
|
|
11019
|
-
body: await
|
|
11019
|
+
body: await parseErrorBody(output.body, context),
|
|
11020
11020
|
};
|
|
11021
11021
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
11022
11022
|
switch (errorCode) {
|
|
@@ -11050,7 +11050,7 @@ exports.deserializeAws_json1_1UpdateWorkteamCommand = deserializeAws_json1_1Upda
|
|
|
11050
11050
|
const deserializeAws_json1_1UpdateWorkteamCommandError = async (output, context) => {
|
|
11051
11051
|
const parsedOutput = {
|
|
11052
11052
|
...output,
|
|
11053
|
-
body: await
|
|
11053
|
+
body: await parseErrorBody(output.body, context),
|
|
11054
11054
|
};
|
|
11055
11055
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
11056
11056
|
switch (errorCode) {
|
|
@@ -11548,6 +11548,81 @@ const serializeAws_json1_1Cidrs = (input, context) => {
|
|
|
11548
11548
|
return entry;
|
|
11549
11549
|
});
|
|
11550
11550
|
};
|
|
11551
|
+
const serializeAws_json1_1ClarifyExplainerConfig = (input, context) => {
|
|
11552
|
+
return {
|
|
11553
|
+
...(input.EnableExplanations != null && { EnableExplanations: input.EnableExplanations }),
|
|
11554
|
+
...(input.InferenceConfig != null && {
|
|
11555
|
+
InferenceConfig: serializeAws_json1_1ClarifyInferenceConfig(input.InferenceConfig, context),
|
|
11556
|
+
}),
|
|
11557
|
+
...(input.ShapConfig != null && { ShapConfig: serializeAws_json1_1ClarifyShapConfig(input.ShapConfig, context) }),
|
|
11558
|
+
};
|
|
11559
|
+
};
|
|
11560
|
+
const serializeAws_json1_1ClarifyFeatureHeaders = (input, context) => {
|
|
11561
|
+
return input
|
|
11562
|
+
.filter((e) => e != null)
|
|
11563
|
+
.map((entry) => {
|
|
11564
|
+
return entry;
|
|
11565
|
+
});
|
|
11566
|
+
};
|
|
11567
|
+
const serializeAws_json1_1ClarifyFeatureTypes = (input, context) => {
|
|
11568
|
+
return input
|
|
11569
|
+
.filter((e) => e != null)
|
|
11570
|
+
.map((entry) => {
|
|
11571
|
+
return entry;
|
|
11572
|
+
});
|
|
11573
|
+
};
|
|
11574
|
+
const serializeAws_json1_1ClarifyInferenceConfig = (input, context) => {
|
|
11575
|
+
return {
|
|
11576
|
+
...(input.ContentTemplate != null && { ContentTemplate: input.ContentTemplate }),
|
|
11577
|
+
...(input.FeatureHeaders != null && {
|
|
11578
|
+
FeatureHeaders: serializeAws_json1_1ClarifyFeatureHeaders(input.FeatureHeaders, context),
|
|
11579
|
+
}),
|
|
11580
|
+
...(input.FeatureTypes != null && {
|
|
11581
|
+
FeatureTypes: serializeAws_json1_1ClarifyFeatureTypes(input.FeatureTypes, context),
|
|
11582
|
+
}),
|
|
11583
|
+
...(input.FeaturesAttribute != null && { FeaturesAttribute: input.FeaturesAttribute }),
|
|
11584
|
+
...(input.LabelAttribute != null && { LabelAttribute: input.LabelAttribute }),
|
|
11585
|
+
...(input.LabelHeaders != null && {
|
|
11586
|
+
LabelHeaders: serializeAws_json1_1ClarifyLabelHeaders(input.LabelHeaders, context),
|
|
11587
|
+
}),
|
|
11588
|
+
...(input.LabelIndex != null && { LabelIndex: input.LabelIndex }),
|
|
11589
|
+
...(input.MaxPayloadInMB != null && { MaxPayloadInMB: input.MaxPayloadInMB }),
|
|
11590
|
+
...(input.MaxRecordCount != null && { MaxRecordCount: input.MaxRecordCount }),
|
|
11591
|
+
...(input.ProbabilityAttribute != null && { ProbabilityAttribute: input.ProbabilityAttribute }),
|
|
11592
|
+
...(input.ProbabilityIndex != null && { ProbabilityIndex: input.ProbabilityIndex }),
|
|
11593
|
+
};
|
|
11594
|
+
};
|
|
11595
|
+
const serializeAws_json1_1ClarifyLabelHeaders = (input, context) => {
|
|
11596
|
+
return input
|
|
11597
|
+
.filter((e) => e != null)
|
|
11598
|
+
.map((entry) => {
|
|
11599
|
+
return entry;
|
|
11600
|
+
});
|
|
11601
|
+
};
|
|
11602
|
+
const serializeAws_json1_1ClarifyShapBaselineConfig = (input, context) => {
|
|
11603
|
+
return {
|
|
11604
|
+
...(input.MimeType != null && { MimeType: input.MimeType }),
|
|
11605
|
+
...(input.ShapBaseline != null && { ShapBaseline: input.ShapBaseline }),
|
|
11606
|
+
...(input.ShapBaselineUri != null && { ShapBaselineUri: input.ShapBaselineUri }),
|
|
11607
|
+
};
|
|
11608
|
+
};
|
|
11609
|
+
const serializeAws_json1_1ClarifyShapConfig = (input, context) => {
|
|
11610
|
+
return {
|
|
11611
|
+
...(input.NumberOfSamples != null && { NumberOfSamples: input.NumberOfSamples }),
|
|
11612
|
+
...(input.Seed != null && { Seed: input.Seed }),
|
|
11613
|
+
...(input.ShapBaselineConfig != null && {
|
|
11614
|
+
ShapBaselineConfig: serializeAws_json1_1ClarifyShapBaselineConfig(input.ShapBaselineConfig, context),
|
|
11615
|
+
}),
|
|
11616
|
+
...(input.TextConfig != null && { TextConfig: serializeAws_json1_1ClarifyTextConfig(input.TextConfig, context) }),
|
|
11617
|
+
...(input.UseLogit != null && { UseLogit: input.UseLogit }),
|
|
11618
|
+
};
|
|
11619
|
+
};
|
|
11620
|
+
const serializeAws_json1_1ClarifyTextConfig = (input, context) => {
|
|
11621
|
+
return {
|
|
11622
|
+
...(input.Granularity != null && { Granularity: input.Granularity }),
|
|
11623
|
+
...(input.Language != null && { Language: input.Language }),
|
|
11624
|
+
};
|
|
11625
|
+
};
|
|
11551
11626
|
const serializeAws_json1_1CognitoConfig = (input, context) => {
|
|
11552
11627
|
return {
|
|
11553
11628
|
...(input.ClientId != null && { ClientId: input.ClientId }),
|
|
@@ -11896,6 +11971,9 @@ const serializeAws_json1_1CreateEndpointConfigInput = (input, context) => {
|
|
|
11896
11971
|
DataCaptureConfig: serializeAws_json1_1DataCaptureConfig(input.DataCaptureConfig, context),
|
|
11897
11972
|
}),
|
|
11898
11973
|
...(input.EndpointConfigName != null && { EndpointConfigName: input.EndpointConfigName }),
|
|
11974
|
+
...(input.ExplainerConfig != null && {
|
|
11975
|
+
ExplainerConfig: serializeAws_json1_1ExplainerConfig(input.ExplainerConfig, context),
|
|
11976
|
+
}),
|
|
11899
11977
|
...(input.KmsKeyId != null && { KmsKeyId: input.KmsKeyId }),
|
|
11900
11978
|
...(input.ProductionVariants != null && {
|
|
11901
11979
|
ProductionVariants: serializeAws_json1_1ProductionVariantList(input.ProductionVariants, context),
|
|
@@ -13390,6 +13468,13 @@ const serializeAws_json1_1Explainability = (input, context) => {
|
|
|
13390
13468
|
...(input.Report != null && { Report: serializeAws_json1_1MetricsSource(input.Report, context) }),
|
|
13391
13469
|
};
|
|
13392
13470
|
};
|
|
13471
|
+
const serializeAws_json1_1ExplainerConfig = (input, context) => {
|
|
13472
|
+
return {
|
|
13473
|
+
...(input.ClarifyExplainerConfig != null && {
|
|
13474
|
+
ClarifyExplainerConfig: serializeAws_json1_1ClarifyExplainerConfig(input.ClarifyExplainerConfig, context),
|
|
13475
|
+
}),
|
|
13476
|
+
};
|
|
13477
|
+
};
|
|
13393
13478
|
const serializeAws_json1_1FeatureAdditions = (input, context) => {
|
|
13394
13479
|
return input
|
|
13395
13480
|
.filter((e) => e != null)
|
|
@@ -14822,6 +14907,7 @@ const serializeAws_json1_1ListTrainingJobsRequest = (input, context) => {
|
|
|
14822
14907
|
...(input.SortBy != null && { SortBy: input.SortBy }),
|
|
14823
14908
|
...(input.SortOrder != null && { SortOrder: input.SortOrder }),
|
|
14824
14909
|
...(input.StatusEquals != null && { StatusEquals: input.StatusEquals }),
|
|
14910
|
+
...(input.WarmPoolStatusEquals != null && { WarmPoolStatusEquals: input.WarmPoolStatusEquals }),
|
|
14825
14911
|
};
|
|
14826
14912
|
};
|
|
14827
14913
|
const serializeAws_json1_1ListTransformJobsRequest = (input, context) => {
|
|
@@ -15979,10 +16065,16 @@ const serializeAws_json1_1ResourceConfig = (input, context) => {
|
|
|
15979
16065
|
InstanceGroups: serializeAws_json1_1InstanceGroups(input.InstanceGroups, context),
|
|
15980
16066
|
}),
|
|
15981
16067
|
...(input.InstanceType != null && { InstanceType: input.InstanceType }),
|
|
16068
|
+
...(input.KeepAlivePeriodInSeconds != null && { KeepAlivePeriodInSeconds: input.KeepAlivePeriodInSeconds }),
|
|
15982
16069
|
...(input.VolumeKmsKeyId != null && { VolumeKmsKeyId: input.VolumeKmsKeyId }),
|
|
15983
16070
|
...(input.VolumeSizeInGB != null && { VolumeSizeInGB: input.VolumeSizeInGB }),
|
|
15984
16071
|
};
|
|
15985
16072
|
};
|
|
16073
|
+
const serializeAws_json1_1ResourceConfigForUpdate = (input, context) => {
|
|
16074
|
+
return {
|
|
16075
|
+
...(input.KeepAlivePeriodInSeconds != null && { KeepAlivePeriodInSeconds: input.KeepAlivePeriodInSeconds }),
|
|
16076
|
+
};
|
|
16077
|
+
};
|
|
15986
16078
|
const serializeAws_json1_1ResourceLimits = (input, context) => {
|
|
15987
16079
|
return {
|
|
15988
16080
|
...(input.MaxNumberOfTrainingJobs != null && { MaxNumberOfTrainingJobs: input.MaxNumberOfTrainingJobs }),
|
|
@@ -16847,6 +16939,9 @@ const serializeAws_json1_1UpdateTrainingJobRequest = (input, context) => {
|
|
|
16847
16939
|
...(input.ProfilerRuleConfigurations != null && {
|
|
16848
16940
|
ProfilerRuleConfigurations: serializeAws_json1_1ProfilerRuleConfigurations(input.ProfilerRuleConfigurations, context),
|
|
16849
16941
|
}),
|
|
16942
|
+
...(input.ResourceConfig != null && {
|
|
16943
|
+
ResourceConfig: serializeAws_json1_1ResourceConfigForUpdate(input.ResourceConfig, context),
|
|
16944
|
+
}),
|
|
16850
16945
|
...(input.TrainingJobName != null && { TrainingJobName: input.TrainingJobName }),
|
|
16851
16946
|
};
|
|
16852
16947
|
};
|
|
@@ -17870,6 +17965,89 @@ const deserializeAws_json1_1ClarifyCheckStepMetadata = (output, context) => {
|
|
|
17870
17965
|
ViolationReport: (0, smithy_client_1.expectString)(output.ViolationReport),
|
|
17871
17966
|
};
|
|
17872
17967
|
};
|
|
17968
|
+
const deserializeAws_json1_1ClarifyExplainerConfig = (output, context) => {
|
|
17969
|
+
return {
|
|
17970
|
+
EnableExplanations: (0, smithy_client_1.expectString)(output.EnableExplanations),
|
|
17971
|
+
InferenceConfig: output.InferenceConfig != null
|
|
17972
|
+
? deserializeAws_json1_1ClarifyInferenceConfig(output.InferenceConfig, context)
|
|
17973
|
+
: undefined,
|
|
17974
|
+
ShapConfig: output.ShapConfig != null ? deserializeAws_json1_1ClarifyShapConfig(output.ShapConfig, context) : undefined,
|
|
17975
|
+
};
|
|
17976
|
+
};
|
|
17977
|
+
const deserializeAws_json1_1ClarifyFeatureHeaders = (output, context) => {
|
|
17978
|
+
const retVal = (output || [])
|
|
17979
|
+
.filter((e) => e != null)
|
|
17980
|
+
.map((entry) => {
|
|
17981
|
+
if (entry === null) {
|
|
17982
|
+
return null;
|
|
17983
|
+
}
|
|
17984
|
+
return (0, smithy_client_1.expectString)(entry);
|
|
17985
|
+
});
|
|
17986
|
+
return retVal;
|
|
17987
|
+
};
|
|
17988
|
+
const deserializeAws_json1_1ClarifyFeatureTypes = (output, context) => {
|
|
17989
|
+
const retVal = (output || [])
|
|
17990
|
+
.filter((e) => e != null)
|
|
17991
|
+
.map((entry) => {
|
|
17992
|
+
if (entry === null) {
|
|
17993
|
+
return null;
|
|
17994
|
+
}
|
|
17995
|
+
return (0, smithy_client_1.expectString)(entry);
|
|
17996
|
+
});
|
|
17997
|
+
return retVal;
|
|
17998
|
+
};
|
|
17999
|
+
const deserializeAws_json1_1ClarifyInferenceConfig = (output, context) => {
|
|
18000
|
+
return {
|
|
18001
|
+
ContentTemplate: (0, smithy_client_1.expectString)(output.ContentTemplate),
|
|
18002
|
+
FeatureHeaders: output.FeatureHeaders != null
|
|
18003
|
+
? deserializeAws_json1_1ClarifyFeatureHeaders(output.FeatureHeaders, context)
|
|
18004
|
+
: undefined,
|
|
18005
|
+
FeatureTypes: output.FeatureTypes != null ? deserializeAws_json1_1ClarifyFeatureTypes(output.FeatureTypes, context) : undefined,
|
|
18006
|
+
FeaturesAttribute: (0, smithy_client_1.expectString)(output.FeaturesAttribute),
|
|
18007
|
+
LabelAttribute: (0, smithy_client_1.expectString)(output.LabelAttribute),
|
|
18008
|
+
LabelHeaders: output.LabelHeaders != null ? deserializeAws_json1_1ClarifyLabelHeaders(output.LabelHeaders, context) : undefined,
|
|
18009
|
+
LabelIndex: (0, smithy_client_1.expectInt32)(output.LabelIndex),
|
|
18010
|
+
MaxPayloadInMB: (0, smithy_client_1.expectInt32)(output.MaxPayloadInMB),
|
|
18011
|
+
MaxRecordCount: (0, smithy_client_1.expectInt32)(output.MaxRecordCount),
|
|
18012
|
+
ProbabilityAttribute: (0, smithy_client_1.expectString)(output.ProbabilityAttribute),
|
|
18013
|
+
ProbabilityIndex: (0, smithy_client_1.expectInt32)(output.ProbabilityIndex),
|
|
18014
|
+
};
|
|
18015
|
+
};
|
|
18016
|
+
const deserializeAws_json1_1ClarifyLabelHeaders = (output, context) => {
|
|
18017
|
+
const retVal = (output || [])
|
|
18018
|
+
.filter((e) => e != null)
|
|
18019
|
+
.map((entry) => {
|
|
18020
|
+
if (entry === null) {
|
|
18021
|
+
return null;
|
|
18022
|
+
}
|
|
18023
|
+
return (0, smithy_client_1.expectString)(entry);
|
|
18024
|
+
});
|
|
18025
|
+
return retVal;
|
|
18026
|
+
};
|
|
18027
|
+
const deserializeAws_json1_1ClarifyShapBaselineConfig = (output, context) => {
|
|
18028
|
+
return {
|
|
18029
|
+
MimeType: (0, smithy_client_1.expectString)(output.MimeType),
|
|
18030
|
+
ShapBaseline: (0, smithy_client_1.expectString)(output.ShapBaseline),
|
|
18031
|
+
ShapBaselineUri: (0, smithy_client_1.expectString)(output.ShapBaselineUri),
|
|
18032
|
+
};
|
|
18033
|
+
};
|
|
18034
|
+
const deserializeAws_json1_1ClarifyShapConfig = (output, context) => {
|
|
18035
|
+
return {
|
|
18036
|
+
NumberOfSamples: (0, smithy_client_1.expectInt32)(output.NumberOfSamples),
|
|
18037
|
+
Seed: (0, smithy_client_1.expectInt32)(output.Seed),
|
|
18038
|
+
ShapBaselineConfig: output.ShapBaselineConfig != null
|
|
18039
|
+
? deserializeAws_json1_1ClarifyShapBaselineConfig(output.ShapBaselineConfig, context)
|
|
18040
|
+
: undefined,
|
|
18041
|
+
TextConfig: output.TextConfig != null ? deserializeAws_json1_1ClarifyTextConfig(output.TextConfig, context) : undefined,
|
|
18042
|
+
UseLogit: (0, smithy_client_1.expectBoolean)(output.UseLogit),
|
|
18043
|
+
};
|
|
18044
|
+
};
|
|
18045
|
+
const deserializeAws_json1_1ClarifyTextConfig = (output, context) => {
|
|
18046
|
+
return {
|
|
18047
|
+
Granularity: (0, smithy_client_1.expectString)(output.Granularity),
|
|
18048
|
+
Language: (0, smithy_client_1.expectString)(output.Language),
|
|
18049
|
+
};
|
|
18050
|
+
};
|
|
17873
18051
|
const deserializeAws_json1_1CodeRepositorySummary = (output, context) => {
|
|
17874
18052
|
return {
|
|
17875
18053
|
CodeRepositoryArn: (0, smithy_client_1.expectString)(output.CodeRepositoryArn),
|
|
@@ -19017,6 +19195,9 @@ const deserializeAws_json1_1DescribeEndpointConfigOutput = (output, context) =>
|
|
|
19017
19195
|
: undefined,
|
|
19018
19196
|
EndpointConfigArn: (0, smithy_client_1.expectString)(output.EndpointConfigArn),
|
|
19019
19197
|
EndpointConfigName: (0, smithy_client_1.expectString)(output.EndpointConfigName),
|
|
19198
|
+
ExplainerConfig: output.ExplainerConfig != null
|
|
19199
|
+
? deserializeAws_json1_1ExplainerConfig(output.ExplainerConfig, context)
|
|
19200
|
+
: undefined,
|
|
19020
19201
|
KmsKeyId: (0, smithy_client_1.expectString)(output.KmsKeyId),
|
|
19021
19202
|
ProductionVariants: output.ProductionVariants != null
|
|
19022
19203
|
? deserializeAws_json1_1ProductionVariantList(output.ProductionVariants, context)
|
|
@@ -19038,6 +19219,9 @@ const deserializeAws_json1_1DescribeEndpointOutput = (output, context) => {
|
|
|
19038
19219
|
EndpointConfigName: (0, smithy_client_1.expectString)(output.EndpointConfigName),
|
|
19039
19220
|
EndpointName: (0, smithy_client_1.expectString)(output.EndpointName),
|
|
19040
19221
|
EndpointStatus: (0, smithy_client_1.expectString)(output.EndpointStatus),
|
|
19222
|
+
ExplainerConfig: output.ExplainerConfig != null
|
|
19223
|
+
? deserializeAws_json1_1ExplainerConfig(output.ExplainerConfig, context)
|
|
19224
|
+
: undefined,
|
|
19041
19225
|
FailureReason: (0, smithy_client_1.expectString)(output.FailureReason),
|
|
19042
19226
|
LastDeploymentConfig: output.LastDeploymentConfig != null
|
|
19043
19227
|
? deserializeAws_json1_1DeploymentConfig(output.LastDeploymentConfig, context)
|
|
@@ -19789,6 +19973,7 @@ const deserializeAws_json1_1DescribeTrainingJobResponse = (output, context) => {
|
|
|
19789
19973
|
TrainingTimeInSeconds: (0, smithy_client_1.expectInt32)(output.TrainingTimeInSeconds),
|
|
19790
19974
|
TuningJobArn: (0, smithy_client_1.expectString)(output.TuningJobArn),
|
|
19791
19975
|
VpcConfig: output.VpcConfig != null ? deserializeAws_json1_1VpcConfig(output.VpcConfig, context) : undefined,
|
|
19976
|
+
WarmPoolStatus: output.WarmPoolStatus != null ? deserializeAws_json1_1WarmPoolStatus(output.WarmPoolStatus, context) : undefined,
|
|
19792
19977
|
};
|
|
19793
19978
|
};
|
|
19794
19979
|
const deserializeAws_json1_1DescribeTransformJobResponse = (output, context) => {
|
|
@@ -20521,6 +20706,13 @@ const deserializeAws_json1_1Explainability = (output, context) => {
|
|
|
20521
20706
|
Report: output.Report != null ? deserializeAws_json1_1MetricsSource(output.Report, context) : undefined,
|
|
20522
20707
|
};
|
|
20523
20708
|
};
|
|
20709
|
+
const deserializeAws_json1_1ExplainerConfig = (output, context) => {
|
|
20710
|
+
return {
|
|
20711
|
+
ClarifyExplainerConfig: output.ClarifyExplainerConfig != null
|
|
20712
|
+
? deserializeAws_json1_1ClarifyExplainerConfig(output.ClarifyExplainerConfig, context)
|
|
20713
|
+
: undefined,
|
|
20714
|
+
};
|
|
20715
|
+
};
|
|
20524
20716
|
const deserializeAws_json1_1FailStepMetadata = (output, context) => {
|
|
20525
20717
|
return {
|
|
20526
20718
|
ErrorMessage: (0, smithy_client_1.expectString)(output.ErrorMessage),
|
|
@@ -24006,6 +24198,7 @@ const deserializeAws_json1_1ResourceConfig = (output, context) => {
|
|
|
24006
24198
|
InstanceCount: (0, smithy_client_1.expectInt32)(output.InstanceCount),
|
|
24007
24199
|
InstanceGroups: output.InstanceGroups != null ? deserializeAws_json1_1InstanceGroups(output.InstanceGroups, context) : undefined,
|
|
24008
24200
|
InstanceType: (0, smithy_client_1.expectString)(output.InstanceType),
|
|
24201
|
+
KeepAlivePeriodInSeconds: (0, smithy_client_1.expectInt32)(output.KeepAlivePeriodInSeconds),
|
|
24009
24202
|
VolumeKmsKeyId: (0, smithy_client_1.expectString)(output.VolumeKmsKeyId),
|
|
24010
24203
|
VolumeSizeInGB: (0, smithy_client_1.expectInt32)(output.VolumeSizeInGB),
|
|
24011
24204
|
};
|
|
@@ -24552,6 +24745,7 @@ const deserializeAws_json1_1TrainingJobSummary = (output, context) => {
|
|
|
24552
24745
|
TrainingJobArn: (0, smithy_client_1.expectString)(output.TrainingJobArn),
|
|
24553
24746
|
TrainingJobName: (0, smithy_client_1.expectString)(output.TrainingJobName),
|
|
24554
24747
|
TrainingJobStatus: (0, smithy_client_1.expectString)(output.TrainingJobStatus),
|
|
24748
|
+
WarmPoolStatus: output.WarmPoolStatus != null ? deserializeAws_json1_1WarmPoolStatus(output.WarmPoolStatus, context) : undefined,
|
|
24555
24749
|
};
|
|
24556
24750
|
};
|
|
24557
24751
|
const deserializeAws_json1_1TrainingSpecification = (output, context) => {
|
|
@@ -25197,6 +25391,13 @@ const deserializeAws_json1_1VpcSecurityGroupIds = (output, context) => {
|
|
|
25197
25391
|
});
|
|
25198
25392
|
return retVal;
|
|
25199
25393
|
};
|
|
25394
|
+
const deserializeAws_json1_1WarmPoolStatus = (output, context) => {
|
|
25395
|
+
return {
|
|
25396
|
+
ResourceRetainedBillableTimeInSeconds: (0, smithy_client_1.expectInt32)(output.ResourceRetainedBillableTimeInSeconds),
|
|
25397
|
+
ReusedByJob: (0, smithy_client_1.expectString)(output.ReusedByJob),
|
|
25398
|
+
Status: (0, smithy_client_1.expectString)(output.Status),
|
|
25399
|
+
};
|
|
25400
|
+
};
|
|
25200
25401
|
const deserializeAws_json1_1Workforce = (output, context) => {
|
|
25201
25402
|
return {
|
|
25202
25403
|
CognitoConfig: output.CognitoConfig != null ? deserializeAws_json1_1CognitoConfig(output.CognitoConfig, context) : undefined,
|
|
@@ -25332,6 +25533,12 @@ const parseBody = (streamBody, context) => collectBodyString(streamBody, context
|
|
|
25332
25533
|
}
|
|
25333
25534
|
return {};
|
|
25334
25535
|
});
|
|
25536
|
+
const parseErrorBody = async (errorBody, context) => {
|
|
25537
|
+
var _a;
|
|
25538
|
+
const value = await parseBody(errorBody, context);
|
|
25539
|
+
value.message = (_a = value.message) !== null && _a !== void 0 ? _a : value.Message;
|
|
25540
|
+
return value;
|
|
25541
|
+
};
|
|
25335
25542
|
const loadRestJsonErrorCode = (output, data) => {
|
|
25336
25543
|
const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
|
|
25337
25544
|
const sanitizeErrorCode = (rawValue) => {
|