pub struct DescribeDomainControllersRequest {
pub directory_id: String,
pub domain_controller_ids: Option<Vec<String>>,
pub limit: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§directory_id: String
Identifier of the directory for which to retrieve the domain controller information.
domain_controller_ids: Option<Vec<String>>
A list of identifiers for the domain controllers whose information will be provided.
limit: Option<i64>
The maximum number of items to return.
next_token: Option<String>
The DescribeDomainControllers.NextToken value from a previous call to DescribeDomainControllers. Pass null if this is the first call.
Trait Implementations§
Source§impl Clone for DescribeDomainControllersRequest
impl Clone for DescribeDomainControllersRequest
Source§fn clone(&self) -> DescribeDomainControllersRequest
fn clone(&self) -> DescribeDomainControllersRequest
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 Default for DescribeDomainControllersRequest
impl Default for DescribeDomainControllersRequest
Source§fn default() -> DescribeDomainControllersRequest
fn default() -> DescribeDomainControllersRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeDomainControllersRequest
impl PartialEq for DescribeDomainControllersRequest
Source§fn eq(&self, other: &DescribeDomainControllersRequest) -> bool
fn eq(&self, other: &DescribeDomainControllersRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeDomainControllersRequest
Auto Trait Implementations§
impl Freeze for DescribeDomainControllersRequest
impl RefUnwindSafe for DescribeDomainControllersRequest
impl Send for DescribeDomainControllersRequest
impl Sync for DescribeDomainControllersRequest
impl Unpin for DescribeDomainControllersRequest
impl UnwindSafe for DescribeDomainControllersRequest
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