1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
/// Operation shape for `DescribeEntitiesDetectionV2Job`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`describe_entities_detection_v2_job`](crate::client::Client::describe_entities_detection_v2_job).
///
/// See [`crate::client::fluent_builders::DescribeEntitiesDetectionV2Job`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct DescribeEntitiesDetectionV2Job {
    _private: (),
}
impl DescribeEntitiesDetectionV2Job {
    /// Creates a new builder-style object to manufacture [`DescribeEntitiesDetectionV2JobInput`](crate::input::DescribeEntitiesDetectionV2JobInput)
    pub fn builder() -> crate::input::describe_entities_detection_v2_job_input::Builder {
        crate::input::describe_entities_detection_v2_job_input::Builder::default()
    }
    /// Creates a new `DescribeEntitiesDetectionV2Job` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for DescribeEntitiesDetectionV2Job {
    type Output = std::result::Result<
        crate::output::DescribeEntitiesDetectionV2JobOutput,
        crate::error::DescribeEntitiesDetectionV2JobError,
    >;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_describe_entities_detection_v2_job_error(response)
        } else {
            crate::operation_deser::parse_describe_entities_detection_v2_job_response(response)
        }
    }
}

/// Operation shape for `DescribeICD10CMInferenceJob`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`describe_icd10_cm_inference_job`](crate::client::Client::describe_icd10_cm_inference_job).
///
/// See [`crate::client::fluent_builders::DescribeICD10CMInferenceJob`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct DescribeICD10CMInferenceJob {
    _private: (),
}
impl DescribeICD10CMInferenceJob {
    /// Creates a new builder-style object to manufacture [`DescribeIcd10CmInferenceJobInput`](crate::input::DescribeIcd10CmInferenceJobInput)
    pub fn builder() -> crate::input::describe_icd10_cm_inference_job_input::Builder {
        crate::input::describe_icd10_cm_inference_job_input::Builder::default()
    }
    /// Creates a new `DescribeICD10CMInferenceJob` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for DescribeICD10CMInferenceJob {
    type Output = std::result::Result<
        crate::output::DescribeIcd10CmInferenceJobOutput,
        crate::error::DescribeICD10CMInferenceJobError,
    >;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_describe_icd10_cm_inference_job_error(response)
        } else {
            crate::operation_deser::parse_describe_icd10_cm_inference_job_response(response)
        }
    }
}

/// Operation shape for `DescribePHIDetectionJob`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`describe_phi_detection_job`](crate::client::Client::describe_phi_detection_job).
///
/// See [`crate::client::fluent_builders::DescribePHIDetectionJob`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct DescribePHIDetectionJob {
    _private: (),
}
impl DescribePHIDetectionJob {
    /// Creates a new builder-style object to manufacture [`DescribePhiDetectionJobInput`](crate::input::DescribePhiDetectionJobInput)
    pub fn builder() -> crate::input::describe_phi_detection_job_input::Builder {
        crate::input::describe_phi_detection_job_input::Builder::default()
    }
    /// Creates a new `DescribePHIDetectionJob` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for DescribePHIDetectionJob {
    type Output = std::result::Result<
        crate::output::DescribePhiDetectionJobOutput,
        crate::error::DescribePHIDetectionJobError,
    >;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_describe_phi_detection_job_error(response)
        } else {
            crate::operation_deser::parse_describe_phi_detection_job_response(response)
        }
    }
}

