aws-sdk-redshift 1.106.0

AWS SDK for Amazon Redshift
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
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
// 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_reserved_node_exchange;

pub(crate) mod shape_accept_reserved_node_exchange_input;

pub(crate) mod shape_add_partner;

pub(crate) mod shape_add_partner_input;

pub(crate) mod shape_associate_data_share_consumer;

pub(crate) mod shape_associate_data_share_consumer_input;

pub(crate) mod shape_authorize_cluster_security_group_ingress;

pub(crate) mod shape_authorize_cluster_security_group_ingress_input;

pub(crate) mod shape_authorize_data_share;

pub(crate) mod shape_authorize_data_share_input;

pub(crate) mod shape_authorize_endpoint_access;

pub(crate) mod shape_authorize_endpoint_access_input;

pub(crate) mod shape_authorize_snapshot_access;

pub(crate) mod shape_authorize_snapshot_access_input;

pub(crate) mod shape_batch_delete_cluster_snapshots;

pub(crate) mod shape_batch_delete_cluster_snapshots_input;

pub(crate) mod shape_batch_modify_cluster_snapshots;

pub(crate) mod shape_batch_modify_cluster_snapshots_input;

pub(crate) mod shape_cancel_resize;

pub(crate) mod shape_cancel_resize_input;

pub(crate) mod shape_copy_cluster_snapshot;

pub(crate) mod shape_copy_cluster_snapshot_input;

pub(crate) mod shape_create_authentication_profile;

pub(crate) mod shape_create_authentication_profile_input;

pub(crate) mod shape_create_cluster;

pub(crate) mod shape_create_cluster_input;

pub(crate) mod shape_create_cluster_parameter_group;

pub(crate) mod shape_create_cluster_parameter_group_input;

pub(crate) mod shape_create_cluster_security_group;

pub(crate) mod shape_create_cluster_security_group_input;

pub(crate) mod shape_create_cluster_snapshot;

pub(crate) mod shape_create_cluster_snapshot_input;

pub(crate) mod shape_create_cluster_subnet_group;

pub(crate) mod shape_create_cluster_subnet_group_input;

pub(crate) mod shape_create_custom_domain_association;

pub(crate) mod shape_create_custom_domain_association_input;

pub(crate) mod shape_create_endpoint_access;

pub(crate) mod shape_create_endpoint_access_input;

pub(crate) mod shape_create_event_subscription;

pub(crate) mod shape_create_event_subscription_input;

pub(crate) mod shape_create_hsm_client_certificate;

pub(crate) mod shape_create_hsm_client_certificate_input;

pub(crate) mod shape_create_hsm_configuration;

pub(crate) mod shape_create_hsm_configuration_input;

pub(crate) mod shape_create_integration;

pub(crate) mod shape_create_integration_input;

pub(crate) mod shape_create_redshift_idc_application;

pub(crate) mod shape_create_redshift_idc_application_input;

pub(crate) mod shape_create_scheduled_action;

pub(crate) mod shape_create_scheduled_action_input;

pub(crate) mod shape_create_snapshot_copy_grant;

pub(crate) mod shape_create_snapshot_copy_grant_input;

pub(crate) mod shape_create_snapshot_schedule;

pub(crate) mod shape_create_snapshot_schedule_input;

pub(crate) mod shape_create_tags;

pub(crate) mod shape_create_tags_input;

pub(crate) mod shape_create_usage_limit;

pub(crate) mod shape_create_usage_limit_input;

pub(crate) mod shape_deauthorize_data_share;

pub(crate) mod shape_deauthorize_data_share_input;

pub(crate) mod shape_delete_authentication_profile;

pub(crate) mod shape_delete_authentication_profile_input;

pub(crate) mod shape_delete_cluster;

pub(crate) mod shape_delete_cluster_input;

pub(crate) mod shape_delete_cluster_parameter_group;

pub(crate) mod shape_delete_cluster_parameter_group_input;

pub(crate) mod shape_delete_cluster_security_group;

pub(crate) mod shape_delete_cluster_security_group_input;

pub(crate) mod shape_delete_cluster_snapshot;

pub(crate) mod shape_delete_cluster_snapshot_input;

pub(crate) mod shape_delete_cluster_subnet_group;

pub(crate) mod shape_delete_cluster_subnet_group_input;

pub(crate) mod shape_delete_custom_domain_association;

pub(crate) mod shape_delete_custom_domain_association_input;

pub(crate) mod shape_delete_endpoint_access;

pub(crate) mod shape_delete_endpoint_access_input;

