aws-sdk-config 1.101.0

AWS SDK for AWS Config
Documentation
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
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub(crate) fn type_erase_result<O, E>(
    result: ::std::result::Result<O, E>,
) -> ::std::result::Result<
    ::aws_smithy_runtime_api::client::interceptors::context::Output,
    ::aws_smithy_runtime_api::client::orchestrator::OrchestratorError<::aws_smithy_runtime_api::client::interceptors::context::Error>,
>
where
    O: ::std::fmt::Debug + ::std::marker::Send + ::std::marker::Sync + 'static,
    E: ::std::error::Error + std::fmt::Debug + ::std::marker::Send + ::std::marker::Sync + 'static,
{
    result
        .map(|output| ::aws_smithy_runtime_api::client::interceptors::context::Output::erase(output))
        .map_err(|error| ::aws_smithy_runtime_api::client::interceptors::context::Error::erase(error))
        .map_err(::std::convert::Into::into)
}

pub fn parse_http_error_metadata(
    _response_status: u16,
    response_headers: &::aws_smithy_runtime_api::http::Headers,
    response_body: &[u8],
) -> ::std::result::Result<::aws_smithy_types::error::metadata::Builder, ::aws_smithy_json::deserialize::error::DeserializeError> {
    crate::json_errors::parse_error_metadata(response_body, response_headers)
}

pub(crate) mod shape_associate_resource_types;

pub(crate) mod shape_batch_get_aggregate_resource_config;

pub(crate) mod shape_batch_get_resource_config;

pub(crate) mod shape_delete_aggregation_authorization;

pub(crate) mod shape_delete_config_rule;

pub(crate) mod shape_delete_configuration_aggregator;

pub(crate) mod shape_delete_configuration_recorder;

pub(crate) mod shape_delete_conformance_pack;

pub(crate) mod shape_delete_delivery_channel;

pub(crate) mod shape_delete_evaluation_results;

pub(crate) mod shape_delete_organization_config_rule;

pub(crate) mod shape_delete_organization_conformance_pack;

pub(crate) mod shape_delete_pending_aggregation_request;

pub(crate) mod shape_delete_remediation_configuration;

pub(crate) mod shape_delete_remediation_exceptions;

pub(crate) mod shape_delete_resource_config;

pub(crate) mod shape_delete_retention_configuration;

pub(crate) mod shape_delete_service_linked_configuration_recorder;

pub(crate) mod shape_delete_stored_query;

pub(crate) mod shape_deliver_config_snapshot;

pub(crate) mod shape_describe_aggregate_compliance_by_config_rules;

pub(crate) mod shape_describe_aggregate_compliance_by_conformance_packs;

pub(crate) mod shape_describe_aggregation_authorizations;

pub(crate) mod shape_describe_compliance_by_config_rule;

pub(crate) mod shape_describe_compliance_by_resource;

pub(crate) mod shape_describe_config_rule_evaluation_status;

pub(crate) mod shape_describe_config_rules;

pub(crate) mod shape_describe_configuration_aggregator_sources_status;

pub(crate) mod shape_describe_configuration_aggregators;

pub(crate) mod shape_describe_configuration_recorder_status;

pub(crate) mod shape_describe_configuration_recorders;

pub(crate) mod shape_describe_conformance_pack_compliance;

pub(crate) mod shape_describe_conformance_pack_status;

pub(crate) mod shape_describe_conformance_packs;

pub(crate) mod shape_describe_delivery_channel_status;

pub(crate) mod shape_describe_delivery_channels;

pub(crate) mod shape_describe_organization_config_rule_statuses;

pub(crate) mod shape_describe_organization_config_rules;

pub(crate) mod shape_describe_organization_conformance_pack_statuses;

pub(crate) mod shape_describe_organization_conformance_packs;

pub(crate) mod shape_describe_pending_aggregation_requests;

pub(crate) mod shape_describe_remediation_configurations;

pub(crate) mod shape_describe_remediation_exceptions;

pub(crate) mod shape_describe_remediation_execution_status;

