aws-sdk-iam 1.109.0

AWS SDK for AWS Identity and Access Management
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
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
// 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_xml::decode::XmlDecodeError> {
    crate::rest_xml_wrapped_errors::parse_error_metadata(response_body)
}

pub(crate) mod shape_accept_delegation_request;

pub(crate) mod shape_accept_delegation_request_input;

pub(crate) mod shape_add_client_id_to_open_id_connect_provider;

pub(crate) mod shape_add_client_id_to_open_id_connect_provider_input;

pub(crate) mod shape_add_role_to_instance_profile;

pub(crate) mod shape_add_role_to_instance_profile_input;

pub(crate) mod shape_add_user_to_group;

pub(crate) mod shape_add_user_to_group_input;

pub(crate) mod shape_associate_delegation_request;

pub(crate) mod shape_associate_delegation_request_input;

pub(crate) mod shape_attach_group_policy;

pub(crate) mod shape_attach_group_policy_input;

pub(crate) mod shape_attach_role_policy;

pub(crate) mod shape_attach_role_policy_input;

pub(crate) mod shape_attach_user_policy;

pub(crate) mod shape_attach_user_policy_input;

pub(crate) mod shape_change_password;

pub(crate) mod shape_change_password_input;

pub(crate) mod shape_create_access_key;

pub(crate) mod shape_create_access_key_input;

pub(crate) mod shape_create_account_alias;

pub(crate) mod shape_create_account_alias_input;

pub(crate) mod shape_create_delegation_request;

pub(crate) mod shape_create_delegation_request_input;

pub(crate) mod shape_create_group;

pub(crate) mod shape_create_group_input;

pub(crate) mod shape_create_instance_profile;

pub(crate) mod shape_create_instance_profile_input;

pub(crate) mod shape_create_login_profile;

pub(crate) mod shape_create_login_profile_input;

pub(crate) mod shape_create_open_id_connect_provider;

pub(crate) mod shape_create_open_id_connect_provider_input;

pub(crate) mod shape_create_policy;

pub(crate) mod shape_create_policy_input;

pub(crate) mod shape_create_policy_version;

pub(crate) mod shape_create_policy_version_input;

pub(crate) mod shape_create_role;

pub(crate) mod shape_create_role_input;

pub(crate) mod shape_create_saml_provider;

pub(crate) mod shape_create_saml_provider_input;

pub(crate) mod shape_create_service_linked_role;

pub(crate) mod shape_create_service_linked_role_input;

pub(crate) mod shape_create_service_specific_credential;

pub(crate) mod shape_create_service_specific_credential_input;

pub(crate) mod shape_create_user;

pub(crate) mod shape_create_user_input;

pub(crate) mod shape_create_virtual_mfa_device;

pub(crate) mod shape_create_virtual_mfa_device_input;

pub(crate) mod shape_deactivate_mfa_device;

pub(crate) mod shape_deactivate_mfa_device_input;

pub(crate) mod shape_delete_access_key;

pub(crate) mod shape_delete_access_key_input;

pub(crate) mod shape_delete_account_alias;

pub(crate) mod shape_delete_account_alias_input;

pub(crate) mod shape_delete_account_password_policy;

pub(crate) mod shape_delete_account_password_policy_input;

pub(crate) mod shape_delete_group;

pub(crate) mod shape_delete_group_input;

pub(crate) mod shape_delete_group_policy;

pub(crate) mod shape_delete_group_policy_input;

pub(crate) mod shape_delete_instance_profile;

pub(crate) mod shape_delete_instance_profile_input;

pub(crate) mod shape_delete_login_profile;

pub(crate) mod shape_delete_login_profile_input;

pub(crate) mod shape_delete_open_id_connect_provider;

pub(crate) mod shape_delete_open_id_connect_provider_input;

pub(crate) mod shape_delete_policy;

pub(crate) mod shape_delete_policy_input;

pub(crate) mod shape_delete_policy_version;

