aws_mocks/
lib.rs

1/*
2 * aws-mocks - A mocking library for AWS.
3 *
4 * Copyright (C) 2024 Lucas M. de Jong Larrarte
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19#[cfg(feature="access-analyzer")]
20pub mod access_analyzer;
21#[cfg(feature="account")]
22pub mod account;
23#[cfg(feature="acm")]
24pub mod acm;
25#[cfg(feature="acm-pca")]
26pub mod acm_pca;
27#[cfg(feature="amp")]
28pub mod amp;
29#[cfg(feature="amplify")]
30pub mod amplify;
31#[cfg(feature="amplify-backend")]
32pub mod amplify_backend;
33#[cfg(feature="amplify-ui-builder")]
34pub mod amplify_ui_builder;
35#[cfg(feature="api-gateway")]
36pub mod api_gateway;
37#[cfg(feature="api-gateway-management")]
38pub mod api_gateway_management;
39#[cfg(feature="api-gateway-v2")]
40pub mod api_gateway_v2;
41#[cfg(feature="app-config")]
42pub mod app_config;
43#[cfg(feature="app-config-data")]
44pub mod app_config_data;
45#[cfg(feature="app-fabric")]
46pub mod app_fabric;
47#[cfg(feature="app-flow")]
48pub mod app_flow;
49#[cfg(feature="app-integrations")]
50pub mod app_integrations;
51#[cfg(feature="app-mesh")]
52pub mod app_mesh;
53#[cfg(feature="app-runner")]
54pub mod app_runner;
55#[cfg(feature="app-stream")]
56pub mod app_stream;
57#[cfg(feature="app-sync")]
58pub mod app_sync;
59#[cfg(feature="app-test")]
60pub mod app_test;
61#[cfg(feature="athena")]
62pub mod athena;
63#[cfg(feature="backup")]
64pub mod backup;
65#[cfg(feature="batch")]
66pub mod batch;
67#[cfg(feature="cloud-formation")]
68pub mod cloud_formation;
69#[cfg(feature="cloud-front")]
70pub mod cloud_front;
71#[cfg(feature="cloud-trail")]
72pub mod cloud_trail;
73#[cfg(feature="cloud-watch")]
74pub mod cloud_watch;
75#[cfg(feature="code-build")]
76pub mod code_build;
77#[cfg(feature="code-commit")]
78pub mod code_commit;
79#[cfg(feature="code-pipeline")]
80pub mod code_pipeline;
81#[cfg(feature="cognito-identity-provider")]
82pub mod cognito_identity_provider;
83#[cfg(feature="data-brew")]
84pub mod data_brew;
85#[cfg(feature="data-pipeline")]
86pub mod data_pipeline;
87#[cfg(feature="direct-connect")]
88pub mod direct_connect;
89#[cfg(feature="dynamo-db")]
90pub mod dynamo_db;
91#[cfg(feature="ec2")]
92pub mod ec2;
93#[cfg(feature="efs")]
94pub mod efs;
95#[cfg(feature="eks")]
96pub mod eks;
97#[cfg(feature="elasti-cache")]
98pub mod elasti_cache;
99#[cfg(feature="elastic-beanstalk")]
100pub mod elastic_beanstalk;
101#[cfg(feature="emr")]
102pub mod emr;
103#[cfg(feature="global-accelerator")]
104pub mod global_accelerator;
105#[cfg(feature="glue")]
106pub mod glue;
107#[cfg(feature="iam")]
108pub mod iam;
109#[cfg(feature="kinesis")]
110pub mod kinesis;
111#[cfg(feature="kms")]
112pub mod kms;
113#[cfg(feature="lambda")]
114pub mod lambda;
115#[cfg(feature="macie2")]
116pub mod macie2;
117#[cfg(feature="mq")]
118pub mod mq;
119#[cfg(feature="open-search")]
120pub mod open_search;
121#[cfg(feature="polly")]
122pub mod polly;
123#[cfg(feature="quick-sight")]
124pub mod quick_sight;
125#[cfg(feature="rds")]
126pub mod rds;
127#[cfg(feature="redshift")]
128pub mod redshift;
129#[cfg(feature="rekognition")]
130pub mod rekognition;
131#[cfg(feature="s3")]
132pub mod s3;
133#[cfg(feature="sage-maker")]
134pub mod sage_maker;
135#[cfg(feature="secrets-manager")]
136pub mod secrets_manager;
137#[cfg(feature="sns")]
138pub mod sns;
139#[cfg(feature="sqs")]
140pub mod sqs;
141#[cfg(feature="ssm")]
142pub mod ssm;
143#[cfg(feature="textract")]
144pub mod textract;
145#[cfg(feature="transcribe")]
146pub mod transcribe;
147#[cfg(feature="translate")]
148pub mod translate;
149#[cfg(feature="x-ray")]
150pub mod x_ray;
151