pub struct Builder { /* private fields */ }Expand description
A builder for EnableClientAuthenticationInput.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn directory_id(self, input: impl Into<String>) -> Self
pub fn directory_id(self, input: impl Into<String>) -> Self
The identifier of the specified directory.
sourcepub fn set_directory_id(self, input: Option<String>) -> Self
pub fn set_directory_id(self, input: Option<String>) -> Self
The identifier of the specified directory.
sourcepub fn type(self, input: ClientAuthenticationType) -> Self
pub fn type(self, input: ClientAuthenticationType) -> Self
The type of client authentication to enable. Currently only the value SmartCard is supported. Smart card authentication in AD Connector requires that you enable Kerberos Constrained Delegation for the Service User to the LDAP service in your self-managed AD.
sourcepub fn set_type(self, input: Option<ClientAuthenticationType>) -> Self
pub fn set_type(self, input: Option<ClientAuthenticationType>) -> Self
The type of client authentication to enable. Currently only the value SmartCard is supported. Smart card authentication in AD Connector requires that you enable Kerberos Constrained Delegation for the Service User to the LDAP service in your self-managed AD.
sourcepub fn build(self) -> Result<EnableClientAuthenticationInput, BuildError>
pub fn build(self) -> Result<EnableClientAuthenticationInput, BuildError>
Consumes the builder and constructs a EnableClientAuthenticationInput.
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more