pub(crate) mod shape_delete_policy_version_input;

pub(crate) mod shape_delete_role;

pub(crate) mod shape_delete_role_input;

pub(crate) mod shape_delete_role_permissions_boundary;

pub(crate) mod shape_delete_role_permissions_boundary_input;

pub(crate) mod shape_delete_role_policy;

pub(crate) mod shape_delete_role_policy_input;

pub(crate) mod shape_delete_saml_provider;

pub(crate) mod shape_delete_saml_provider_input;

pub(crate) mod shape_delete_server_certificate;

pub(crate) mod shape_delete_server_certificate_input;

pub(crate) mod shape_delete_service_linked_role;

pub(crate) mod shape_delete_service_linked_role_input;

pub(crate) mod shape_delete_service_specific_credential;

pub(crate) mod shape_delete_service_specific_credential_input;

pub(crate) mod shape_delete_signing_certificate;

pub(crate) mod shape_delete_signing_certificate_input;

pub(crate) mod shape_delete_ssh_public_key;

pub(crate) mod shape_delete_ssh_public_key_input;

pub(crate) mod shape_delete_user;

pub(crate) mod shape_delete_user_input;

pub(crate) mod shape_delete_user_permissions_boundary;

pub(crate) mod shape_delete_user_permissions_boundary_input;

pub(crate) mod shape_delete_user_policy;

pub(crate) mod shape_delete_user_policy_input;

pub(crate) mod shape_delete_virtual_mfa_device;

pub(crate) mod shape_delete_virtual_mfa_device_input;

pub(crate) mod shape_detach_group_policy;

pub(crate) mod shape_detach_group_policy_input;

pub(crate) mod shape_detach_role_policy;

pub(crate) mod shape_detach_role_policy_input;

pub(crate) mod shape_detach_user_policy;

pub(crate) mod shape_detach_user_policy_input;

pub(crate) mod shape_disable_organizations_root_credentials_management;

pub(crate) mod shape_disable_organizations_root_credentials_management_input;

pub(crate) mod shape_disable_organizations_root_sessions;

pub(crate) mod shape_disable_organizations_root_sessions_input;

pub(crate) mod shape_disable_outbound_web_identity_federation;

pub(crate) mod shape_disable_outbound_web_identity_federation_input;

pub(crate) mod shape_enable_mfa_device;

pub(crate) mod shape_enable_mfa_device_input;

pub(crate) mod shape_enable_organizations_root_credentials_management;

pub(crate) mod shape_enable_organizations_root_credentials_management_input;

pub(crate) mod shape_enable_organizations_root_sessions;

pub(crate) mod shape_enable_organizations_root_sessions_input;

pub(crate) mod shape_enable_outbound_web_identity_federation;

pub(crate) mod shape_enable_outbound_web_identity_federation_input;

pub(crate) mod shape_generate_credential_report;

pub(crate) mod shape_generate_credential_report_input;

pub(crate) mod shape_generate_organizations_access_report;

pub(crate) mod shape_generate_organizations_access_report_input;

pub(crate) mod shape_generate_service_last_accessed_details;

pub(crate) mod shape_generate_service_last_accessed_details_input;

pub(crate) mod shape_get_access_key_last_used;

pub(crate) mod shape_get_access_key_last_used_input;

pub(crate) mod shape_get_account_authorization_details;

pub(crate) mod shape_get_account_authorization_details_input;

pub(crate) mod shape_get_account_password_policy;

pub(crate) mod shape_get_account_password_policy_input;

pub(crate) mod shape_get_account_summary;

pub(crate) mod shape_get_account_summary_input;

pub(crate) mod shape_get_context_keys_for_custom_policy;

pub(crate) mod shape_get_context_keys_for_custom_policy_input;

pub(crate) mod shape_get_context_keys_for_principal_policy;

pub(crate) mod shape_get_context_keys_for_principal_policy_input;

pub(crate) mod shape_get_credential_report;

