pub struct AccountAccessKey {
pub access_key_id: String,
pub create_date: String,
pub secret_access_key: String,
pub status: String,
pub account_id: String,
}
Expand description
IAM Account access key
Fields§
§access_key_id: String
The Id of this access key
create_date: String
The date and time, in the format of YYYY-MM-DDTHH:mm:ssZ, when the access key was created.
secret_access_key: String
The secret key
status: String
The status of the access key {Active | Inactive}
account_id: String
The name of the user that the access key is associated with.
Trait Implementations§
Source§impl Clone for AccountAccessKey
impl Clone for AccountAccessKey
Source§fn clone(&self) -> AccountAccessKey
fn clone(&self) -> AccountAccessKey
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 AccountAccessKey
impl Debug for AccountAccessKey
Source§impl Default for AccountAccessKey
impl Default for AccountAccessKey
Source§fn default() -> AccountAccessKey
fn default() -> AccountAccessKey
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountAccessKey
impl<'de> Deserialize<'de> for AccountAccessKey
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 AccountAccessKey
impl RefUnwindSafe for AccountAccessKey
impl Send for AccountAccessKey
impl Sync for AccountAccessKey
impl Unpin for AccountAccessKey
impl UnwindSafe for AccountAccessKey
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