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
#[derive(Clone, Debug, Default)]
pub struct Credentials {
pub access_key: String,
pub secret_key: String,
pub session_token: Option<String>,
}
pub trait Provider: std::fmt::Debug {
fn fetch(&self) -> Credentials;
}
#[derive(Clone, Debug)]
pub struct StaticProvider {
creds: Credentials,
}
impl StaticProvider {
pub fn new(access_key: &str, secret_key: &str, session_token: Option<&str>) -> StaticProvider {
StaticProvider {
creds: Credentials {
access_key: access_key.to_string(),
secret_key: secret_key.to_string(),
session_token: session_token.map(|v| v.to_string()),
},
}
}
}
impl Provider for StaticProvider {
fn fetch(&self) -> Credentials {
self.creds.clone()
}
}