pub(crate) mod shape_get_credential_report_input;

pub(crate) mod shape_get_delegation_request;

pub(crate) mod shape_get_delegation_request_input;

pub(crate) mod shape_get_group;

pub(crate) mod shape_get_group_input;

pub(crate) mod shape_get_group_policy;

pub(crate) mod shape_get_group_policy_input;

pub(crate) mod shape_get_human_readable_summary;

pub(crate) mod shape_get_human_readable_summary_input;

pub(crate) mod shape_get_instance_profile;

pub(crate) mod shape_get_instance_profile_input;

pub(crate) mod shape_get_login_profile;

pub(crate) mod shape_get_login_profile_input;

pub(crate) mod shape_get_mfa_device;

pub(crate) mod shape_get_mfa_device_input;

pub(crate) mod shape_get_open_id_connect_provider;

pub(crate) mod shape_get_open_id_connect_provider_input;

pub(crate) mod shape_get_organizations_access_report;

pub(crate) mod shape_get_organizations_access_report_input;

pub(crate) mod shape_get_outbound_web_identity_federation_info;

pub(crate) mod shape_get_outbound_web_identity_federation_info_input;

pub(crate) mod shape_get_policy;

pub(crate) mod shape_get_policy_input;

pub(crate) mod shape_get_policy_version;

pub(crate) mod shape_get_policy_version_input;

pub(crate) mod shape_get_role;

pub(crate) mod shape_get_role_input;

pub(crate) mod shape_get_role_policy;

pub(crate) mod shape_get_role_policy_input;

pub(crate) mod shape_get_saml_provider;

pub(crate) mod shape_get_saml_provider_input;

pub(crate) mod shape_get_server_certificate;

pub(crate) mod shape_get_server_certificate_input;

pub(crate) mod shape_get_service_last_accessed_details;

pub(crate) mod shape_get_service_last_accessed_details_input;

pub(crate) mod shape_get_service_last_accessed_details_with_entities;

pub(crate) mod shape_get_service_last_accessed_details_with_entities_input;

pub(crate) mod shape_get_service_linked_role_deletion_status;

pub(crate) mod shape_get_service_linked_role_deletion_status_input;

pub(crate) mod shape_get_ssh_public_key;

pub(crate) mod shape_get_ssh_public_key_input;

pub(crate) mod shape_get_user;

pub(crate) mod shape_get_user_input;

pub(crate) mod shape_get_user_policy;

pub(crate) mod shape_get_user_policy_input;

pub(crate) mod shape_list_access_keys;

pub(crate) mod shape_list_access_keys_input;

pub(crate) mod shape_list_account_aliases;

pub(crate) mod shape_list_account_aliases_input;

pub(crate) mod shape_list_attached_group_policies;

pub(crate) mod shape_list_attached_group_policies_input;

pub(crate) mod shape_list_attached_role_policies;

pub(crate) mod shape_list_attached_role_policies_input;

pub(crate) mod shape_list_attached_user_policies;

pub(crate) mod shape_list_attached_user_policies_input;

pub(crate) mod shape_list_delegation_requests;

pub(crate) mod shape_list_delegation_requests_input;

pub(crate) mod shape_list_entities_for_policy;

pub(crate) mod shape_list_entities_for_policy_input;

pub(crate) mod shape_list_group_policies;

pub(crate) mod shape_list_group_policies_input;

pub(crate) mod shape_list_groups;

pub(crate) mod shape_list_groups_for_user;

pub(crate) mod shape_list_groups_for_user_input;

pub(crate) mod shape_list_groups_input;

pub(crate) mod shape_list_instance_profile_tags;

pub(crate) mod shape_list_instance_profile_tags_input;

pub(crate) mod shape_list_instance_profiles;

pub(crate) mod shape_list_instance_profiles_for_role;

pub(crate) mod shape_list_instance_profiles_for_role_input;

pub(crate) mod shape_list_instance_profiles_input;