pub(crate) mod shape_delete_event_subscription;

pub(crate) mod shape_delete_event_subscription_input;

pub(crate) mod shape_delete_hsm_client_certificate;

pub(crate) mod shape_delete_hsm_client_certificate_input;

pub(crate) mod shape_delete_hsm_configuration;

pub(crate) mod shape_delete_hsm_configuration_input;

pub(crate) mod shape_delete_integration;

pub(crate) mod shape_delete_integration_input;

pub(crate) mod shape_delete_partner;

pub(crate) mod shape_delete_partner_input;

pub(crate) mod shape_delete_redshift_idc_application;

pub(crate) mod shape_delete_redshift_idc_application_input;

pub(crate) mod shape_delete_resource_policy;

pub(crate) mod shape_delete_resource_policy_input;

pub(crate) mod shape_delete_scheduled_action;

pub(crate) mod shape_delete_scheduled_action_input;

pub(crate) mod shape_delete_snapshot_copy_grant;

pub(crate) mod shape_delete_snapshot_copy_grant_input;

pub(crate) mod shape_delete_snapshot_schedule;

pub(crate) mod shape_delete_snapshot_schedule_input;

pub(crate) mod shape_delete_tags;

pub(crate) mod shape_delete_tags_input;

pub(crate) mod shape_delete_usage_limit;

pub(crate) mod shape_delete_usage_limit_input;

pub(crate) mod shape_deregister_namespace;

pub(crate) mod shape_deregister_namespace_input;

pub(crate) mod shape_describe_account_attributes;

pub(crate) mod shape_describe_account_attributes_input;

pub(crate) mod shape_describe_authentication_profiles;

pub(crate) mod shape_describe_authentication_profiles_input;

pub(crate) mod shape_describe_cluster_db_revisions;

pub(crate) mod shape_describe_cluster_db_revisions_input;

pub(crate) mod shape_describe_cluster_parameter_groups;

pub(crate) mod shape_describe_cluster_parameter_groups_input;

pub(crate) mod shape_describe_cluster_parameters;

pub(crate) mod shape_describe_cluster_parameters_input;

pub(crate) mod shape_describe_cluster_security_groups;

pub(crate) mod shape_describe_cluster_security_groups_input;

pub(crate) mod shape_describe_cluster_snapshots;

pub(crate) mod shape_describe_cluster_snapshots_input;

pub(crate) mod shape_describe_cluster_subnet_groups;

pub(crate) mod shape_describe_cluster_subnet_groups_input;

pub(crate) mod shape_describe_cluster_tracks;

pub(crate) mod shape_describe_cluster_tracks_input;

pub(crate) mod shape_describe_cluster_versions;

pub(crate) mod shape_describe_cluster_versions_input;

pub(crate) mod shape_describe_clusters;

pub(crate) mod shape_describe_clusters_input;

pub(crate) mod shape_describe_custom_domain_associations;

pub(crate) mod shape_describe_custom_domain_associations_input;

pub(crate) mod shape_describe_data_shares;

pub(crate) mod shape_describe_data_shares_for_consumer;

pub(crate) mod shape_describe_data_shares_for_consumer_input;

pub(crate) mod shape_describe_data_shares_for_producer;

pub(crate) mod shape_describe_data_shares_for_producer_input;

pub(crate) mod shape_describe_data_shares_input;

pub(crate) mod shape_describe_default_cluster_parameters;

pub(crate) mod shape_describe_default_cluster_parameters_input;

pub(crate) mod shape_describe_endpoint_access;

pub(crate) mod shape_describe_endpoint_access_input;

pub(crate) mod shape_describe_endpoint_authorization;

pub(crate) mod shape_describe_endpoint_authorization_input;

pub(crate) mod shape_describe_event_categories;

pub(crate) mod shape_describe_event_categories_input;

pub(crate) mod shape_describe_event_subscriptions;

pub(crate) mod shape_describe_event_subscriptions_input;

pub(crate) mod shape_describe_events;

pub(crate) mod shape_describe_events_input;

pub(crate) mod shape_describe_hsm_client_certificates;

pub(crate) mod shape_describe_hsm_client_certificates_input;

pub(crate) mod shape_describe_hsm_configurations;

pub(crate) mod shape_describe_hsm_configurations_input;

pub(crate) mod shape_describe_inbound_integrations;

pub(crate) mod shape_describe_inbound_integrations_input;

pub(crate) mod shape_describe_integrations;

pub(crate) mod shape_describe_integrations_input;

pub(crate) mod shape_describe_logging_status;

