pub struct UpdateAccessKeyRequest {
pub access_key_id: String,
pub status: String,
pub user_name: Option<String>,
}Fields§
§access_key_id: StringThe access key ID of the secret access key you want to update.
This parameter allows (through its regex pattern) a string of characters that can consist of any upper or lowercased letter or digit.
status: String The status you want to assign to the secret access key. Active means that the key can be used for programmatic calls to AWS, while Inactive means that the key cannot be used.
user_name: Option<String>The name of the user whose key you want to update.
This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
Trait Implementations§
Source§impl Clone for UpdateAccessKeyRequest
impl Clone for UpdateAccessKeyRequest
Source§fn clone(&self) -> UpdateAccessKeyRequest
fn clone(&self) -> UpdateAccessKeyRequest
Returns a duplicate 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 UpdateAccessKeyRequest
impl Debug for UpdateAccessKeyRequest
Source§impl Default for UpdateAccessKeyRequest
impl Default for UpdateAccessKeyRequest
Source§fn default() -> UpdateAccessKeyRequest
fn default() -> UpdateAccessKeyRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateAccessKeyRequest
impl PartialEq for UpdateAccessKeyRequest
impl StructuralPartialEq for UpdateAccessKeyRequest
Auto Trait Implementations§
impl Freeze for UpdateAccessKeyRequest
impl RefUnwindSafe for UpdateAccessKeyRequest
impl Send for UpdateAccessKeyRequest
impl Sync for UpdateAccessKeyRequest
impl Unpin for UpdateAccessKeyRequest
impl UnwindSafe for UpdateAccessKeyRequest
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