/// Operation shape for `DescribeRxNormInferenceJob`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`describe_rx_norm_inference_job`](crate::client::Client::describe_rx_norm_inference_job).
///
/// See [`crate::client::fluent_builders::DescribeRxNormInferenceJob`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct DescribeRxNormInferenceJob {
    _private: (),
}
impl DescribeRxNormInferenceJob {
    /// Creates a new builder-style object to manufacture [`DescribeRxNormInferenceJobInput`](crate::input::DescribeRxNormInferenceJobInput)
    pub fn builder() -> crate::input::describe_rx_norm_inference_job_input::Builder {
        crate::input::describe_rx_norm_inference_job_input::Builder::default()
    }
    /// Creates a new `DescribeRxNormInferenceJob` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for DescribeRxNormInferenceJob {
    type Output = std::result::Result<
        crate::output::DescribeRxNormInferenceJobOutput,
        crate::error::DescribeRxNormInferenceJobError,
    >;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_describe_rx_norm_inference_job_error(response)
        } else {
            crate::operation_deser::parse_describe_rx_norm_inference_job_response(response)
        }
    }
}

/// Operation shape for `DescribeSNOMEDCTInferenceJob`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`describe_snomedct_inference_job`](crate::client::Client::describe_snomedct_inference_job).
///
/// See [`crate::client::fluent_builders::DescribeSNOMEDCTInferenceJob`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct DescribeSNOMEDCTInferenceJob {
    _private: (),
}
impl DescribeSNOMEDCTInferenceJob {
    /// Creates a new builder-style object to manufacture [`DescribeSnomedctInferenceJobInput`](crate::input::DescribeSnomedctInferenceJobInput)
    pub fn builder() -> crate::input::describe_snomedct_inference_job_input::Builder {
        crate::input::describe_snomedct_inference_job_input::Builder::default()
    }
    /// Creates a new `DescribeSNOMEDCTInferenceJob` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for DescribeSNOMEDCTInferenceJob {
    type Output = std::result::Result<
        crate::output::DescribeSnomedctInferenceJobOutput,
        crate::error::DescribeSNOMEDCTInferenceJobError,
    >;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_describe_snomedct_inference_job_error(response)
        } else {
            crate::operation_deser::parse_describe_snomedct_inference_job_response(response)
        }
    }
}

/// Operation shape for `DetectEntities`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`detect_entities`](crate::client::Client::detect_entities).
///
/// See [`crate::client::fluent_builders::DetectEntities`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct DetectEntities {
    _private: (),
}
impl DetectEntities {
    /// Creates a new builder-style object to manufacture [`DetectEntitiesInput`](crate::input::DetectEntitiesInput)
    pub fn builder() -> crate::input::detect_entities_input::Builder {
        crate::input::detect_entities_input::Builder::default()
    }
    /// Creates a new `DetectEntities` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for DetectEntities {
    type Output =
        std::result::Result<crate::output::DetectEntitiesOutput, crate::error::DetectEntitiesError>;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_detect_entities_error(response)
        } else {
            crate::operation_deser::parse_detect_entities_response(response)
        }
    }
}

/// Operation shape for `DetectEntitiesV2`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`detect_entities_v2`](crate::client::Client::detect_entities_v2).
///
/// See [`crate::client::fluent_builders::DetectEntitiesV2`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct DetectEntitiesV2 {
    _private: (),
}
impl DetectEntitiesV2 {
    /// Creates a new builder-style object to manufacture [`DetectEntitiesV2Input`](crate::input::DetectEntitiesV2Input)
    pub fn builder() -> crate::input::detect_entities_v2_input::Builder {
        crate::input::detect_entities_v2_input::Builder::default()
    }
    /// Creates a new `DetectEntitiesV2` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for DetectEntitiesV2 {
    type Output = std::result::Result<
        crate::output::DetectEntitiesV2Output,
        crate::error::DetectEntitiesV2Error,
    >;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_detect_entities_v2_error(response)
        } else {
            crate::operation_deser::parse_detect_entities_v2_response(response)
        }
    }
}