pub(crate) mod shape_list_mfa_device_tags;

pub(crate) mod shape_list_mfa_device_tags_input;

pub(crate) mod shape_list_mfa_devices;

pub(crate) mod shape_list_mfa_devices_input;

pub(crate) mod shape_list_open_id_connect_provider_tags;

pub(crate) mod shape_list_open_id_connect_provider_tags_input;

pub(crate) mod shape_list_open_id_connect_providers;

pub(crate) mod shape_list_open_id_connect_providers_input;

pub(crate) mod shape_list_organizations_features;

pub(crate) mod shape_list_organizations_features_input;

pub(crate) mod shape_list_policies;

pub(crate) mod shape_list_policies_granting_service_access;

pub(crate) mod shape_list_policies_granting_service_access_input;

pub(crate) mod shape_list_policies_input;

pub(crate) mod shape_list_policy_tags;

pub(crate) mod shape_list_policy_tags_input;

pub(crate) mod shape_list_policy_versions;

pub(crate) mod shape_list_policy_versions_input;

pub(crate) mod shape_list_role_policies;

pub(crate) mod shape_list_role_policies_input;

pub(crate) mod shape_list_role_tags;

pub(crate) mod shape_list_role_tags_input;

pub(crate) mod shape_list_roles;

pub(crate) mod shape_list_roles_input;

pub(crate) mod shape_list_saml_provider_tags;

pub(crate) mod shape_list_saml_provider_tags_input;

pub(crate) mod shape_list_saml_providers;

pub(crate) mod shape_list_saml_providers_input;

pub(crate) mod shape_list_server_certificate_tags;

pub(crate) mod shape_list_server_certificate_tags_input;

pub(crate) mod shape_list_server_certificates;

pub(crate) mod shape_list_server_certificates_input;

pub(crate) mod shape_list_service_specific_credentials;

pub(crate) mod shape_list_service_specific_credentials_input;

pub(crate) mod shape_list_signing_certificates;

pub(crate) mod shape_list_signing_certificates_input;

pub(crate) mod shape_list_ssh_public_keys;

pub(crate) mod shape_list_ssh_public_keys_input;

pub(crate) mod shape_list_user_policies;

pub(crate) mod shape_list_user_policies_input;

pub(crate) mod shape_list_user_tags;

pub(crate) mod shape_list_user_tags_input;

pub(crate) mod shape_list_users;

pub(crate) mod shape_list_users_input;

pub(crate) mod shape_list_virtual_mfa_devices;

pub(crate) mod shape_list_virtual_mfa_devices_input;

pub(crate) mod shape_put_group_policy;

pub(crate) mod shape_put_group_policy_input;

pub(crate) mod shape_put_role_permissions_boundary;

pub(crate) mod shape_put_role_permissions_boundary_input;

pub(crate) mod shape_put_role_policy;

pub(crate) mod shape_put_role_policy_input;

pub(crate) mod shape_put_user_permissions_boundary;

pub(crate) mod shape_put_user_permissions_boundary_input;

pub(crate) mod shape_put_user_policy;

pub(crate) mod shape_put_user_policy_input;

pub(crate) mod shape_reject_delegation_request;

pub(crate) mod shape_reject_delegation_request_input;

pub(crate) mod shape_remove_client_id_from_open_id_connect_provider;

pub(crate) mod shape_remove_client_id_from_open_id_connect_provider_input;

pub(crate) mod shape_remove_role_from_instance_profile;

pub(crate) mod shape_remove_role_from_instance_profile_input;

pub(crate) mod shape_remove_user_from_group;

pub(crate) mod shape_remove_user_from_group_input;

pub(crate) mod shape_reset_service_specific_credential;

pub(crate) mod shape_reset_service_specific_credential_input;

pub(crate) mod shape_resync_mfa_device;

pub(crate) mod shape_resync_mfa_device_input;

pub(crate) mod shape_send_delegation_token;

