pub struct GetMutualAuthenticationParams {
pub mutual_authentication_id: String,
pub include: Option<String>,
}
Expand description
struct for passing parameters to the method get_mutual_authentication
Fields§
§mutual_authentication_id: String
Alphanumeric string identifying a mutual authentication.
include: Option<String>
Comma-separated list of related objects to include (optional). Permitted values: tls_activations
. Including TLS activations will provide you with the TLS domain names that are related to your Mutual TLS authentication.
Trait Implementations§
Source§impl Clone for GetMutualAuthenticationParams
impl Clone for GetMutualAuthenticationParams
Source§fn clone(&self) -> GetMutualAuthenticationParams
fn clone(&self) -> GetMutualAuthenticationParams
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 Default for GetMutualAuthenticationParams
impl Default for GetMutualAuthenticationParams
Source§fn default() -> GetMutualAuthenticationParams
fn default() -> GetMutualAuthenticationParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetMutualAuthenticationParams
impl RefUnwindSafe for GetMutualAuthenticationParams
impl Send for GetMutualAuthenticationParams
impl Sync for GetMutualAuthenticationParams
impl Unpin for GetMutualAuthenticationParams
impl UnwindSafe for GetMutualAuthenticationParams
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