/// Operation shape for `DetectPHI`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`detect_phi`](crate::client::Client::detect_phi).
///
/// See [`crate::client::fluent_builders::DetectPHI`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct DetectPHI {
    _private: (),
}
impl DetectPHI {
    /// Creates a new builder-style object to manufacture [`DetectPhiInput`](crate::input::DetectPhiInput)
    pub fn builder() -> crate::input::detect_phi_input::Builder {
        crate::input::detect_phi_input::Builder::default()
    }
    /// Creates a new `DetectPHI` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for DetectPHI {
    type Output = std::result::Result<crate::output::DetectPhiOutput, crate::error::DetectPHIError>;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_detect_phi_error(response)
        } else {
            crate::operation_deser::parse_detect_phi_response(response)
        }
    }
}

/// Operation shape for `InferICD10CM`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`infer_icd10_cm`](crate::client::Client::infer_icd10_cm).
///
/// See [`crate::client::fluent_builders::InferICD10CM`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct InferICD10CM {
    _private: (),
}
impl InferICD10CM {
    /// Creates a new builder-style object to manufacture [`InferIcd10CmInput`](crate::input::InferIcd10CmInput)
    pub fn builder() -> crate::input::infer_icd10_cm_input::Builder {
        crate::input::infer_icd10_cm_input::Builder::default()
    }
    /// Creates a new `InferICD10CM` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for InferICD10CM {
    type Output =
        std::result::Result<crate::output::InferIcd10CmOutput, crate::error::InferICD10CMError>;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_infer_icd10_cm_error(response)
        } else {
            crate::operation_deser::parse_infer_icd10_cm_response(response)
        }
    }
}

/// Operation shape for `InferRxNorm`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`infer_rx_norm`](crate::client::Client::infer_rx_norm).
///
/// See [`crate::client::fluent_builders::InferRxNorm`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct InferRxNorm {
    _private: (),
}
impl InferRxNorm {
    /// Creates a new builder-style object to manufacture [`InferRxNormInput`](crate::input::InferRxNormInput)
    pub fn builder() -> crate::input::infer_rx_norm_input::Builder {
        crate::input::infer_rx_norm_input::Builder::default()
    }
    /// Creates a new `InferRxNorm` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for InferRxNorm {
    type Output =
        std::result::Result<crate::output::InferRxNormOutput, crate::error::InferRxNormError>;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_infer_rx_norm_error(response)
        } else {
            crate::operation_deser::parse_infer_rx_norm_response(response)
        }
    }
}

/// Operation shape for `InferSNOMEDCT`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`infer_snomedct`](crate::client::Client::infer_snomedct).
///
/// See [`crate::client::fluent_builders::InferSNOMEDCT`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct InferSNOMEDCT {
    _private: (),
}
impl InferSNOMEDCT {
    /// Creates a new builder-style object to manufacture [`InferSnomedctInput`](crate::input::InferSnomedctInput)
    pub fn builder() -> crate::input::infer_snomedct_input::Builder {
        crate::input::infer_snomedct_input::Builder::default()
    }
    /// Creates a new `InferSNOMEDCT` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for InferSNOMEDCT {
    type Output =
        std::result::Result<crate::output::InferSnomedctOutput, crate::error::InferSNOMEDCTError>;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_infer_snomedct_error(response)
        } else {
            crate::operation_deser::parse_infer_snomedct_response(response)
        }
    }
}

/// Operation shape for `ListEntitiesDetectionV2Jobs`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`list_entities_detection_v2_jobs`](crate::client::Client::list_entities_detection_v2_jobs).
///
/// See [`crate::client::fluent_builders::ListEntitiesDetectionV2Jobs`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct ListEntitiesDetectionV2Jobs {
    _private: (),
}
impl ListEntitiesDetectionV2Jobs {
    /// Creates a new builder-style object to manufacture [`ListEntitiesDetectionV2JobsInput`](crate::input::ListEntitiesDetectionV2JobsInput)
    pub fn builder() -> crate::input::list_entities_detection_v2_jobs_input::Builder {
        crate::input::list_entities_detection_v2_jobs_input::Builder::default()
    }
    /// Creates a new `ListEntitiesDetectionV2Jobs` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for ListEntitiesDetectionV2Jobs {
    type Output = std::result::Result<
        crate::output::ListEntitiesDetectionV2JobsOutput,
        crate::error::ListEntitiesDetectionV2JobsError,
    >;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_list_entities_detection_v2_jobs_error(response)
        } else {
            crate::operation_deser::parse_list_entities_detection_v2_jobs_response(response)
        }
    }
}

