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
#![allow(deprecated)]
#![allow(clippy::module_inception)]
#![allow(clippy::upper_case_acronyms)]
#![allow(clippy::large_enum_variant)]
#![allow(clippy::wrong_self_convention)]
#![allow(clippy::should_implement_trait)]
#![allow(clippy::blacklisted_name)]
#![allow(clippy::vec_init_then_push)]
#![allow(clippy::type_complexity)]
#![allow(clippy::needless_return)]
#![allow(rustdoc::bare_urls)]
#![warn(missing_docs)]
pub use error_meta::Error;
#[doc(inline)]
pub use config::Config;
pub mod client;
pub mod config;
pub mod endpoint;
pub mod error;
mod error_meta;
pub mod input;
pub mod model;
pub mod operation;
pub mod output;
pub mod types;
pub mod http_body_checksum;
mod http_serde;
pub mod middleware;
mod no_credentials;
mod operation_deser;
mod operation_ser;
pub mod paginator;
pub mod presigning;
mod lens;
mod xml_deser;
mod xml_ser;
mod endpoint_lib;
mod event_stream_serde;
mod rest_xml_unwrapped_errors;
mod s3_errors;
pub static PKG_VERSION: &str = env!("CARGO_PKG_VERSION");
pub use aws_smithy_http::endpoint::Endpoint;
static API_METADATA: aws_http::user_agent::ApiMetadata =
aws_http::user_agent::ApiMetadata::new("s3", PKG_VERSION);
pub use crate::s3_errors::ErrorExt;
pub use aws_credential_types::Credentials;
pub use aws_types::app_name::AppName;
pub use aws_types::region::Region;
#[doc(inline)]
pub use client::Client;