pub struct AWSCredentials {
pub aws_access_key_id: String,
pub aws_secret_access_key: Option<String>,
}
Fields§
§aws_access_key_id: String
The ID portion of an AWS access key.
aws_secret_access_key: Option<String>
The secret portion of an AWS access key.
Trait Implementations§
Source§impl Clone for AWSCredentials
impl Clone for AWSCredentials
Source§fn clone(&self) -> AWSCredentials
fn clone(&self) -> AWSCredentials
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AWSCredentials
impl Debug for AWSCredentials
Source§impl Default for AWSCredentials
impl Default for AWSCredentials
Source§fn default() -> AWSCredentials
fn default() -> AWSCredentials
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AWSCredentials
impl<'de> Deserialize<'de> for AWSCredentials
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AWSCredentials
impl RefUnwindSafe for AWSCredentials
impl Send for AWSCredentials
impl Sync for AWSCredentials
impl Unpin for AWSCredentials
impl UnwindSafe for AWSCredentials
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more