pub(crate) mod shape_describe_retention_configurations;

pub(crate) mod shape_disassociate_resource_types;

pub(crate) mod shape_get_aggregate_compliance_details_by_config_rule;

pub(crate) mod shape_get_aggregate_config_rule_compliance_summary;

pub(crate) mod shape_get_aggregate_conformance_pack_compliance_summary;

pub(crate) mod shape_get_aggregate_discovered_resource_counts;

pub(crate) mod shape_get_aggregate_resource_config;

pub(crate) mod shape_get_compliance_details_by_config_rule;

pub(crate) mod shape_get_compliance_details_by_resource;

pub(crate) mod shape_get_compliance_summary_by_config_rule;

pub(crate) mod shape_get_compliance_summary_by_resource_type;

pub(crate) mod shape_get_conformance_pack_compliance_details;

pub(crate) mod shape_get_conformance_pack_compliance_summary;

pub(crate) mod shape_get_custom_rule_policy;

pub(crate) mod shape_get_discovered_resource_counts;

pub(crate) mod shape_get_organization_config_rule_detailed_status;

pub(crate) mod shape_get_organization_conformance_pack_detailed_status;

pub(crate) mod shape_get_organization_custom_rule_policy;

pub(crate) mod shape_get_resource_config_history;

pub(crate) mod shape_get_resource_evaluation_summary;

pub(crate) mod shape_get_stored_query;

pub(crate) mod shape_list_aggregate_discovered_resources;

pub(crate) mod shape_list_configuration_recorders;

pub(crate) mod shape_list_conformance_pack_compliance_scores;

pub(crate) mod shape_list_discovered_resources;

pub(crate) mod shape_list_resource_evaluations;

pub(crate) mod shape_list_stored_queries;

pub(crate) mod shape_list_tags_for_resource;

pub(crate) mod shape_put_aggregation_authorization;

pub(crate) mod shape_put_config_rule;

pub(crate) mod shape_put_configuration_aggregator;

pub(crate) mod shape_put_configuration_recorder;

pub(crate) mod shape_put_conformance_pack;

pub(crate) mod shape_put_delivery_channel;

pub(crate) mod shape_put_evaluations;

pub(crate) mod shape_put_external_evaluation;

pub(crate) mod shape_put_organization_config_rule;

pub(crate) mod shape_put_organization_conformance_pack;

pub(crate) mod shape_put_remediation_configurations;

pub(crate) mod shape_put_remediation_exceptions;

pub(crate) mod shape_put_resource_config;

pub(crate) mod shape_put_retention_configuration;

pub(crate) mod shape_put_service_linked_configuration_recorder;

pub(crate) mod shape_put_stored_query;

pub(crate) mod shape_select_aggregate_resource_config;

pub(crate) mod shape_select_resource_config;

pub(crate) mod shape_start_config_rules_evaluation;

pub(crate) mod shape_start_configuration_recorder;

pub(crate) mod shape_start_remediation_execution;

pub(crate) mod shape_start_resource_evaluation;

pub(crate) mod shape_stop_configuration_recorder;

pub(crate) mod shape_tag_resource;

pub(crate) mod shape_untag_resource;

pub(crate) fn or_empty_doc(data: &[u8]) -> &[u8] {
    if data.is_empty() {
        b"{}"
    } else {
        data
    }
}

pub(crate) mod shape_associate_resource_types_input;

pub(crate) mod shape_batch_get_aggregate_resource_config_input;

pub(crate) mod shape_batch_get_resource_config_input;

pub(crate) mod shape_conflict_exception;

pub(crate) mod shape_conformance_pack_template_validation_exception;

pub(crate) mod shape_delete_aggregation_authorization_input;

pub(crate) mod shape_delete_config_rule_input;

pub(crate) mod shape_delete_configuration_aggregator_input;

pub(crate) mod shape_delete_configuration_recorder_input;

pub(crate) mod shape_delete_conformance_pack_input;

pub(crate) mod shape_delete_delivery_channel_input;