pub(crate) mod shape_describe_logging_status_input;

pub(crate) mod shape_describe_node_configuration_options;

pub(crate) mod shape_describe_node_configuration_options_input;

pub(crate) mod shape_describe_orderable_cluster_options;

pub(crate) mod shape_describe_orderable_cluster_options_input;

pub(crate) mod shape_describe_partners;

pub(crate) mod shape_describe_partners_input;

pub(crate) mod shape_describe_redshift_idc_applications;

pub(crate) mod shape_describe_redshift_idc_applications_input;

pub(crate) mod shape_describe_reserved_node_exchange_status;

pub(crate) mod shape_describe_reserved_node_exchange_status_input;

pub(crate) mod shape_describe_reserved_node_offerings;

pub(crate) mod shape_describe_reserved_node_offerings_input;

pub(crate) mod shape_describe_reserved_nodes;

pub(crate) mod shape_describe_reserved_nodes_input;

pub(crate) mod shape_describe_resize;

pub(crate) mod shape_describe_resize_input;

pub(crate) mod shape_describe_scheduled_actions;

pub(crate) mod shape_describe_scheduled_actions_input;

pub(crate) mod shape_describe_snapshot_copy_grants;

pub(crate) mod shape_describe_snapshot_copy_grants_input;

pub(crate) mod shape_describe_snapshot_schedules;

pub(crate) mod shape_describe_snapshot_schedules_input;

pub(crate) mod shape_describe_storage;

pub(crate) mod shape_describe_storage_input;

pub(crate) mod shape_describe_table_restore_status;

pub(crate) mod shape_describe_table_restore_status_input;

pub(crate) mod shape_describe_tags;

pub(crate) mod shape_describe_tags_input;

pub(crate) mod shape_describe_usage_limits;

pub(crate) mod shape_describe_usage_limits_input;

pub(crate) mod shape_disable_logging;

pub(crate) mod shape_disable_logging_input;

pub(crate) mod shape_disable_snapshot_copy;

pub(crate) mod shape_disable_snapshot_copy_input;

pub(crate) mod shape_disassociate_data_share_consumer;

pub(crate) mod shape_disassociate_data_share_consumer_input;

pub(crate) mod shape_enable_logging;

pub(crate) mod shape_enable_logging_input;

pub(crate) mod shape_enable_snapshot_copy;

pub(crate) mod shape_enable_snapshot_copy_input;

pub(crate) mod shape_failover_primary_compute;

pub(crate) mod shape_failover_primary_compute_input;

pub(crate) mod shape_get_cluster_credentials;

pub(crate) mod shape_get_cluster_credentials_input;

pub(crate) mod shape_get_cluster_credentials_with_iam;

pub(crate) mod shape_get_cluster_credentials_with_iam_input;

pub(crate) mod shape_get_identity_center_auth_token;

pub(crate) mod shape_get_identity_center_auth_token_input;

pub(crate) mod shape_get_reserved_node_exchange_configuration_options;

pub(crate) mod shape_get_reserved_node_exchange_configuration_options_input;

pub(crate) mod shape_get_reserved_node_exchange_offerings;

pub(crate) mod shape_get_reserved_node_exchange_offerings_input;

pub(crate) mod shape_get_resource_policy;

pub(crate) mod shape_get_resource_policy_input;

pub(crate) mod shape_list_recommendations;

pub(crate) mod shape_list_recommendations_input;

pub(crate) mod shape_modify_aqua_configuration;

pub(crate) mod shape_modify_aqua_configuration_input;

pub(crate) mod shape_modify_authentication_profile;

pub(crate) mod shape_modify_authentication_profile_input;

pub(crate) mod shape_modify_cluster;

pub(crate) mod shape_modify_cluster_db_revision;

pub(crate) mod shape_modify_cluster_db_revision_input;

pub(crate) mod shape_modify_cluster_iam_roles;

pub(crate) mod shape_modify_cluster_iam_roles_input;

pub(crate) mod shape_modify_cluster_input;

pub(crate) mod shape_modify_cluster_maintenance;

pub(crate) mod shape_modify_cluster_maintenance_input;

pub(crate) mod shape_modify_cluster_parameter_group;

pub(crate) mod shape_modify_cluster_parameter_group_input;

pub(crate) mod shape_modify_cluster_snapshot;

pub(crate) mod shape_modify_cluster_snapshot_input;

pub(crate) mod shape_modify_cluster_snapshot_schedule;

pub(crate) mod shape_modify_cluster_snapshot_schedule_input;

