pub struct UpdateServiceSpecificCredentialRequest {
pub user_name: String,
pub service_specific_credential_id: String,
pub status: String,
}Expand description
Request to update a service-specific credential status
Fields§
§user_name: StringThe name of the IAM user
service_specific_credential_id: StringThe unique identifier of the credential
status: StringThe new status (Active or Inactive)
Trait Implementations§
Source§impl Clone for UpdateServiceSpecificCredentialRequest
impl Clone for UpdateServiceSpecificCredentialRequest
Source§fn clone(&self) -> UpdateServiceSpecificCredentialRequest
fn clone(&self) -> UpdateServiceSpecificCredentialRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for UpdateServiceSpecificCredentialRequest
impl<'de> Deserialize<'de> for UpdateServiceSpecificCredentialRequest
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 UpdateServiceSpecificCredentialRequest
impl RefUnwindSafe for UpdateServiceSpecificCredentialRequest
impl Send for UpdateServiceSpecificCredentialRequest
impl Sync for UpdateServiceSpecificCredentialRequest
impl Unpin for UpdateServiceSpecificCredentialRequest
impl UnsafeUnpin for UpdateServiceSpecificCredentialRequest
impl UnwindSafe for UpdateServiceSpecificCredentialRequest
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