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
#![warn(
missing_docs,
rustdoc::missing_crate_level_docs,
missing_debug_implementations,
rust_2018_idioms,
unreachable_pub
)]
pub mod app_name;
pub mod build_metadata;
#[deprecated(since = "0.9.0", note = "renamed to sdk_config")]
pub mod config;
pub mod endpoint;
#[doc(hidden)]
pub mod os_shim_internal;
pub mod region;
pub mod sdk_config;
pub use aws_smithy_client::http_connector;
pub use sdk_config::SdkConfig;
use std::borrow::Cow;
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct SigningService(Cow<'static, str>);
impl AsRef<str> for SigningService {
fn as_ref(&self) -> &str {
&self.0
}
}
impl SigningService {
pub fn from_static(service: &'static str) -> Self {
SigningService(Cow::Borrowed(service))
}
}
impl From<String> for SigningService {
fn from(service: String) -> Self {
SigningService(Cow::Owned(service))
}
}
impl From<&'static str> for SigningService {
fn from(service: &'static str) -> Self {
Self::from_static(service)
}
}