/// Operation shape for `ListICD10CMInferenceJobs`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`list_icd10_cm_inference_jobs`](crate::client::Client::list_icd10_cm_inference_jobs).
///
/// See [`crate::client::fluent_builders::ListICD10CMInferenceJobs`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct ListICD10CMInferenceJobs {
    _private: (),
}
impl ListICD10CMInferenceJobs {
    /// Creates a new builder-style object to manufacture [`ListIcd10CmInferenceJobsInput`](crate::input::ListIcd10CmInferenceJobsInput)
    pub fn builder() -> crate::input::list_icd10_cm_inference_jobs_input::Builder {
        crate::input::list_icd10_cm_inference_jobs_input::Builder::default()
    }
    /// Creates a new `ListICD10CMInferenceJobs` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for ListICD10CMInferenceJobs {
    type Output = std::result::Result<
        crate::output::ListIcd10CmInferenceJobsOutput,
        crate::error::ListICD10CMInferenceJobsError,
    >;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_list_icd10_cm_inference_jobs_error(response)
        } else {
            crate::operation_deser::parse_list_icd10_cm_inference_jobs_response(response)
        }
    }
}

/// Operation shape for `ListPHIDetectionJobs`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`list_phi_detection_jobs`](crate::client::Client::list_phi_detection_jobs).
///
/// See [`crate::client::fluent_builders::ListPHIDetectionJobs`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct ListPHIDetectionJobs {
    _private: (),
}
impl ListPHIDetectionJobs {
    /// Creates a new builder-style object to manufacture [`ListPhiDetectionJobsInput`](crate::input::ListPhiDetectionJobsInput)
    pub fn builder() -> crate::input::list_phi_detection_jobs_input::Builder {
        crate::input::list_phi_detection_jobs_input::Builder::default()
    }
    /// Creates a new `ListPHIDetectionJobs` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for ListPHIDetectionJobs {
    type Output = std::result::Result<
        crate::output::ListPhiDetectionJobsOutput,
        crate::error::ListPHIDetectionJobsError,
    >;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_list_phi_detection_jobs_error(response)
        } else {
            crate::operation_deser::parse_list_phi_detection_jobs_response(response)
        }
    }
}

/// Operation shape for `ListRxNormInferenceJobs`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`list_rx_norm_inference_jobs`](crate::client::Client::list_rx_norm_inference_jobs).
///
/// See [`crate::client::fluent_builders::ListRxNormInferenceJobs`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct ListRxNormInferenceJobs {
    _private: (),
}
impl ListRxNormInferenceJobs {
    /// Creates a new builder-style object to manufacture [`ListRxNormInferenceJobsInput`](crate::input::ListRxNormInferenceJobsInput)
    pub fn builder() -> crate::input::list_rx_norm_inference_jobs_input::Builder {
        crate::input::list_rx_norm_inference_jobs_input::Builder::default()
    }
    /// Creates a new `ListRxNormInferenceJobs` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for ListRxNormInferenceJobs {
    type Output = std::result::Result<
        crate::output::ListRxNormInferenceJobsOutput,
        crate::error::ListRxNormInferenceJobsError,
    >;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_list_rx_norm_inference_jobs_error(response)
        } else {
            crate::operation_deser::parse_list_rx_norm_inference_jobs_response(response)
        }
    }
}

