[−][src]Struct s3::credentials::Credentials
AWS access credentials: access key, secret key, and optional token.
Example
Loads from the standard AWS credentials file with the given profile name, defaults to "default".
use s3::credentials::Credentials; // Load credentials from `[default]` profile let credentials = Credentials::default(); // Also loads credentials from `[default]` profile let credentials = Credentials::new(None, None, None, None); // Load credentials from `[my-profile]` profile let credentials = Credentials::new(None, None, None, Some("my-profile".into()));
Credentials may also be initialized directly or by the following environment variables:
AWS_ACCESS_KEY_ID,AWS_SECRET_ACCESS_KEYAWS_SESSION_TOKEN
The order of preference is arguments, then environment, and finally AWS credentials file.
use s3::credentials::Credentials; // Load credentials directly let access_key = String::from("AKIAIOSFODNN7EXAMPLE"); let secret_key = String::from("wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY"); let credentials = Credentials::new(Some(access_key), Some(secret_key), None, None); // Load credentials from the environment use std::env; env::set_var("AWS_ACCESS_KEY_ID", "AKIAIOSFODNN7EXAMPLE"); env::set_var("AWS_SECRET_ACCESS_KEY", "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY"); let credentials = Credentials::new(None, None, None, None);
Fields
access_key: StringAWS public access key.
secret_key: StringAWS secret key.
token: Option<String>Temporary token issued by AWS service.
Methods
impl Credentials[src]
pub fn new(
access_key: Option<String>,
secret_key: Option<String>,
token: Option<String>,
profile: Option<String>
) -> Credentials[src]
access_key: Option<String>,
secret_key: Option<String>,
token: Option<String>,
profile: Option<String>
) -> Credentials
Initialize Credentials directly with key ID, secret key, and optional token.
Trait Implementations
impl PartialEq<Credentials> for Credentials[src]
fn eq(&self, other: &Credentials) -> bool[src]
fn ne(&self, other: &Credentials) -> bool[src]
impl Default for Credentials[src]
impl Clone for Credentials[src]
fn clone(&self) -> Credentials[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Eq for Credentials[src]
impl Debug for Credentials[src]
Auto Trait Implementations
impl Send for Credentials
impl Sync for Credentials
Blanket Implementations
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> From for T[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Same for T
type Output = T
Should always be Self
impl<Q, K> Equivalent for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized, [src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
fn equivalent(&self, key: &K) -> bool[src]
impl<T> Erased for T
impl<T, U> TryInto for T where
U: TryFrom<T>,
U: TryFrom<T>,