aws-sdk-ecs 1.128.0

AWS SDK for Amazon EC2 Container Service
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
// 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_continue_service_deployment;

pub(crate) mod shape_create_capacity_provider;

pub(crate) mod shape_create_cluster;

pub(crate) mod shape_create_daemon;

pub(crate) mod shape_create_express_gateway_service;

pub(crate) mod shape_create_service;

pub(crate) mod shape_create_task_set;

pub(crate) mod shape_delete_account_setting;

pub(crate) mod shape_delete_attributes;

pub(crate) mod shape_delete_capacity_provider;

pub(crate) mod shape_delete_cluster;

pub(crate) mod shape_delete_daemon;

pub(crate) mod shape_delete_daemon_task_definition;

pub(crate) mod shape_delete_express_gateway_service;

pub(crate) mod shape_delete_service;

pub(crate) mod shape_delete_task_definitions;

pub(crate) mod shape_delete_task_set;

pub(crate) mod shape_deregister_container_instance;

pub(crate) mod shape_deregister_task_definition;

pub(crate) mod shape_describe_capacity_providers;

pub(crate) mod shape_describe_clusters;

pub(crate) mod shape_describe_container_instances;

pub(crate) mod shape_describe_daemon;

pub(crate) mod shape_describe_daemon_deployments;

pub(crate) mod shape_describe_daemon_revisions;

pub(crate) mod shape_describe_daemon_task_definition;

pub(crate) mod shape_describe_express_gateway_service;

pub(crate) mod shape_describe_service_deployments;

pub(crate) mod shape_describe_service_revisions;

pub(crate) mod shape_describe_services;

pub(crate) mod shape_describe_task_definition;

pub(crate) mod shape_describe_task_sets;

pub(crate) mod shape_describe_tasks;

pub(crate) mod shape_discover_poll_endpoint;

pub(crate) mod shape_execute_command;

pub(crate) mod shape_get_task_protection;

pub(crate) mod shape_list_account_settings;

pub(crate) mod shape_list_attributes;

pub(crate) mod shape_list_clusters;

pub(crate) mod shape_list_container_instances;

pub(crate) mod shape_list_daemon_deployments;

pub(crate) mod shape_list_daemon_task_definitions;

pub(crate) mod shape_list_daemons;

pub(crate) mod shape_list_service_deployments;

pub(crate) mod shape_list_services;

pub(crate) mod shape_list_services_by_namespace;

pub(crate) mod shape_list_tags_for_resource;

pub(crate) mod shape_list_task_definition_families;

pub(crate) mod shape_list_task_definitions;

pub(crate) mod shape_list_tasks;

pub(crate) mod shape_put_account_setting;

pub(crate) mod shape_put_account_setting_default;

pub(crate) mod shape_put_attributes;

pub(crate) mod shape_put_cluster_capacity_providers;

pub(crate) mod shape_register_container_instance;

pub(crate) mod shape_register_daemon_task_definition;

pub(crate) mod shape_register_task_definition;

pub(crate) mod shape_run_task;

pub(crate) mod shape_start_task;

pub(crate) mod shape_stop_service_deployment;

pub(crate) mod shape_stop_task;

pub(crate) mod shape_submit_attachment_state_changes;

pub(crate) mod shape_submit_container_state_change;

pub(crate) mod shape_submit_task_state_change;

pub(crate) mod shape_tag_resource;

pub(crate) mod shape_untag_resource;

pub(crate) mod shape_update_capacity_provider;

pub(crate) mod shape_update_cluster;

pub(crate) mod shape_update_cluster_settings;

pub(crate) mod shape_update_container_agent;

pub(crate) mod shape_update_container_instances_state;

pub(crate) mod shape_update_daemon;

pub(crate) mod shape_update_express_gateway_service;

pub(crate) mod shape_update_service;

pub(crate) mod shape_update_service_primary_task_set;

pub(crate) mod shape_update_task_protection;

pub(crate) mod shape_update_task_set;

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

pub(crate) mod shape_access_denied_exception;

pub(crate) mod shape_attribute_limit_exceeded_exception;

pub(crate) mod shape_blocked_exception;

pub(crate) mod shape_client_exception;

pub(crate) mod shape_cluster_contains_capacity_provider_exception;