/// Operation shape for `ListSNOMEDCTInferenceJobs`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`list_snomedct_inference_jobs`](crate::client::Client::list_snomedct_inference_jobs).
///
/// See [`crate::client::fluent_builders::ListSNOMEDCTInferenceJobs`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct ListSNOMEDCTInferenceJobs {
    _private: (),
}
impl ListSNOMEDCTInferenceJobs {
    /// Creates a new builder-style object to manufacture [`ListSnomedctInferenceJobsInput`](crate::input::ListSnomedctInferenceJobsInput)
    pub fn builder() -> crate::input::list_snomedct_inference_jobs_input::Builder {
        crate::input::list_snomedct_inference_jobs_input::Builder::default()
    }
    /// Creates a new `ListSNOMEDCTInferenceJobs` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for ListSNOMEDCTInferenceJobs {
    type Output = std::result::Result<
        crate::output::ListSnomedctInferenceJobsOutput,
        crate::error::ListSNOMEDCTInferenceJobsError,
    >;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_list_snomedct_inference_jobs_error(response)
        } else {
            crate::operation_deser::parse_list_snomedct_inference_jobs_response(response)
        }
    }
}

/// Operation shape for `StartEntitiesDetectionV2Job`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`start_entities_detection_v2_job`](crate::client::Client::start_entities_detection_v2_job).
///
/// See [`crate::client::fluent_builders::StartEntitiesDetectionV2Job`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct StartEntitiesDetectionV2Job {
    _private: (),
}
impl StartEntitiesDetectionV2Job {
    /// Creates a new builder-style object to manufacture [`StartEntitiesDetectionV2JobInput`](crate::input::StartEntitiesDetectionV2JobInput)
    pub fn builder() -> crate::input::start_entities_detection_v2_job_input::Builder {
        crate::input::start_entities_detection_v2_job_input::Builder::default()
    }
    /// Creates a new `StartEntitiesDetectionV2Job` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for StartEntitiesDetectionV2Job {
    type Output = std::result::Result<
        crate::output::StartEntitiesDetectionV2JobOutput,
        crate::error::StartEntitiesDetectionV2JobError,
    >;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_start_entities_detection_v2_job_error(response)
        } else {
            crate::operation_deser::parse_start_entities_detection_v2_job_response(response)
        }
    }
}

/// Operation shape for `StartICD10CMInferenceJob`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`start_icd10_cm_inference_job`](crate::client::Client::start_icd10_cm_inference_job).
///
/// See [`crate::client::fluent_builders::StartICD10CMInferenceJob`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct StartICD10CMInferenceJob {
    _private: (),
}
impl StartICD10CMInferenceJob {
    /// Creates a new builder-style object to manufacture [`StartIcd10CmInferenceJobInput`](crate::input::StartIcd10CmInferenceJobInput)
    pub fn builder() -> crate::input::start_icd10_cm_inference_job_input::Builder {
        crate::input::start_icd10_cm_inference_job_input::Builder::default()
    }
    /// Creates a new `StartICD10CMInferenceJob` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for StartICD10CMInferenceJob {
    type Output = std::result::Result<
        crate::output::StartIcd10CmInferenceJobOutput,
        crate::error::StartICD10CMInferenceJobError,
    >;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_start_icd10_cm_inference_job_error(response)
        } else {
            crate::operation_deser::parse_start_icd10_cm_inference_job_response(response)
        }
    }
}

/// Operation shape for `StartPHIDetectionJob`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`start_phi_detection_job`](crate::client::Client::start_phi_detection_job).
///
/// See [`crate::client::fluent_builders::StartPHIDetectionJob`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct StartPHIDetectionJob {
    _private: (),
}
impl StartPHIDetectionJob {
    /// Creates a new builder-style object to manufacture [`StartPhiDetectionJobInput`](crate::input::StartPhiDetectionJobInput)
    pub fn builder() -> crate::input::start_phi_detection_job_input::Builder {
        crate::input::start_phi_detection_job_input::Builder::default()
    }
    /// Creates a new `StartPHIDetectionJob` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for StartPHIDetectionJob {
    type Output = std::result::Result<
        crate::output::StartPhiDetectionJobOutput,
        crate::error::StartPHIDetectionJobError,
    >;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_start_phi_detection_job_error(response)
        } else {
            crate::operation_deser::parse_start_phi_detection_job_response(response)
        }
    }
}

