pub struct DescribeLDAPSSettingsRequest {
pub directory_id: String,
pub limit: Option<i64>,
pub next_token: Option<String>,
pub type_: Option<String>,
}
Fields§
§directory_id: String
The identifier of the directory.
limit: Option<i64>
Specifies the number of items that should be displayed on one page.
next_token: Option<String>
The type of next token used for pagination.
type_: Option<String>
The type of LDAP security to enable. Currently only the value Client
is supported.
Trait Implementations§
Source§impl Clone for DescribeLDAPSSettingsRequest
impl Clone for DescribeLDAPSSettingsRequest
Source§fn clone(&self) -> DescribeLDAPSSettingsRequest
fn clone(&self) -> DescribeLDAPSSettingsRequest
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 DescribeLDAPSSettingsRequest
impl Debug for DescribeLDAPSSettingsRequest
Source§impl Default for DescribeLDAPSSettingsRequest
impl Default for DescribeLDAPSSettingsRequest
Source§fn default() -> DescribeLDAPSSettingsRequest
fn default() -> DescribeLDAPSSettingsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeLDAPSSettingsRequest
impl PartialEq for DescribeLDAPSSettingsRequest
Source§fn eq(&self, other: &DescribeLDAPSSettingsRequest) -> bool
fn eq(&self, other: &DescribeLDAPSSettingsRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeLDAPSSettingsRequest
Auto Trait Implementations§
impl Freeze for DescribeLDAPSSettingsRequest
impl RefUnwindSafe for DescribeLDAPSSettingsRequest
impl Send for DescribeLDAPSSettingsRequest
impl Sync for DescribeLDAPSSettingsRequest
impl Unpin for DescribeLDAPSSettingsRequest
impl UnwindSafe for DescribeLDAPSSettingsRequest
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