pub(crate) mod shape_cluster_contains_container_instances_exception;

pub(crate) mod shape_cluster_contains_services_exception;

pub(crate) mod shape_cluster_contains_tasks_exception;

pub(crate) mod shape_cluster_not_found_exception;

pub(crate) mod shape_conflict_exception;

pub(crate) mod shape_continue_service_deployment_input;

pub(crate) mod shape_create_capacity_provider_input;

pub(crate) mod shape_create_cluster_input;

pub(crate) mod shape_create_daemon_input;

pub(crate) mod shape_create_express_gateway_service_input;

pub(crate) mod shape_create_service_input;

pub(crate) mod shape_create_task_set_input;

pub(crate) mod shape_daemon_not_active_exception;

pub(crate) mod shape_daemon_not_found_exception;

pub(crate) mod shape_delete_account_setting_input;

pub(crate) mod shape_delete_attributes_input;

pub(crate) mod shape_delete_capacity_provider_input;

pub(crate) mod shape_delete_cluster_input;

pub(crate) mod shape_delete_daemon_input;

pub(crate) mod shape_delete_daemon_task_definition_input;

pub(crate) mod shape_delete_express_gateway_service_input;

pub(crate) mod shape_delete_service_input;

pub(crate) mod shape_delete_task_definitions_input;

pub(crate) mod shape_delete_task_set_input;

pub(crate) mod shape_deregister_container_instance_input;

pub(crate) mod shape_deregister_task_definition_input;

pub(crate) mod shape_describe_capacity_providers_input;

pub(crate) mod shape_describe_clusters_input;

pub(crate) mod shape_describe_container_instances_input;

pub(crate) mod shape_describe_daemon_deployments_input;

pub(crate) mod shape_describe_daemon_input;

pub(crate) mod shape_describe_daemon_revisions_input;

pub(crate) mod shape_describe_daemon_task_definition_input;

pub(crate) mod shape_describe_express_gateway_service_input;

pub(crate) mod shape_describe_service_deployments_input;

pub(crate) mod shape_describe_service_revisions_input;

pub(crate) mod shape_describe_services_input;

pub(crate) mod shape_describe_task_definition_input;

pub(crate) mod shape_describe_task_sets_input;

pub(crate) mod shape_describe_tasks_input;

pub(crate) mod shape_discover_poll_endpoint_input;

pub(crate) mod shape_execute_command_input;

pub(crate) mod shape_get_task_protection_input;

pub(crate) mod shape_invalid_parameter_exception;

pub(crate) mod shape_limit_exceeded_exception;

pub(crate) mod shape_list_account_settings_input;

pub(crate) mod shape_list_attributes_input;

pub(crate) mod shape_list_clusters_input;

pub(crate) mod shape_list_container_instances_input;

pub(crate) mod shape_list_daemon_deployments_input;

pub(crate) mod shape_list_daemon_task_definitions_input;

pub(crate) mod shape_list_daemons_input;

pub(crate) mod shape_list_service_deployments_input;

pub(crate) mod shape_list_services_by_namespace_input;

pub(crate) mod shape_list_services_input;

pub(crate) mod shape_list_tags_for_resource_input;

pub(crate) mod shape_list_task_definition_families_input;

pub(crate) mod shape_list_task_definitions_input;

pub(crate) mod shape_list_tasks_input;

pub(crate) mod shape_missing_version_exception;

pub(crate) mod shape_namespace_not_found_exception;

pub(crate) mod shape_no_update_available_exception;

pub(crate) mod shape_platform_task_definition_incompatibility_exception;

pub(crate) mod shape_platform_unknown_exception;

pub(crate) mod shape_put_account_setting_default_input;

pub(crate) mod shape_put_account_setting_input;

pub(crate) mod shape_put_attributes_input;

pub(crate) mod shape_put_cluster_capacity_providers_input;

pub(crate) mod shape_register_container_instance_input;

pub(crate) mod shape_register_daemon_task_definition_input;

pub(crate) mod shape_register_task_definition_input;

pub(crate) mod shape_resource_in_use_exception;

pub(crate) mod shape_resource_not_found_exception;

pub(crate) mod shape_run_task_input;

pub(crate) mod shape_server_exception;