/// Operation shape for `StartRxNormInferenceJob`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`start_rx_norm_inference_job`](crate::client::Client::start_rx_norm_inference_job).
///
/// See [`crate::client::fluent_builders::StartRxNormInferenceJob`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct StartRxNormInferenceJob {
    _private: (),
}
impl StartRxNormInferenceJob {
    /// Creates a new builder-style object to manufacture [`StartRxNormInferenceJobInput`](crate::input::StartRxNormInferenceJobInput)
    pub fn builder() -> crate::input::start_rx_norm_inference_job_input::Builder {
        crate::input::start_rx_norm_inference_job_input::Builder::default()
    }
    /// Creates a new `StartRxNormInferenceJob` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for StartRxNormInferenceJob {
    type Output = std::result::Result<
        crate::output::StartRxNormInferenceJobOutput,
        crate::error::StartRxNormInferenceJobError,
    >;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_start_rx_norm_inference_job_error(response)
        } else {
            crate::operation_deser::parse_start_rx_norm_inference_job_response(response)
        }
    }
}

/// Operation shape for `StartSNOMEDCTInferenceJob`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`start_snomedct_inference_job`](crate::client::Client::start_snomedct_inference_job).
///
/// See [`crate::client::fluent_builders::StartSNOMEDCTInferenceJob`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct StartSNOMEDCTInferenceJob {
    _private: (),
}
impl StartSNOMEDCTInferenceJob {
    /// Creates a new builder-style object to manufacture [`StartSnomedctInferenceJobInput`](crate::input::StartSnomedctInferenceJobInput)
    pub fn builder() -> crate::input::start_snomedct_inference_job_input::Builder {
        crate::input::start_snomedct_inference_job_input::Builder::default()
    }
    /// Creates a new `StartSNOMEDCTInferenceJob` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for StartSNOMEDCTInferenceJob {
    type Output = std::result::Result<
        crate::output::StartSnomedctInferenceJobOutput,
        crate::error::StartSNOMEDCTInferenceJobError,
    >;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_start_snomedct_inference_job_error(response)
        } else {
            crate::operation_deser::parse_start_snomedct_inference_job_response(response)
        }
    }
}

/// Operation shape for `StopEntitiesDetectionV2Job`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`stop_entities_detection_v2_job`](crate::client::Client::stop_entities_detection_v2_job).
///
/// See [`crate::client::fluent_builders::StopEntitiesDetectionV2Job`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct StopEntitiesDetectionV2Job {
    _private: (),
}
impl StopEntitiesDetectionV2Job {
    /// Creates a new builder-style object to manufacture [`StopEntitiesDetectionV2JobInput`](crate::input::StopEntitiesDetectionV2JobInput)
    pub fn builder() -> crate::input::stop_entities_detection_v2_job_input::Builder {
        crate::input::stop_entities_detection_v2_job_input::Builder::default()
    }
    /// Creates a new `StopEntitiesDetectionV2Job` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for StopEntitiesDetectionV2Job {
    type Output = std::result::Result<
        crate::output::StopEntitiesDetectionV2JobOutput,
        crate::error::StopEntitiesDetectionV2JobError,
    >;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_stop_entities_detection_v2_job_error(response)
        } else {
            crate::operation_deser::parse_stop_entities_detection_v2_job_response(response)
        }
    }
}