pub(crate) mod shape_delete_evaluation_results_input;

pub(crate) mod shape_delete_organization_config_rule_input;

pub(crate) mod shape_delete_organization_conformance_pack_input;

pub(crate) mod shape_delete_pending_aggregation_request_input;

pub(crate) mod shape_delete_remediation_configuration_input;

pub(crate) mod shape_delete_remediation_exceptions_input;

pub(crate) mod shape_delete_resource_config_input;

pub(crate) mod shape_delete_retention_configuration_input;

pub(crate) mod shape_delete_service_linked_configuration_recorder_input;

pub(crate) mod shape_delete_stored_query_input;

pub(crate) mod shape_deliver_config_snapshot_input;

pub(crate) mod shape_describe_aggregate_compliance_by_config_rules_input;

pub(crate) mod shape_describe_aggregate_compliance_by_conformance_packs_input;

pub(crate) mod shape_describe_aggregation_authorizations_input;

pub(crate) mod shape_describe_compliance_by_config_rule_input;

pub(crate) mod shape_describe_compliance_by_resource_input;

pub(crate) mod shape_describe_config_rule_evaluation_status_input;

pub(crate) mod shape_describe_config_rules_input;

pub(crate) mod shape_describe_configuration_aggregator_sources_status_input;

pub(crate) mod shape_describe_configuration_aggregators_input;

pub(crate) mod shape_describe_configuration_recorder_status_input;

pub(crate) mod shape_describe_configuration_recorders_input;

pub(crate) mod shape_describe_conformance_pack_compliance_input;

pub(crate) mod shape_describe_conformance_pack_status_input;

pub(crate) mod shape_describe_conformance_packs_input;

pub(crate) mod shape_describe_delivery_channel_status_input;

pub(crate) mod shape_describe_delivery_channels_input;

pub(crate) mod shape_describe_organization_config_rule_statuses_input;

pub(crate) mod shape_describe_organization_config_rules_input;

pub(crate) mod shape_describe_organization_conformance_pack_statuses_input;

pub(crate) mod shape_describe_organization_conformance_packs_input;

pub(crate) mod shape_describe_pending_aggregation_requests_input;

pub(crate) mod shape_describe_remediation_configurations_input;

pub(crate) mod shape_describe_remediation_exceptions_input;

pub(crate) mod shape_describe_remediation_execution_status_input;

pub(crate) mod shape_describe_retention_configurations_input;

pub(crate) mod shape_disassociate_resource_types_input;

pub(crate) mod shape_get_aggregate_compliance_details_by_config_rule_input;

pub(crate) mod shape_get_aggregate_config_rule_compliance_summary_input;

pub(crate) mod shape_get_aggregate_conformance_pack_compliance_summary_input;

pub(crate) mod shape_get_aggregate_discovered_resource_counts_input;

pub(crate) mod shape_get_aggregate_resource_config_input;

pub(crate) mod shape_get_compliance_details_by_config_rule_input;

pub(crate) mod shape_get_compliance_details_by_resource_input;

pub(crate) mod shape_get_compliance_summary_by_resource_type_input;

pub(crate) mod shape_get_conformance_pack_compliance_details_input;

pub(crate) mod shape_get_conformance_pack_compliance_summary_input;

pub(crate) mod shape_get_custom_rule_policy_input;

pub(crate) mod shape_get_discovered_resource_counts_input;

pub(crate) mod shape_get_organization_config_rule_detailed_status_input;

pub(crate) mod shape_get_organization_conformance_pack_detailed_status_input;

pub(crate) mod shape_get_organization_custom_rule_policy_input;

pub(crate) mod shape_get_resource_config_history_input;

pub(crate) mod shape_get_resource_evaluation_summary_input;

pub(crate) mod shape_get_stored_query_input;

pub(crate) mod shape_idempotent_parameter_mismatch;

pub(crate) mod shape_insufficient_delivery_policy_exception;

pub(crate) mod shape_insufficient_permissions_exception;