pub(crate) mod shape_modify_cluster_subnet_group;

pub(crate) mod shape_modify_cluster_subnet_group_input;

pub(crate) mod shape_modify_custom_domain_association;

pub(crate) mod shape_modify_custom_domain_association_input;

pub(crate) mod shape_modify_endpoint_access;

pub(crate) mod shape_modify_endpoint_access_input;

pub(crate) mod shape_modify_event_subscription;

pub(crate) mod shape_modify_event_subscription_input;

pub(crate) mod shape_modify_integration;

pub(crate) mod shape_modify_integration_input;

pub(crate) mod shape_modify_lakehouse_configuration;

pub(crate) mod shape_modify_lakehouse_configuration_input;

pub(crate) mod shape_modify_redshift_idc_application;

pub(crate) mod shape_modify_redshift_idc_application_input;

pub(crate) mod shape_modify_scheduled_action;

pub(crate) mod shape_modify_scheduled_action_input;

pub(crate) mod shape_modify_snapshot_copy_retention_period;

pub(crate) mod shape_modify_snapshot_copy_retention_period_input;

pub(crate) mod shape_modify_snapshot_schedule;

pub(crate) mod shape_modify_snapshot_schedule_input;

pub(crate) mod shape_modify_usage_limit;

pub(crate) mod shape_modify_usage_limit_input;

pub(crate) mod shape_pause_cluster;

pub(crate) mod shape_pause_cluster_input;

pub(crate) mod shape_purchase_reserved_node_offering;

pub(crate) mod shape_purchase_reserved_node_offering_input;

pub(crate) mod shape_put_resource_policy;

pub(crate) mod shape_put_resource_policy_input;

pub(crate) mod shape_reboot_cluster;

pub(crate) mod shape_reboot_cluster_input;

pub(crate) mod shape_register_namespace;

pub(crate) mod shape_register_namespace_input;

pub(crate) mod shape_reject_data_share;

pub(crate) mod shape_reject_data_share_input;

pub(crate) mod shape_reset_cluster_parameter_group;

pub(crate) mod shape_reset_cluster_parameter_group_input;

pub(crate) mod shape_resize_cluster;

pub(crate) mod shape_resize_cluster_input;

pub(crate) mod shape_restore_from_cluster_snapshot;

pub(crate) mod shape_restore_from_cluster_snapshot_input;

pub(crate) mod shape_restore_table_from_cluster_snapshot;

pub(crate) mod shape_restore_table_from_cluster_snapshot_input;

pub(crate) mod shape_resume_cluster;

pub(crate) mod shape_resume_cluster_input;

pub(crate) mod shape_revoke_cluster_security_group_ingress;

pub(crate) mod shape_revoke_cluster_security_group_ingress_input;

pub(crate) mod shape_revoke_endpoint_access;

pub(crate) mod shape_revoke_endpoint_access_input;

pub(crate) mod shape_revoke_snapshot_access;

pub(crate) mod shape_revoke_snapshot_access_input;

pub(crate) mod shape_rotate_encryption_key;

pub(crate) mod shape_rotate_encryption_key_input;

pub(crate) mod shape_update_partner_status;

pub(crate) mod shape_update_partner_status_input;

pub(crate) mod shape_access_to_cluster_denied_fault;

pub(crate) mod shape_access_to_snapshot_denied_fault;

pub(crate) mod shape_authentication_profile_already_exists_fault;

pub(crate) mod shape_authentication_profile_not_found_fault;

pub(crate) mod shape_authentication_profile_quota_exceeded_fault;

pub(crate) mod shape_authorization_already_exists_fault;

pub(crate) mod shape_authorization_not_found_fault;

pub(crate) mod shape_authorization_quota_exceeded_fault;

pub(crate) mod shape_authorized_token_issuer;

pub(crate) mod shape_batch_delete_request_size_exceeded_fault;

pub(crate) mod shape_batch_modify_cluster_snapshots_limit_exceeded_fault;

pub(crate) mod shape_bucket_not_found_fault;

pub(crate) mod shape_cluster_already_exists_fault;

pub(crate) mod shape_cluster_not_found_fault;

pub(crate) mod shape_cluster_on_latest_revision_fault;

pub(crate) mod shape_cluster_parameter_group_already_exists_fault;

pub(crate) mod shape_cluster_parameter_group_not_found_fault;

pub(crate) mod shape_cluster_parameter_group_quota_exceeded_fault;

pub(crate) mod shape_cluster_quota_exceeded_fault;

pub(crate) mod shape_cluster_security_group_already_exists_fault;

