Struct aws_sdk_directory::operation::describe_domain_controllers::builders::DescribeDomainControllersOutputBuilder
source · #[non_exhaustive]pub struct DescribeDomainControllersOutputBuilder { /* private fields */ }Expand description
A builder for DescribeDomainControllersOutput.
Implementations§
source§impl DescribeDomainControllersOutputBuilder
impl DescribeDomainControllersOutputBuilder
sourcepub fn domain_controllers(self, input: DomainController) -> Self
pub fn domain_controllers(self, input: DomainController) -> Self
Appends an item to domain_controllers.
To override the contents of this collection use set_domain_controllers.
List of the DomainController objects that were retrieved.
sourcepub fn set_domain_controllers(
self,
input: Option<Vec<DomainController>>
) -> Self
pub fn set_domain_controllers( self, input: Option<Vec<DomainController>> ) -> Self
List of the DomainController objects that were retrieved.
sourcepub fn get_domain_controllers(&self) -> &Option<Vec<DomainController>>
pub fn get_domain_controllers(&self) -> &Option<Vec<DomainController>>
List of the DomainController objects that were retrieved.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If not null, more results are available. Pass this value for the NextToken parameter in a subsequent call to DescribeDomainControllers retrieve the next set of items.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If not null, more results are available. Pass this value for the NextToken parameter in a subsequent call to DescribeDomainControllers retrieve the next set of items.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If not null, more results are available. Pass this value for the NextToken parameter in a subsequent call to DescribeDomainControllers retrieve the next set of items.
sourcepub fn build(self) -> DescribeDomainControllersOutput
pub fn build(self) -> DescribeDomainControllersOutput
Consumes the builder and constructs a DescribeDomainControllersOutput.
Trait Implementations§
source§impl Clone for DescribeDomainControllersOutputBuilder
impl Clone for DescribeDomainControllersOutputBuilder
source§fn clone(&self) -> DescribeDomainControllersOutputBuilder
fn clone(&self) -> DescribeDomainControllersOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DescribeDomainControllersOutputBuilder
impl Default for DescribeDomainControllersOutputBuilder
source§fn default() -> DescribeDomainControllersOutputBuilder
fn default() -> DescribeDomainControllersOutputBuilder
source§impl PartialEq for DescribeDomainControllersOutputBuilder
impl PartialEq for DescribeDomainControllersOutputBuilder
source§fn eq(&self, other: &DescribeDomainControllersOutputBuilder) -> bool
fn eq(&self, other: &DescribeDomainControllersOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeDomainControllersOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeDomainControllersOutputBuilder
impl RefUnwindSafe for DescribeDomainControllersOutputBuilder
impl Send for DescribeDomainControllersOutputBuilder
impl Sync for DescribeDomainControllersOutputBuilder
impl Unpin for DescribeDomainControllersOutputBuilder
impl UnwindSafe for DescribeDomainControllersOutputBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more