pub(crate) mod shape_invalid_configuration_recorder_name_exception;

pub(crate) mod shape_invalid_delivery_channel_name_exception;

pub(crate) mod shape_invalid_expression_exception;

pub(crate) mod shape_invalid_limit_exception;

pub(crate) mod shape_invalid_next_token_exception;

pub(crate) mod shape_invalid_parameter_value_exception;

pub(crate) mod shape_invalid_recording_group_exception;

pub(crate) mod shape_invalid_result_token_exception;

pub(crate) mod shape_invalid_role_exception;

pub(crate) mod shape_invalid_s3_key_prefix_exception;

pub(crate) mod shape_invalid_s3_kms_key_arn_exception;

pub(crate) mod shape_invalid_sns_topic_arn_exception;

pub(crate) mod shape_invalid_time_range_exception;

pub(crate) mod shape_last_delivery_channel_delete_failed_exception;

pub(crate) mod shape_limit_exceeded_exception;

pub(crate) mod shape_list_aggregate_discovered_resources_input;

pub(crate) mod shape_list_configuration_recorders_input;

pub(crate) mod shape_list_conformance_pack_compliance_scores_input;

pub(crate) mod shape_list_discovered_resources_input;

pub(crate) mod shape_list_resource_evaluations_input;

pub(crate) mod shape_list_stored_queries_input;

pub(crate) mod shape_list_tags_for_resource_input;

pub(crate) mod shape_max_active_resources_exceeded_exception;

pub(crate) mod shape_max_number_of_config_rules_exceeded_exception;

pub(crate) mod shape_max_number_of_configuration_recorders_exceeded_exception;

pub(crate) mod shape_max_number_of_conformance_packs_exceeded_exception;

pub(crate) mod shape_max_number_of_delivery_channels_exceeded_exception;

pub(crate) mod shape_max_number_of_organization_config_rules_exceeded_exception;

pub(crate) mod shape_max_number_of_organization_conformance_packs_exceeded_exception;

pub(crate) mod shape_max_number_of_retention_configurations_exceeded_exception;

pub(crate) mod shape_no_available_configuration_recorder_exception;

pub(crate) mod shape_no_available_delivery_channel_exception;

pub(crate) mod shape_no_available_organization_exception;

pub(crate) mod shape_no_running_configuration_recorder_exception;

pub(crate) mod shape_no_such_bucket_exception;

pub(crate) mod shape_no_such_config_rule_exception;

pub(crate) mod shape_no_such_config_rule_in_conformance_pack_exception;

pub(crate) mod shape_no_such_configuration_aggregator_exception;

pub(crate) mod shape_no_such_configuration_recorder_exception;

pub(crate) mod shape_no_such_conformance_pack_exception;

pub(crate) mod shape_no_such_delivery_channel_exception;

pub(crate) mod shape_no_such_organization_config_rule_exception;

pub(crate) mod shape_no_such_organization_conformance_pack_exception;

pub(crate) mod shape_no_such_remediation_configuration_exception;

pub(crate) mod shape_no_such_remediation_exception_exception;

pub(crate) mod shape_no_such_retention_configuration_exception;

pub(crate) mod shape_organization_access_denied_exception;

pub(crate) mod shape_organization_all_features_not_enabled_exception;

pub(crate) mod shape_organization_conformance_pack_template_validation_exception;

pub(crate) mod shape_oversized_configuration_item_exception;

pub(crate) mod shape_put_aggregation_authorization_input;

pub(crate) mod shape_put_config_rule_input;

pub(crate) mod shape_put_configuration_aggregator_input;

pub(crate) mod shape_put_configuration_recorder_input;

pub(crate) mod shape_put_conformance_pack_input;

pub(crate) mod shape_put_delivery_channel_input;

pub(crate) mod shape_put_evaluations_input;

pub(crate) mod shape_put_external_evaluation_input;

pub(crate) mod shape_put_organization_config_rule_input;

pub(crate) mod shape_put_organization_conformance_pack_input;

pub(crate) mod shape_put_remediation_configurations_input;

