pub struct AccessKey {
pub access_key_id: String,
pub create_date: String,
pub secret_access_key: String,
pub status: String,
pub user_name: String,
pub namespace: String,
}Expand description
IAM User access key
Fields§
§access_key_id: StringThe Id of this access key
create_date: StringThe date and time, in the format of YYYY-MM-DDTHH:mm:ssZ, when the access key was created.
secret_access_key: StringThe secret key
status: StringThe status of the access key {Active | Inactive}
user_name: StringThe name of the user that the access key is associated with.
namespace: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for AccessKey
impl<'de> Deserialize<'de> for AccessKey
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 AccessKey
impl RefUnwindSafe for AccessKey
impl Send for AccessKey
impl Sync for AccessKey
impl Unpin for AccessKey
impl UnwindSafe for AccessKey
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