pub(crate) mod shape_cluster_security_group_not_found_fault;

pub(crate) mod shape_cluster_security_group_quota_exceeded_fault;

pub(crate) mod shape_cluster_snapshot_already_exists_fault;

pub(crate) mod shape_cluster_snapshot_not_found_fault;

pub(crate) mod shape_cluster_snapshot_quota_exceeded_fault;

pub(crate) mod shape_cluster_subnet_group_already_exists_fault;

pub(crate) mod shape_cluster_subnet_group_not_found_fault;

pub(crate) mod shape_cluster_subnet_group_quota_exceeded_fault;

pub(crate) mod shape_cluster_subnet_quota_exceeded_fault;

pub(crate) mod shape_conflict_policy_update_fault;

pub(crate) mod shape_copy_to_region_disabled_fault;

pub(crate) mod shape_custom_cname_association_fault;

pub(crate) mod shape_custom_domain_association_not_found_fault;

pub(crate) mod shape_delete_cluster_snapshot_message;

pub(crate) mod shape_dependent_service_access_denied_fault;

pub(crate) mod shape_dependent_service_request_throttling_fault;

pub(crate) mod shape_dependent_service_unavailable_fault;

pub(crate) mod shape_describe_integrations_filter;

pub(crate) mod shape_endpoint_already_exists_fault;

pub(crate) mod shape_endpoint_authorization_already_exists_fault;

pub(crate) mod shape_endpoint_authorization_not_found_fault;

pub(crate) mod shape_endpoint_authorizations_per_cluster_limit_exceeded_fault;

pub(crate) mod shape_endpoint_not_found_fault;

pub(crate) mod shape_endpoints_per_authorization_limit_exceeded_fault;

pub(crate) mod shape_endpoints_per_cluster_limit_exceeded_fault;

pub(crate) mod shape_event_subscription_quota_exceeded_fault;

pub(crate) mod shape_hsm_client_certificate_already_exists_fault;

pub(crate) mod shape_hsm_client_certificate_not_found_fault;

pub(crate) mod shape_hsm_client_certificate_quota_exceeded_fault;

pub(crate) mod shape_hsm_configuration_already_exists_fault;

pub(crate) mod shape_hsm_configuration_not_found_fault;

pub(crate) mod shape_hsm_configuration_quota_exceeded_fault;

pub(crate) mod shape_in_progress_table_restore_quota_exceeded_fault;

pub(crate) mod shape_incompatible_orderable_options;

pub(crate) mod shape_insufficient_cluster_capacity_fault;

pub(crate) mod shape_insufficient_s3_bucket_policy_fault;

pub(crate) mod shape_integration_already_exists_fault;

pub(crate) mod shape_integration_conflict_operation_fault;

pub(crate) mod shape_integration_conflict_state_fault;

pub(crate) mod shape_integration_not_found_fault;

pub(crate) mod shape_integration_quota_exceeded_fault;

pub(crate) mod shape_integration_source_not_found_fault;

pub(crate) mod shape_integration_target_not_found_fault;

pub(crate) mod shape_invalid_authentication_profile_request_fault;

pub(crate) mod shape_invalid_authorization_state_fault;

pub(crate) mod shape_invalid_cluster_parameter_group_state_fault;

pub(crate) mod shape_invalid_cluster_security_group_state_fault;

pub(crate) mod shape_invalid_cluster_snapshot_schedule_state_fault;

pub(crate) mod shape_invalid_cluster_snapshot_state_fault;

pub(crate) mod shape_invalid_cluster_state_fault;

pub(crate) mod shape_invalid_cluster_subnet_group_state_fault;

pub(crate) mod shape_invalid_cluster_subnet_state_fault;

pub(crate) mod shape_invalid_cluster_track_fault;

pub(crate) mod shape_invalid_data_share_fault;

pub(crate) mod shape_invalid_elastic_ip_fault;

pub(crate) mod shape_invalid_endpoint_state_fault;

pub(crate) mod shape_invalid_hsm_client_certificate_state_fault;

pub(crate) mod shape_invalid_hsm_configuration_state_fault;

pub(crate) mod shape_invalid_namespace_fault;

pub(crate) mod shape_invalid_policy_fault;

pub(crate) mod shape_invalid_reserved_node_state_fault;

pub(crate) mod shape_invalid_restore_fault;

pub(crate) mod shape_invalid_retention_period_fault;

pub(crate) mod shape_invalid_s3_bucket_name_fault;

pub(crate) mod shape_invalid_s3_key_prefix_fault;