pub(crate) mod shape_service_deployment_not_found_exception;

pub(crate) mod shape_service_not_active_exception;

pub(crate) mod shape_service_not_found_exception;

pub(crate) mod shape_start_task_input;

pub(crate) mod shape_stop_service_deployment_input;

pub(crate) mod shape_stop_task_input;

pub(crate) mod shape_submit_attachment_state_changes_input;

pub(crate) mod shape_submit_container_state_change_input;

pub(crate) mod shape_submit_task_state_change_input;

pub(crate) mod shape_tag_resource_input;

pub(crate) mod shape_target_not_connected_exception;

pub(crate) mod shape_target_not_found_exception;

pub(crate) mod shape_task_set_not_found_exception;

pub(crate) mod shape_unsupported_feature_exception;

pub(crate) mod shape_untag_resource_input;

pub(crate) mod shape_update_capacity_provider_input;

pub(crate) mod shape_update_cluster_input;

pub(crate) mod shape_update_cluster_settings_input;

pub(crate) mod shape_update_container_agent_input;

pub(crate) mod shape_update_container_instances_state_input;

pub(crate) mod shape_update_daemon_input;

pub(crate) mod shape_update_express_gateway_service_input;

pub(crate) mod shape_update_in_progress_exception;

pub(crate) mod shape_update_service_input;

pub(crate) mod shape_update_service_primary_task_set_input;

pub(crate) mod shape_update_task_protection_input;

pub(crate) mod shape_update_task_set_input;

pub(crate) mod shape_attachment_state_change;

pub(crate) mod shape_attribute;

pub(crate) mod shape_attributes;

pub(crate) mod shape_auto_scaling_group_provider;

pub(crate) mod shape_auto_scaling_group_provider_update;

pub(crate) mod shape_capacity_provider;

pub(crate) mod shape_capacity_provider_strategy_item;

pub(crate) mod shape_capacity_providers;

pub(crate) mod shape_cluster;

pub(crate) mod shape_cluster_configuration;

pub(crate) mod shape_cluster_service_connect_defaults_request;

pub(crate) mod shape_cluster_setting;

pub(crate) mod shape_clusters;

pub(crate) mod shape_container_definition;

pub(crate) mod shape_container_instance;

pub(crate) mod shape_container_instances;

pub(crate) mod shape_container_state_change;

pub(crate) mod shape_create_managed_instances_provider_configuration;

pub(crate) mod shape_created_at;

pub(crate) mod shape_daemon_container_definition;

pub(crate) mod shape_daemon_deployment_configuration;

pub(crate) mod shape_daemon_deployment_list;

pub(crate) mod shape_daemon_deployment_summary_list;

pub(crate) mod shape_daemon_detail;

pub(crate) mod shape_daemon_revisions;

pub(crate) mod shape_daemon_summaries_list;

pub(crate) mod shape_daemon_task_definition;

pub(crate) mod shape_daemon_task_definition_summaries;

pub(crate) mod shape_daemon_volume;

pub(crate) mod shape_deployment_configuration;

pub(crate) mod shape_deployment_controller;

pub(crate) mod shape_ecs_express_gateway_service;

pub(crate) mod shape_ephemeral_storage;

pub(crate) mod shape_express_gateway_container;

pub(crate) mod shape_express_gateway_scaling_target;

pub(crate) mod shape_express_gateway_service_network_configuration;

pub(crate) mod shape_failures;

pub(crate) mod shape_inference_accelerator;

pub(crate) mod shape_load_balancer;

pub(crate) mod shape_managed_agent_state_change;

pub(crate) mod shape_network_binding;

pub(crate) mod shape_network_configuration;

pub(crate) mod shape_placement_constraint;

pub(crate) mod shape_placement_strategy;

pub(crate) mod shape_platform_device;

pub(crate) mod shape_protected_tasks;

pub(crate) mod shape_proxy_configuration;

pub(crate) mod shape_resource;

pub(crate) mod shape_resource_ids;

pub(crate) mod shape_runtime_platform;

pub(crate) mod shape_scale;

pub(crate) mod shape_service;

pub(crate) mod shape_service_connect_configuration;

pub(crate) mod shape_service_deployments;