pub(crate) mod shape_send_delegation_token_input;

pub(crate) mod shape_set_default_policy_version;

pub(crate) mod shape_set_default_policy_version_input;

pub(crate) mod shape_set_security_token_service_preferences;

pub(crate) mod shape_set_security_token_service_preferences_input;

pub(crate) mod shape_simulate_custom_policy;

pub(crate) mod shape_simulate_custom_policy_input;

pub(crate) mod shape_simulate_principal_policy;

pub(crate) mod shape_simulate_principal_policy_input;

pub(crate) mod shape_tag_instance_profile;

pub(crate) mod shape_tag_instance_profile_input;

pub(crate) mod shape_tag_mfa_device;

pub(crate) mod shape_tag_mfa_device_input;

pub(crate) mod shape_tag_open_id_connect_provider;

pub(crate) mod shape_tag_open_id_connect_provider_input;

pub(crate) mod shape_tag_policy;

pub(crate) mod shape_tag_policy_input;

pub(crate) mod shape_tag_role;

pub(crate) mod shape_tag_role_input;

pub(crate) mod shape_tag_saml_provider;

pub(crate) mod shape_tag_saml_provider_input;

pub(crate) mod shape_tag_server_certificate;

pub(crate) mod shape_tag_server_certificate_input;

pub(crate) mod shape_tag_user;

pub(crate) mod shape_tag_user_input;

pub(crate) mod shape_untag_instance_profile;

pub(crate) mod shape_untag_instance_profile_input;

pub(crate) mod shape_untag_mfa_device;

pub(crate) mod shape_untag_mfa_device_input;

pub(crate) mod shape_untag_open_id_connect_provider;

pub(crate) mod shape_untag_open_id_connect_provider_input;

pub(crate) mod shape_untag_policy;

pub(crate) mod shape_untag_policy_input;

pub(crate) mod shape_untag_role;

pub(crate) mod shape_untag_role_input;

pub(crate) mod shape_untag_saml_provider;

pub(crate) mod shape_untag_saml_provider_input;

pub(crate) mod shape_untag_server_certificate;

pub(crate) mod shape_untag_server_certificate_input;

pub(crate) mod shape_untag_user;

pub(crate) mod shape_untag_user_input;

pub(crate) mod shape_update_access_key;

pub(crate) mod shape_update_access_key_input;

pub(crate) mod shape_update_account_password_policy;

pub(crate) mod shape_update_account_password_policy_input;

pub(crate) mod shape_update_assume_role_policy;

pub(crate) mod shape_update_assume_role_policy_input;

pub(crate) mod shape_update_delegation_request;

pub(crate) mod shape_update_delegation_request_input;

pub(crate) mod shape_update_group;

pub(crate) mod shape_update_group_input;

pub(crate) mod shape_update_login_profile;

pub(crate) mod shape_update_login_profile_input;

pub(crate) mod shape_update_open_id_connect_provider_thumbprint;

pub(crate) mod shape_update_open_id_connect_provider_thumbprint_input;

pub(crate) mod shape_update_role;

pub(crate) mod shape_update_role_description;

pub(crate) mod shape_update_role_description_input;

pub(crate) mod shape_update_role_input;

pub(crate) mod shape_update_saml_provider;

pub(crate) mod shape_update_saml_provider_input;

pub(crate) mod shape_update_server_certificate;

pub(crate) mod shape_update_server_certificate_input;

pub(crate) mod shape_update_service_specific_credential;

pub(crate) mod shape_update_service_specific_credential_input;

pub(crate) mod shape_update_signing_certificate;

pub(crate) mod shape_update_signing_certificate_input;

pub(crate) mod shape_update_ssh_public_key;

pub(crate) mod shape_update_ssh_public_key_input;

pub(crate) mod shape_update_user;

pub(crate) mod shape_update_user_input;

pub(crate) mod shape_upload_server_certificate;

pub(crate) mod shape_upload_server_certificate_input;