/// Operation shape for `StopICD10CMInferenceJob`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`stop_icd10_cm_inference_job`](crate::client::Client::stop_icd10_cm_inference_job).
///
/// See [`crate::client::fluent_builders::StopICD10CMInferenceJob`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct StopICD10CMInferenceJob {
    _private: (),
}
impl StopICD10CMInferenceJob {
    /// Creates a new builder-style object to manufacture [`StopIcd10CmInferenceJobInput`](crate::input::StopIcd10CmInferenceJobInput)
    pub fn builder() -> crate::input::stop_icd10_cm_inference_job_input::Builder {
        crate::input::stop_icd10_cm_inference_job_input::Builder::default()
    }
    /// Creates a new `StopICD10CMInferenceJob` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for StopICD10CMInferenceJob {
    type Output = std::result::Result<
        crate::output::StopIcd10CmInferenceJobOutput,
        crate::error::StopICD10CMInferenceJobError,
    >;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_stop_icd10_cm_inference_job_error(response)
        } else {
            crate::operation_deser::parse_stop_icd10_cm_inference_job_response(response)
        }
    }
}

/// Operation shape for `StopPHIDetectionJob`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`stop_phi_detection_job`](crate::client::Client::stop_phi_detection_job).
///
/// See [`crate::client::fluent_builders::StopPHIDetectionJob`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct StopPHIDetectionJob {
    _private: (),
}
impl StopPHIDetectionJob {
    /// Creates a new builder-style object to manufacture [`StopPhiDetectionJobInput`](crate::input::StopPhiDetectionJobInput)
    pub fn builder() -> crate::input::stop_phi_detection_job_input::Builder {
        crate::input::stop_phi_detection_job_input::Builder::default()
    }
    /// Creates a new `StopPHIDetectionJob` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for StopPHIDetectionJob {
    type Output = std::result::Result<
        crate::output::StopPhiDetectionJobOutput,
        crate::error::StopPHIDetectionJobError,
    >;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_stop_phi_detection_job_error(response)
        } else {
            crate::operation_deser::parse_stop_phi_detection_job_response(response)
        }
    }
}

/// Operation shape for `StopRxNormInferenceJob`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`stop_rx_norm_inference_job`](crate::client::Client::stop_rx_norm_inference_job).
///
/// See [`crate::client::fluent_builders::StopRxNormInferenceJob`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct StopRxNormInferenceJob {
    _private: (),
}
impl StopRxNormInferenceJob {
    /// Creates a new builder-style object to manufacture [`StopRxNormInferenceJobInput`](crate::input::StopRxNormInferenceJobInput)
    pub fn builder() -> crate::input::stop_rx_norm_inference_job_input::Builder {
        crate::input::stop_rx_norm_inference_job_input::Builder::default()
    }
    /// Creates a new `StopRxNormInferenceJob` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for StopRxNormInferenceJob {
    type Output = std::result::Result<
        crate::output::StopRxNormInferenceJobOutput,
        crate::error::StopRxNormInferenceJobError,
    >;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_stop_rx_norm_inference_job_error(response)
        } else {
            crate::operation_deser::parse_stop_rx_norm_inference_job_response(response)
        }
    }
}

/// Operation shape for `StopSNOMEDCTInferenceJob`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`stop_snomedct_inference_job`](crate::client::Client::stop_snomedct_inference_job).
///
/// See [`crate::client::fluent_builders::StopSNOMEDCTInferenceJob`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct StopSNOMEDCTInferenceJob {
    _private: (),
}
impl StopSNOMEDCTInferenceJob {
    /// Creates a new builder-style object to manufacture [`StopSnomedctInferenceJobInput`](crate::input::StopSnomedctInferenceJobInput)
    pub fn builder() -> crate::input::stop_snomedct_inference_job_input::Builder {
        crate::input::stop_snomedct_inference_job_input::Builder::default()
    }
    /// Creates a new `StopSNOMEDCTInferenceJob` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for StopSNOMEDCTInferenceJob {
    type Output = std::result::Result<
        crate::output::StopSnomedctInferenceJobOutput,
        crate::error::StopSNOMEDCTInferenceJobError,
    >;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_stop_snomedct_inference_job_error(response)
        } else {
            crate::operation_deser::parse_stop_snomedct_inference_job_response(response)
        }
    }
}