pub(crate) mod shape_invalid_schedule_fault;

pub(crate) mod shape_invalid_scheduled_action_fault;

pub(crate) mod shape_invalid_snapshot_copy_grant_state_fault;

pub(crate) mod shape_invalid_subnet;

pub(crate) mod shape_invalid_subscription_state_fault;

pub(crate) mod shape_invalid_table_restore_argument_fault;

pub(crate) mod shape_invalid_tag_fault;

pub(crate) mod shape_invalid_usage_limit_fault;

pub(crate) mod shape_invalid_vpc_network_state_fault;

pub(crate) mod shape_ipv6_cidr_block_not_found_fault;

pub(crate) mod shape_limit_exceeded_fault;

pub(crate) mod shape_namespace_identifier_union;

pub(crate) mod shape_node_configuration_options_filter;

pub(crate) mod shape_number_of_nodes_per_cluster_limit_exceeded_fault;

pub(crate) mod shape_number_of_nodes_quota_exceeded_fault;

pub(crate) mod shape_parameter;

pub(crate) mod shape_partner_not_found_fault;

pub(crate) mod shape_redshift_idc_application_already_exists_fault;

pub(crate) mod shape_redshift_idc_application_not_exists_fault;

pub(crate) mod shape_redshift_idc_application_quota_exceeded_fault;

pub(crate) mod shape_redshift_invalid_parameter_fault;

pub(crate) mod shape_reserved_node_already_exists_fault;

pub(crate) mod shape_reserved_node_already_migrated_fault;

pub(crate) mod shape_reserved_node_exchange_not_found_fault;

pub(crate) mod shape_reserved_node_not_found_fault;

pub(crate) mod shape_reserved_node_offering_not_found_fault;

pub(crate) mod shape_reserved_node_quota_exceeded_fault;

pub(crate) mod shape_resize_not_found_fault;

pub(crate) mod shape_resource_not_found_fault;

pub(crate) mod shape_schedule_definition_type_unsupported_fault;

pub(crate) mod shape_scheduled_action_already_exists_fault;

pub(crate) mod shape_scheduled_action_filter;

pub(crate) mod shape_scheduled_action_not_found_fault;

pub(crate) mod shape_scheduled_action_quota_exceeded_fault;

pub(crate) mod shape_scheduled_action_type;

pub(crate) mod shape_scheduled_action_type_unsupported_fault;

pub(crate) mod shape_service_integrations_union;

pub(crate) mod shape_snapshot_copy_already_disabled_fault;

pub(crate) mod shape_snapshot_copy_already_enabled_fault;

pub(crate) mod shape_snapshot_copy_disabled_fault;

pub(crate) mod shape_snapshot_copy_grant_already_exists_fault;

pub(crate) mod shape_snapshot_copy_grant_not_found_fault;

pub(crate) mod shape_snapshot_copy_grant_quota_exceeded_fault;

pub(crate) mod shape_snapshot_schedule_already_exists_fault;

pub(crate) mod shape_snapshot_schedule_not_found_fault;

pub(crate) mod shape_snapshot_schedule_quota_exceeded_fault;

pub(crate) mod shape_snapshot_schedule_update_in_progress_fault;

pub(crate) mod shape_snapshot_sorting_entity;

pub(crate) mod shape_sns_invalid_topic_fault;

pub(crate) mod shape_sns_no_authorization_fault;

pub(crate) mod shape_sns_topic_arn_not_found_fault;

pub(crate) mod shape_source_not_found_fault;

pub(crate) mod shape_subnet_already_in_use;

pub(crate) mod shape_subscription_already_exist_fault;

pub(crate) mod shape_subscription_category_not_found_fault;

pub(crate) mod shape_subscription_event_id_not_found_fault;

pub(crate) mod shape_subscription_not_found_fault;

pub(crate) mod shape_subscription_severity_not_found_fault;

pub(crate) mod shape_table_limit_exceeded_fault;

pub(crate) mod shape_table_restore_not_found_fault;

pub(crate) mod shape_tag;

pub(crate) mod shape_tag_limit_exceeded_fault;

pub(crate) mod shape_unauthorized_operation;

pub(crate) mod shape_unauthorized_partner_integration_fault;

pub(crate) mod shape_unknown_snapshot_copy_region_fault;

pub(crate) mod shape_unsupported_operation_fault;

pub(crate) mod shape_unsupported_option_fault;

pub(crate) mod shape_usage_limit_already_exists_fault;

pub(crate) mod shape_usage_limit_not_found_fault;