pub(crate) mod shape_put_remediation_exceptions_input;

pub(crate) mod shape_put_resource_config_input;

pub(crate) mod shape_put_retention_configuration_input;

pub(crate) mod shape_put_service_linked_configuration_recorder_input;

pub(crate) mod shape_put_stored_query_input;

pub(crate) mod shape_remediation_in_progress_exception;

pub(crate) mod shape_resource_concurrent_modification_exception;

pub(crate) mod shape_resource_in_use_exception;

pub(crate) mod shape_resource_not_discovered_exception;

pub(crate) mod shape_resource_not_found_exception;

pub(crate) mod shape_select_aggregate_resource_config_input;

pub(crate) mod shape_select_resource_config_input;

pub(crate) mod shape_start_config_rules_evaluation_input;

pub(crate) mod shape_start_configuration_recorder_input;

pub(crate) mod shape_start_remediation_execution_input;

pub(crate) mod shape_start_resource_evaluation_input;

pub(crate) mod shape_stop_configuration_recorder_input;

pub(crate) mod shape_tag_resource_input;

pub(crate) mod shape_too_many_tags_exception;

pub(crate) mod shape_unmodifiable_entity_exception;

pub(crate) mod shape_untag_resource_input;

pub(crate) mod shape_validation_exception;

pub(crate) mod shape_account_aggregation_source;

pub(crate) mod shape_aggregate_compliance_by_config_rule_list;

pub(crate) mod shape_aggregate_compliance_by_conformance_pack_list;

pub(crate) mod shape_aggregate_compliance_count_list;

pub(crate) mod shape_aggregate_conformance_pack_compliance_filters;

pub(crate) mod shape_aggregate_conformance_pack_compliance_summary_filters;

pub(crate) mod shape_aggregate_conformance_pack_compliance_summary_list;

pub(crate) mod shape_aggregate_evaluation_result_list;

pub(crate) mod shape_aggregate_resource_identifier;

pub(crate) mod shape_aggregated_source_status_list;

pub(crate) mod shape_aggregation_authorization;

pub(crate) mod shape_aggregation_authorization_list;

pub(crate) mod shape_aggregator_filters;

pub(crate) mod shape_base_configuration_items;

pub(crate) mod shape_compliance_by_config_rules;

pub(crate) mod shape_compliance_by_resources;

pub(crate) mod shape_compliance_summaries_by_resource_type;

pub(crate) mod shape_compliance_summary;

pub(crate) mod shape_config_rule;

pub(crate) mod shape_config_rule_compliance_filters;

pub(crate) mod shape_config_rule_compliance_summary_filters;

pub(crate) mod shape_config_rule_evaluation_status_list;

pub(crate) mod shape_config_rules;

pub(crate) mod shape_configuration_aggregator;

pub(crate) mod shape_configuration_aggregator_list;

pub(crate) mod shape_configuration_item;

pub(crate) mod shape_configuration_item_list;

pub(crate) mod shape_configuration_recorder;

pub(crate) mod shape_configuration_recorder_filter;

pub(crate) mod shape_configuration_recorder_list;

pub(crate) mod shape_configuration_recorder_status_list;

pub(crate) mod shape_configuration_recorder_summaries;

pub(crate) mod shape_conformance_pack_compliance_filters;

pub(crate) mod shape_conformance_pack_compliance_scores;

pub(crate) mod shape_conformance_pack_compliance_scores_filters;

pub(crate) mod shape_conformance_pack_compliance_summary_list;

pub(crate) mod shape_conformance_pack_detail_list;

pub(crate) mod shape_conformance_pack_evaluation_filters;

pub(crate) mod shape_conformance_pack_input_parameter;

pub(crate) mod shape_conformance_pack_rule_compliance_list;

pub(crate) mod shape_conformance_pack_rule_evaluation_results_list;

pub(crate) mod shape_conformance_pack_status_details_list;

pub(crate) mod shape_delivery_channel;

pub(crate) mod shape_delivery_channel_list;