pub(crate) mod shape_upload_signing_certificate;

pub(crate) mod shape_upload_signing_certificate_input;

pub(crate) mod shape_upload_ssh_public_key;

pub(crate) mod shape_upload_ssh_public_key_input;

pub(crate) mod shape_account_not_management_or_delegated_administrator_exception;

pub(crate) mod shape_caller_is_not_management_account_exception;

pub(crate) mod shape_concurrent_modification_exception;

pub(crate) mod shape_context_entry;

pub(crate) mod shape_credential_report_expired_exception;

pub(crate) mod shape_credential_report_not_present_exception;

pub(crate) mod shape_credential_report_not_ready_exception;

pub(crate) mod shape_delegation_permission;

pub(crate) mod shape_delete_conflict_exception;

pub(crate) mod shape_duplicate_certificate_exception;

pub(crate) mod shape_duplicate_ssh_public_key_exception;

pub(crate) mod shape_entity_already_exists_exception;

pub(crate) mod shape_entity_temporarily_unmodifiable_exception;

pub(crate) mod shape_feature_disabled_exception;

pub(crate) mod shape_feature_enabled_exception;

pub(crate) mod shape_invalid_authentication_code_exception;

pub(crate) mod shape_invalid_certificate_exception;

pub(crate) mod shape_invalid_input_exception;

pub(crate) mod shape_invalid_public_key_exception;

pub(crate) mod shape_invalid_user_type_exception;

pub(crate) mod shape_key_pair_mismatch_exception;

pub(crate) mod shape_limit_exceeded_exception;

pub(crate) mod shape_malformed_certificate_exception;

pub(crate) mod shape_malformed_policy_document_exception;

pub(crate) mod shape_no_such_entity_exception;

pub(crate) mod shape_open_id_idp_communication_error_exception;

pub(crate) mod shape_organization_not_found_exception;

pub(crate) mod shape_organization_not_in_all_features_mode_exception;

pub(crate) mod shape_password_policy_violation_exception;

pub(crate) mod shape_policy_evaluation_exception;

pub(crate) mod shape_policy_not_attachable_exception;

pub(crate) mod shape_report_generation_limit_exceeded_exception;

pub(crate) mod shape_service_access_not_enabled_exception;

pub(crate) mod shape_service_failure_exception;

pub(crate) mod shape_service_not_supported_exception;

pub(crate) mod shape_tag;

pub(crate) mod shape_unmodifiable_entity_exception;

pub(crate) mod shape_unrecognized_public_key_encoding_exception;

pub(crate) mod shape_access_details;

pub(crate) mod shape_access_key;

pub(crate) mod shape_access_key_last_used;

pub(crate) mod shape_access_key_metadata_list_type;

pub(crate) mod shape_account_alias_list_type;

pub(crate) mod shape_attached_policies_list_type;

pub(crate) mod shape_certificate_list_type;

pub(crate) mod shape_certification_map_type;

pub(crate) mod shape_client_id_list_type;

pub(crate) mod shape_context_key_names_result_list_type;

pub(crate) mod shape_delegation_request;

pub(crate) mod shape_delegation_requests_list_type;

pub(crate) mod shape_deletion_task_failure_reason_type;

pub(crate) mod shape_entity_details_list_type;

pub(crate) mod shape_error_details;

pub(crate) mod shape_evaluation_results_list_type;

pub(crate) mod shape_features_list_type;

pub(crate) mod shape_group;

pub(crate) mod shape_group_detail_list_type;

pub(crate) mod shape_group_list_type;

pub(crate) mod shape_instance_profile;

pub(crate) mod shape_instance_profile_list_type;

pub(crate) mod shape_list_policy_granting_service_access_response_list_type;

pub(crate) mod shape_login_profile;

pub(crate) mod shape_managed_policy_detail_list_type;

pub(crate) mod shape_mfa_device_list_type;

pub(crate) mod shape_open_id_connect_provider_list_type;