pub(crate) mod shape_aqua_configuration;

pub(crate) mod shape_associated_cluster_list;

pub(crate) mod shape_association_list;

pub(crate) mod shape_attribute_list;

pub(crate) mod shape_authentication_profile_list;

pub(crate) mod shape_batch_snapshot_operation_error_list;

pub(crate) mod shape_batch_snapshot_operation_errors;

pub(crate) mod shape_cluster;

pub(crate) mod shape_cluster_db_revisions_list;

pub(crate) mod shape_cluster_list;

pub(crate) mod shape_cluster_parameter_group;

pub(crate) mod shape_cluster_security_group;

pub(crate) mod shape_cluster_security_groups;

pub(crate) mod shape_cluster_subnet_group;

pub(crate) mod shape_cluster_subnet_groups;

pub(crate) mod shape_cluster_version_list;

pub(crate) mod shape_data_share_association_list;

pub(crate) mod shape_data_share_list;

pub(crate) mod shape_default_cluster_parameters;

pub(crate) mod shape_encryption_context_map;

pub(crate) mod shape_endpoint_accesses;

pub(crate) mod shape_endpoint_authorizations;

pub(crate) mod shape_event_categories_map_list;

pub(crate) mod shape_event_list;

pub(crate) mod shape_event_subscription;

pub(crate) mod shape_event_subscriptions_list;

pub(crate) mod shape_hsm_client_certificate;

pub(crate) mod shape_hsm_client_certificate_list;

pub(crate) mod shape_hsm_configuration;

pub(crate) mod shape_hsm_configuration_list;

pub(crate) mod shape_import_tables_completed;

pub(crate) mod shape_import_tables_in_progress;

pub(crate) mod shape_import_tables_not_started;

pub(crate) mod shape_inbound_integration_list;

pub(crate) mod shape_integration_error_list;

pub(crate) mod shape_integration_list;

pub(crate) mod shape_lake_formation_scope_union;

pub(crate) mod shape_log_type_list;

pub(crate) mod shape_node_configuration_option_list;

pub(crate) mod shape_orderable_cluster_options_list;

pub(crate) mod shape_parameter_group_list;

pub(crate) mod shape_parameters_list;

pub(crate) mod shape_partner_integration_info_list;

pub(crate) mod shape_pause_cluster_message;

pub(crate) mod shape_provisioned_identifier;

pub(crate) mod shape_recommendation_list;

pub(crate) mod shape_redshift_idc_application;

pub(crate) mod shape_redshift_idc_application_list;

pub(crate) mod shape_redshift_scope_union;

pub(crate) mod shape_reserved_node;

pub(crate) mod shape_reserved_node_configuration_option_list;

pub(crate) mod shape_reserved_node_exchange_status_list;

pub(crate) mod shape_reserved_node_list;

pub(crate) mod shape_reserved_node_offering_list;

pub(crate) mod shape_resize_cluster_message;

pub(crate) mod shape_resource_policy;

pub(crate) mod shape_resume_cluster_message;

pub(crate) mod shape_s3_access_grants_scope_union;

pub(crate) mod shape_schedule_definition_list;

pub(crate) mod shape_scheduled_action_list;

pub(crate) mod shape_scheduled_action_time_list;

pub(crate) mod shape_scheduled_snapshot_time_list;

pub(crate) mod shape_serverless_identifier;

pub(crate) mod shape_snapshot;

pub(crate) mod shape_snapshot_copy_grant;

pub(crate) mod shape_snapshot_copy_grant_list;

pub(crate) mod shape_snapshot_identifier_list;

pub(crate) mod shape_snapshot_list;

pub(crate) mod shape_snapshot_schedule_list;

pub(crate) mod shape_table_restore_status;

pub(crate) mod shape_table_restore_status_list;

pub(crate) mod shape_tag_list;

pub(crate) mod shape_tagged_resource_list;

pub(crate) mod shape_track_list;

pub(crate) mod shape_usage_limits;

pub(crate) mod shape_vpc_endpoint;

pub(crate) mod shape_vpc_identifier_list;

pub(crate) mod shape_vpc_security_group_membership_list;

pub(crate) mod shape_account_attribute;

pub(crate) mod shape_accounts_with_restore_access_list;

pub(crate) mod shape_association;

pub(crate) mod shape_authentication_profile;

pub(crate) mod shape_authorized_token_issuer_list;

pub(crate) mod shape_cluster_associated_to_schedule;

pub(crate) mod shape_cluster_db_revision;

pub(crate) mod shape_cluster_iam_role_list;