pub(crate) mod shape_service_deployments_brief;

pub(crate) mod shape_service_registry;

pub(crate) mod shape_service_revisions;

pub(crate) mod shape_service_volume_configuration;

pub(crate) mod shape_services;

pub(crate) mod shape_session;

pub(crate) mod shape_setting;

pub(crate) mod shape_settings;

pub(crate) mod shape_string_list;

pub(crate) mod shape_tag;

pub(crate) mod shape_tags;

pub(crate) mod shape_task;

pub(crate) mod shape_task_definition;

pub(crate) mod shape_task_definition_list;

pub(crate) mod shape_task_definition_placement_constraint;

pub(crate) mod shape_task_override;

pub(crate) mod shape_task_set;

pub(crate) mod shape_task_sets;

pub(crate) mod shape_task_volume_configuration;

pub(crate) mod shape_tasks;

pub(crate) mod shape_update_managed_instances_provider_configuration;

pub(crate) mod shape_updated_express_gateway_service;

pub(crate) mod shape_version_info;

pub(crate) mod shape_volume;

pub(crate) mod shape_vpc_lattice_configuration;

pub(crate) mod shape_advanced_configuration;

pub(crate) mod shape_attachments;

pub(crate) mod shape_auto_repair_configuration;

pub(crate) mod shape_aws_vpc_configuration;

pub(crate) mod shape_canary_configuration;

pub(crate) mod shape_capacity_provider_strategy;

pub(crate) mod shape_cluster_service_connect_defaults;

pub(crate) mod shape_cluster_settings;

pub(crate) mod shape_compatibility_list;

pub(crate) mod shape_container_definitions;

pub(crate) mod shape_container_dependency;

pub(crate) mod shape_container_instance_health_status;

pub(crate) mod shape_container_override;

pub(crate) mod shape_container_restart_policy;

pub(crate) mod shape_containers;

pub(crate) mod shape_daemon_alarm_configuration;

pub(crate) mod shape_daemon_container_definition_list;

pub(crate) mod shape_daemon_deployment;

pub(crate) mod shape_daemon_deployment_summary;

pub(crate) mod shape_daemon_linux_parameters;

pub(crate) mod shape_daemon_revision;

pub(crate) mod shape_daemon_revision_detail_list;

pub(crate) mod shape_daemon_summary;

pub(crate) mod shape_daemon_task_definition_summary;

pub(crate) mod shape_daemon_volume_list;

pub(crate) mod shape_deployment_alarms;

pub(crate) mod shape_deployment_circuit_breaker;

pub(crate) mod shape_deployment_ephemeral_storage;

pub(crate) mod shape_deployment_lifecycle_hook;

pub(crate) mod shape_deployments;

pub(crate) mod shape_docker_volume_configuration;

pub(crate) mod shape_efs_volume_configuration;

pub(crate) mod shape_environment_file;

pub(crate) mod shape_execute_command_configuration;

pub(crate) mod shape_express_gateway_repository_credentials;

pub(crate) mod shape_express_gateway_service_aws_logs_configuration;

pub(crate) mod shape_express_gateway_service_configuration;

pub(crate) mod shape_express_gateway_service_configurations;

pub(crate) mod shape_express_gateway_service_status;

pub(crate) mod shape_f_sx_windows_file_server_volume_configuration;

pub(crate) mod shape_failure;

pub(crate) mod shape_firelens_configuration;

pub(crate) mod shape_health_check;

pub(crate) mod shape_host_entry;

pub(crate) mod shape_host_volume_properties;

pub(crate) mod shape_inference_accelerator_override;

pub(crate) mod shape_inference_accelerators;

pub(crate) mod shape_infrastructure_optimization;

pub(crate) mod shape_instance_launch_template;

pub(crate) mod shape_instance_launch_template_update;

pub(crate) mod shape_key_value_pair;

pub(crate) mod shape_linear_configuration;

pub(crate) mod shape_linux_parameters;

pub(crate) mod shape_load_balancers;

pub(crate) mod shape_log_configuration;

pub(crate) mod shape_managed_instances_provider;

pub(crate) mod shape_managed_scaling;

pub(crate) mod shape_managed_storage_configuration;

pub(crate) mod shape_mount_point;