pub(crate) mod shape_delivery_channel_status_list;

pub(crate) mod shape_describe_config_rules_filters;

pub(crate) mod shape_discovered_resource_identifier_list;

pub(crate) mod shape_evaluation;

pub(crate) mod shape_evaluation_context;

pub(crate) mod shape_evaluation_results;

pub(crate) mod shape_evaluation_status;

pub(crate) mod shape_evaluations;

pub(crate) mod shape_external_evaluation;

pub(crate) mod shape_failed_delete_remediation_exceptions_batches;

pub(crate) mod shape_failed_remediation_batches;

pub(crate) mod shape_failed_remediation_exception_batches;

pub(crate) mod shape_grouped_resource_count_list;

pub(crate) mod shape_organization_aggregation_source;

pub(crate) mod shape_organization_config_rule_detailed_status;

pub(crate) mod shape_organization_config_rule_statuses;

pub(crate) mod shape_organization_config_rules;

pub(crate) mod shape_organization_conformance_pack_detailed_statuses;

pub(crate) mod shape_organization_conformance_pack_statuses;

pub(crate) mod shape_organization_conformance_packs;

pub(crate) mod shape_organization_custom_policy_rule_metadata;

pub(crate) mod shape_organization_custom_rule_metadata;

pub(crate) mod shape_organization_managed_rule_metadata;

pub(crate) mod shape_organization_resource_detailed_status_filters;

pub(crate) mod shape_pending_aggregation_request_list;

pub(crate) mod shape_query_info;

pub(crate) mod shape_remediation_configuration;

pub(crate) mod shape_remediation_configurations;

pub(crate) mod shape_remediation_exception_resource_key;

pub(crate) mod shape_remediation_exceptions;

pub(crate) mod shape_remediation_execution_statuses;

pub(crate) mod shape_resource_count_filters;

pub(crate) mod shape_resource_counts;

pub(crate) mod shape_resource_details;

pub(crate) mod shape_resource_evaluation_filters;

pub(crate) mod shape_resource_evaluations;

pub(crate) mod shape_resource_filters;

pub(crate) mod shape_resource_identifier_list;

pub(crate) mod shape_resource_key;

pub(crate) mod shape_resource_keys;

pub(crate) mod shape_results;

pub(crate) mod shape_retention_configuration;

pub(crate) mod shape_retention_configuration_list;

pub(crate) mod shape_status_detail_filters;

pub(crate) mod shape_stored_query;

pub(crate) mod shape_stored_query_metadata_list;

pub(crate) mod shape_tag;

pub(crate) mod shape_tag_list;

pub(crate) mod shape_template_ssm_document_details;

pub(crate) mod shape_unprocessed_resource_identifier_list;

pub(crate) mod shape_account_aggregation_source_list;

pub(crate) mod shape_aggregate_compliance_by_config_rule;

pub(crate) mod shape_aggregate_compliance_by_conformance_pack;

pub(crate) mod shape_aggregate_compliance_count;

pub(crate) mod shape_aggregate_conformance_pack_compliance_summary;

pub(crate) mod shape_aggregate_evaluation_result;

pub(crate) mod shape_aggregated_source_status;

pub(crate) mod shape_aggregator_filter_resource_type;

pub(crate) mod shape_aggregator_filter_service_principal;

pub(crate) mod shape_base_configuration_item;

pub(crate) mod shape_compliance_by_config_rule;

pub(crate) mod shape_compliance_by_resource;

pub(crate) mod shape_compliance_contributor_count;

pub(crate) mod shape_compliance_summary_by_resource_type;

pub(crate) mod shape_config_rule_evaluation_status;

pub(crate) mod shape_config_snapshot_delivery_properties;

pub(crate) mod shape_configuration_recorder_status;

pub(crate) mod shape_configuration_recorder_summary;

pub(crate) mod shape_conformance_pack_compliance_score;

pub(crate) mod shape_conformance_pack_compliance_summary;

pub(crate) mod shape_conformance_pack_detail;