pub(crate) mod shape_password_policy;

pub(crate) mod shape_policy;

pub(crate) mod shape_policy_document_version_list_type;

pub(crate) mod shape_policy_group_list_type;

pub(crate) mod shape_policy_list_type;

pub(crate) mod shape_policy_name_list_type;

pub(crate) mod shape_policy_parameter;

pub(crate) mod shape_policy_role_list_type;

pub(crate) mod shape_policy_user_list_type;

pub(crate) mod shape_policy_version;

pub(crate) mod shape_private_key_list;

pub(crate) mod shape_role;

pub(crate) mod shape_role_detail_list_type;

pub(crate) mod shape_role_list_type;

pub(crate) mod shape_saml_provider_list_type;

pub(crate) mod shape_server_certificate;

pub(crate) mod shape_server_certificate_metadata;

pub(crate) mod shape_server_certificate_metadata_list_type;

pub(crate) mod shape_service_specific_credential;

pub(crate) mod shape_service_specific_credentials_list_type;

pub(crate) mod shape_services_last_accessed;

pub(crate) mod shape_signing_certificate;

pub(crate) mod shape_ssh_public_key;

pub(crate) mod shape_ssh_public_key_list_type;

pub(crate) mod shape_summary_map_type;

pub(crate) mod shape_tag_list_type;

pub(crate) mod shape_thumbprint_list_type;

pub(crate) mod shape_user;

pub(crate) mod shape_user_detail_list_type;

pub(crate) mod shape_user_list_type;

pub(crate) mod shape_virtual_mfa_device;

pub(crate) mod shape_virtual_mfa_device_list_type;

pub(crate) mod shape_access_detail;

pub(crate) mod shape_access_key_metadata;

pub(crate) mod shape_attached_permissions_boundary;

pub(crate) mod shape_attached_policy;

pub(crate) mod shape_entity_details;

pub(crate) mod shape_evaluation_result;

pub(crate) mod shape_group_detail;

pub(crate) mod shape_list_policies_granting_service_access_entry;

pub(crate) mod shape_managed_policy_detail;

pub(crate) mod shape_mfa_device;

pub(crate) mod shape_open_id_connect_provider_list_entry;

pub(crate) mod shape_policy_group;

pub(crate) mod shape_policy_role;

pub(crate) mod shape_policy_user;

pub(crate) mod shape_role_detail;

pub(crate) mod shape_role_last_used;

pub(crate) mod shape_role_permission_restriction_arn_list_type;

pub(crate) mod shape_role_usage_list_type;

pub(crate) mod shape_saml_private_key;

pub(crate) mod shape_saml_provider_list_entry;

pub(crate) mod shape_service_last_accessed;

pub(crate) mod shape_service_specific_credential_metadata;

pub(crate) mod shape_ssh_public_key_metadata;

pub(crate) mod shape_user_detail;

pub(crate) mod shape_entity_info;

pub(crate) mod shape_eval_decision_details_type;

pub(crate) mod shape_group_name_list_type;

pub(crate) mod shape_organizations_decision_detail;

pub(crate) mod shape_permissions_boundary_decision_detail;

pub(crate) mod shape_policy_detail_list_type;

pub(crate) mod shape_policy_granting_service_access_list_type;

pub(crate) mod shape_policy_parameter_list_type;

pub(crate) mod shape_resource_specific_result_list_type;

pub(crate) mod shape_role_usage_type;

pub(crate) mod shape_statement_list_type;

pub(crate) mod shape_tracked_actions_last_accessed;

pub(crate) mod shape_arn_list_type;

pub(crate) mod shape_policy_detail;

pub(crate) mod shape_policy_granting_service_access;

pub(crate) mod shape_resource_specific_result;

pub(crate) mod shape_statement;

pub(crate) mod shape_tracked_action_last_accessed;

pub(crate) mod shape_policy_parameter_values_list_type;

pub(crate) mod shape_position;