pub(crate) mod shape_placement_constraints;

pub(crate) mod shape_placement_strategies;

pub(crate) mod shape_port_mapping;

pub(crate) mod shape_protected_task;

pub(crate) mod shape_repository_credentials;

pub(crate) mod shape_requires_attributes;

pub(crate) mod shape_resource_requirement;

pub(crate) mod shape_resources;

pub(crate) mod shape_s3_files_volume_configuration;

pub(crate) mod shape_secret;

pub(crate) mod shape_service_connect_access_log_configuration;

pub(crate) mod shape_service_connect_service;

pub(crate) mod shape_service_current_revision_summary_list;

pub(crate) mod shape_service_deployment;

pub(crate) mod shape_service_deployment_brief;

pub(crate) mod shape_service_events;

pub(crate) mod shape_service_managed_ebs_volume_configuration;

pub(crate) mod shape_service_registries;

pub(crate) mod shape_service_revision;

pub(crate) mod shape_statistics;

pub(crate) mod shape_system_control;

pub(crate) mod shape_task_definition_placement_constraints;

pub(crate) mod shape_task_ephemeral_storage;

pub(crate) mod shape_task_managed_ebs_volume_configuration;

pub(crate) mod shape_ulimit;

pub(crate) mod shape_volume_from;

pub(crate) mod shape_volume_list;

pub(crate) mod shape_attachment;

pub(crate) mod shape_capacity_reservation_request;

pub(crate) mod shape_container;

pub(crate) mod shape_container_images;

pub(crate) mod shape_container_overrides;

pub(crate) mod shape_daemon_circuit_breaker;

pub(crate) mod shape_daemon_container_images;

pub(crate) mod shape_daemon_deployment_alarms;

pub(crate) mod shape_daemon_deployment_revision_detail;

pub(crate) mod shape_daemon_deployment_revision_detail_list;

pub(crate) mod shape_daemon_revision_detail;

pub(crate) mod shape_daemon_rollback;

pub(crate) mod shape_deployment;

pub(crate) mod shape_deployment_lifecycle_hook_detail_list;

pub(crate) mod shape_deployment_lifecycle_hook_list;

pub(crate) mod shape_deployment_lifecycle_hook_timeout_configuration;

pub(crate) mod shape_device;

pub(crate) mod shape_ebs_tag_specification;

pub(crate) mod shape_ecs_managed_resources;

pub(crate) mod shape_efs_authorization_config;

pub(crate) mod shape_execute_command_log_configuration;

pub(crate) mod shape_f_sx_windows_file_server_authorization_config;

pub(crate) mod shape_inference_accelerator_overrides;

pub(crate) mod shape_ingress_path_summaries;

pub(crate) mod shape_instance_health_check_result_list;

pub(crate) mod shape_instance_requirements_request;

pub(crate) mod shape_kernel_capabilities;

pub(crate) mod shape_managed_instances_local_storage_configuration;

pub(crate) mod shape_managed_instances_network_configuration;

pub(crate) mod shape_managed_instances_storage_configuration;

pub(crate) mod shape_proxy_configuration_properties;

pub(crate) mod shape_resolved_configuration;

pub(crate) mod shape_rollback;

pub(crate) mod shape_service_connect_client_alias;

pub(crate) mod shape_service_connect_tls_configuration;

pub(crate) mod shape_service_current_revision_summary;

pub(crate) mod shape_service_deployment_alarms;

pub(crate) mod shape_service_deployment_circuit_breaker;

pub(crate) mod shape_service_event;

pub(crate) mod shape_service_revision_summary;

pub(crate) mod shape_service_revisions_summary_list;

pub(crate) mod shape_service_volume_configurations;

pub(crate) mod shape_task_managed_ebs_volume_termination_policy;

pub(crate) mod shape_timeout_configuration;

pub(crate) mod shape_tmpfs;

pub(crate) mod shape_vpc_lattice_configurations;

pub(crate) mod shape_accelerator_count_request;

pub(crate) mod shape_accelerator_total_memory_mib_request;

pub(crate) mod shape_attachment_details;

pub(crate) mod shape_baseline_ebs_bandwidth_mbps_request;

pub(crate) mod shape_container_dependencies;

pub(crate) mod shape_container_image;