pub(crate) mod shape_conformance_pack_evaluation_result;

pub(crate) mod shape_conformance_pack_rule_compliance;

pub(crate) mod shape_conformance_pack_status_detail;

pub(crate) mod shape_delivery_channel_status;

pub(crate) mod shape_evaluation_mode_configuration;

pub(crate) mod shape_evaluation_result;

pub(crate) mod shape_execution_controls;

pub(crate) mod shape_failed_delete_remediation_exceptions_batch;

pub(crate) mod shape_failed_remediation_batch;

pub(crate) mod shape_failed_remediation_exception_batch;

pub(crate) mod shape_field_info_list;

pub(crate) mod shape_grouped_resource_count;

pub(crate) mod shape_member_account_status;

pub(crate) mod shape_organization_config_rule;

pub(crate) mod shape_organization_config_rule_status;

pub(crate) mod shape_organization_conformance_pack;

pub(crate) mod shape_organization_conformance_pack_detailed_status;

pub(crate) mod shape_organization_conformance_pack_status;

pub(crate) mod shape_pending_aggregation_request;

pub(crate) mod shape_recording_group;

pub(crate) mod shape_recording_mode;

pub(crate) mod shape_related_event_list;

pub(crate) mod shape_relationship_list;

pub(crate) mod shape_remediation_exception;

pub(crate) mod shape_remediation_execution_status;

pub(crate) mod shape_remediation_parameter_value;

pub(crate) mod shape_resource_count;

pub(crate) mod shape_resource_evaluation;

pub(crate) mod shape_resource_identifier;

pub(crate) mod shape_scope;

pub(crate) mod shape_source;

pub(crate) mod shape_stored_query_metadata;

pub(crate) mod shape_supplementary_configuration;

pub(crate) mod shape_tags;

pub(crate) mod shape_time_window;

pub(crate) mod shape_aggregate_conformance_pack_compliance;

pub(crate) mod shape_aggregate_conformance_pack_compliance_count;

pub(crate) mod shape_aggregator_region_list;

pub(crate) mod shape_compliance;

pub(crate) mod shape_config_export_delivery_info;

pub(crate) mod shape_config_stream_delivery_info;

pub(crate) mod shape_conformance_pack_input_parameters;

pub(crate) mod shape_controls_list;

pub(crate) mod shape_custom_policy_details;

pub(crate) mod shape_evaluation_modes;

pub(crate) mod shape_evaluation_result_identifier;

pub(crate) mod shape_excluded_accounts;

pub(crate) mod shape_exclusion_by_resource_types;

pub(crate) mod shape_field_info;

pub(crate) mod shape_organization_custom_policy_rule_metadata_no_policy;

pub(crate) mod shape_recording_mode_override;

pub(crate) mod shape_recording_mode_overrides;

pub(crate) mod shape_recording_strategy;

pub(crate) mod shape_relationship;

pub(crate) mod shape_remediation_exception_resource_keys;

pub(crate) mod shape_remediation_execution_steps;

pub(crate) mod shape_remediation_parameters;

pub(crate) mod shape_resource_type_list;

pub(crate) mod shape_resource_value;

pub(crate) mod shape_source_detail;

pub(crate) mod shape_ssm_controls;

pub(crate) mod shape_static_value;

pub(crate) mod shape_account_aggregation_source_account_list;

pub(crate) mod shape_compliance_resource_types;

pub(crate) mod shape_debug_log_delivery_accounts;

pub(crate) mod shape_evaluation_result_qualifier;

pub(crate) mod shape_organization_config_rule_trigger_type_no_sns;

pub(crate) mod shape_organization_config_rule_trigger_types;

pub(crate) mod shape_remediation_execution_step;

pub(crate) mod shape_resource_type_value_list;

pub(crate) mod shape_resource_types_scope;

pub(crate) mod shape_service_principal_value_list;

pub(crate) mod shape_source_details;

pub(crate) mod shape_recording_mode_resource_types_list;

pub(crate) mod shape_static_parameter_values;