pub(crate) mod shape_cluster_nodes_list;

pub(crate) mod shape_cluster_parameter_group_status_list;

pub(crate) mod shape_cluster_security_group_membership_list;

pub(crate) mod shape_cluster_snapshot_copy_status;

pub(crate) mod shape_cluster_version;

pub(crate) mod shape_connect;

pub(crate) mod shape_data_share;

pub(crate) mod shape_data_share_association;

pub(crate) mod shape_data_transfer_progress;

pub(crate) mod shape_deferred_maintenance_windows_list;

pub(crate) mod shape_ec2_security_group_list;

pub(crate) mod shape_elastic_ip_status;

pub(crate) mod shape_endpoint;

pub(crate) mod shape_endpoint_access;

pub(crate) mod shape_endpoint_authorization;

pub(crate) mod shape_event;

pub(crate) mod shape_event_categories_list;

pub(crate) mod shape_event_categories_map;

pub(crate) mod shape_hsm_status;

pub(crate) mod shape_inbound_integration;

pub(crate) mod shape_integration;

pub(crate) mod shape_integration_error;

pub(crate) mod shape_ip_range_list;

pub(crate) mod shape_lake_formation_query;

pub(crate) mod shape_maintenance_track;

pub(crate) mod shape_network_interface_list;

pub(crate) mod shape_node_configuration_option;

pub(crate) mod shape_orderable_cluster_option;

pub(crate) mod shape_partner_integration_info;

pub(crate) mod shape_pending_actions_list;

pub(crate) mod shape_pending_modified_values;

pub(crate) mod shape_read_write_access;

pub(crate) mod shape_recommendation;

pub(crate) mod shape_recurring_charge_list;

pub(crate) mod shape_reserved_node_configuration_option;

pub(crate) mod shape_reserved_node_exchange_status;

pub(crate) mod shape_reserved_node_offering;

pub(crate) mod shape_resize_info;

pub(crate) mod shape_restorable_node_type_list;

pub(crate) mod shape_restore_status;

pub(crate) mod shape_scheduled_action;

pub(crate) mod shape_secondary_cluster_info;

pub(crate) mod shape_service_integration_list;

pub(crate) mod shape_snapshot_error_message;

pub(crate) mod shape_snapshot_schedule;

pub(crate) mod shape_source_ids_list;

pub(crate) mod shape_subnet_list;

pub(crate) mod shape_tag_key_list;

pub(crate) mod shape_tagged_resource;

pub(crate) mod shape_usage_limit;

pub(crate) mod shape_value_string_list;

pub(crate) mod shape_vpc_security_group_membership;

pub(crate) mod shape_account_with_restore_access;

pub(crate) mod shape_attribute_value_list;

pub(crate) mod shape_availability_zone_list;

pub(crate) mod shape_certificate_association_list;

pub(crate) mod shape_cluster_iam_role;

pub(crate) mod shape_cluster_node;

pub(crate) mod shape_cluster_parameter_group_status;

pub(crate) mod shape_cluster_security_group_membership;

pub(crate) mod shape_deferred_maintenance_window;

pub(crate) mod shape_ec2_security_group;

pub(crate) mod shape_eligible_tracks_to_update_list;

pub(crate) mod shape_event_info_map_list;

pub(crate) mod shape_ip_range;

pub(crate) mod shape_network_interface;

pub(crate) mod shape_recommended_action_list;

pub(crate) mod shape_recurring_charge;

pub(crate) mod shape_reference_link_list;

pub(crate) mod shape_revision_targets_list;

pub(crate) mod shape_subnet;

pub(crate) mod shape_vpc_endpoints_list;

pub(crate) mod shape_attribute_value_target;

pub(crate) mod shape_authorized_audience_list;

pub(crate) mod shape_availability_zone;

pub(crate) mod shape_certificate_association;

pub(crate) mod shape_cluster_parameter_status_list;

pub(crate) mod shape_event_info_map;

pub(crate) mod shape_lake_formation_service_integrations;

pub(crate) mod shape_recommended_action;

pub(crate) mod shape_redshift_service_integrations;

pub(crate) mod shape_reference_link;

pub(crate) mod shape_revision_target;

pub(crate) mod shape_s3_access_grants_service_integrations;

pub(crate) mod shape_update_target;

pub(crate) mod shape_cluster_parameter_status;

pub(crate) mod shape_supported_operation_list;

pub(crate) mod shape_supported_platforms_list;

pub(crate) mod shape_supported_operation;

pub(crate) mod shape_supported_platform;