pub(crate) mod shape_daemon_capacity_provider_list;

pub(crate) mod shape_daemon_container_image;

pub(crate) mod shape_daemon_deployment_capacity_provider_list;

pub(crate) mod shape_deployment_lifecycle_hook_detail;

pub(crate) mod shape_docker_labels_map;

pub(crate) mod shape_environment_files;

pub(crate) mod shape_environment_variables;

pub(crate) mod shape_gpu_ids;

pub(crate) mod shape_host_entry_list;

pub(crate) mod shape_ingress_path_summary;

pub(crate) mod shape_instance_health_check_result;

pub(crate) mod shape_managed_agents;

pub(crate) mod shape_managed_auto_scaling;

pub(crate) mod shape_managed_ingress_paths;

pub(crate) mod shape_managed_log_groups;

pub(crate) mod shape_managed_metric_alarms;

pub(crate) mod shape_managed_security_groups;

pub(crate) mod shape_memory_gib_per_v_cpu_request;

pub(crate) mod shape_memory_mib_request;

pub(crate) mod shape_mount_point_list;

pub(crate) mod shape_network_bandwidth_gbps_request;

pub(crate) mod shape_network_bindings;

pub(crate) mod shape_network_interface_count_request;

pub(crate) mod shape_network_interfaces;

pub(crate) mod shape_neuron_device_ids;

pub(crate) mod shape_port_mapping_list;

pub(crate) mod shape_resource_requirements;

pub(crate) mod shape_secret_list;

pub(crate) mod shape_service_connect_service_list;

pub(crate) mod shape_service_connect_service_resource_list;

pub(crate) mod shape_service_connect_test_traffic_rules;

pub(crate) mod shape_service_connect_tls_certificate_authority;

pub(crate) mod shape_service_revision_load_balancers;

pub(crate) mod shape_system_controls;

pub(crate) mod shape_total_local_storage_gb_request;

pub(crate) mod shape_ulimit_list;

pub(crate) mod shape_v_cpu_count_range_request;

pub(crate) mod shape_volume_from_list;

pub(crate) mod shape_accelerator_manufacturer_set;

pub(crate) mod shape_accelerator_name_set;

pub(crate) mod shape_accelerator_type_set;

pub(crate) mod shape_allowed_instance_type_set;

pub(crate) mod shape_cpu_manufacturer_set;

pub(crate) mod shape_daemon_capacity_provider;

pub(crate) mod shape_daemon_deployment_capacity_provider;

pub(crate) mod shape_deployment_lifecycle_hook_stage_list;

pub(crate) mod shape_devices_list;

pub(crate) mod shape_excluded_instance_type_set;

pub(crate) mod shape_firelens_configuration_options_map;

pub(crate) mod shape_instance_generation_set;

pub(crate) mod shape_integer_list;

pub(crate) mod shape_local_storage_type_set;

pub(crate) mod shape_log_configuration_options_map;

pub(crate) mod shape_managed_agent;

pub(crate) mod shape_managed_application_auto_scaling_policies;

pub(crate) mod shape_managed_ingress_path;

pub(crate) mod shape_managed_log_group;

pub(crate) mod shape_managed_metric_alarm;

pub(crate) mod shape_managed_scalable_target;

pub(crate) mod shape_managed_security_group;

pub(crate) mod shape_network_interface;

pub(crate) mod shape_service_connect_service_resource;

pub(crate) mod shape_service_connect_test_traffic_header_rules;

pub(crate) mod shape_service_revision_load_balancer;

pub(crate) mod shape_string_map;

pub(crate) mod shape_tmpfs_list;

pub(crate) mod shape_ebs_tag_specifications;

pub(crate) mod shape_managed_application_auto_scaling_policy;

pub(crate) mod shape_managed_certificate;

pub(crate) mod shape_managed_listener;

pub(crate) mod shape_managed_listener_rule;

pub(crate) mod shape_managed_load_balancer;

pub(crate) mod shape_managed_target_groups;

pub(crate) mod shape_service_connect_client_alias_list;

pub(crate) mod shape_service_connect_test_traffic_header_match_rules;

pub(crate) mod shape_device_cgroup_permissions;

pub(crate) mod shape_managed_target_group;