pub struct GenerateSecretKeyResponse {
pub secret_key: Option<String>,
}Expand description
The response body for the GenerateSecretKey action.
This type shall contain the properties found in the response body for the GenerateSecretKey
action.
Fields§
§secret_key: Option<String>The secret key generated for Time-based One-Time Password (TOTP) multi-factor authentication.
This property shall contain secret key generated for RFC6238-defined Time-based One-Time Password (TOTP) multi-factor authentication. Clients shall retain the value of this property to generate tokens for future session creation requests.
Trait Implementations§
Source§impl Debug for GenerateSecretKeyResponse
impl Debug for GenerateSecretKeyResponse
Source§impl<'de> Deserialize<'de> for GenerateSecretKeyResponse
impl<'de> Deserialize<'de> for GenerateSecretKeyResponse
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 GenerateSecretKeyResponse
impl RefUnwindSafe for GenerateSecretKeyResponse
impl Send for GenerateSecretKeyResponse
impl Sync for GenerateSecretKeyResponse
impl Unpin for GenerateSecretKeyResponse
impl UnsafeUnpin for GenerateSecretKeyResponse
impl UnwindSafe for GenerateSecretKeyResponse
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