Struct aws_sdk_managedblockchain::operation::list_networks::builders::ListNetworksOutputBuilder
source · #[non_exhaustive]pub struct ListNetworksOutputBuilder { /* private fields */ }
Expand description
A builder for ListNetworksOutput
.
Implementations§
source§impl ListNetworksOutputBuilder
impl ListNetworksOutputBuilder
sourcepub fn networks(self, input: NetworkSummary) -> Self
pub fn networks(self, input: NetworkSummary) -> Self
Appends an item to networks
.
To override the contents of this collection use set_networks
.
An array of NetworkSummary
objects that contain configuration properties for each network.
sourcepub fn set_networks(self, input: Option<Vec<NetworkSummary>>) -> Self
pub fn set_networks(self, input: Option<Vec<NetworkSummary>>) -> Self
An array of NetworkSummary
objects that contain configuration properties for each network.
sourcepub fn get_networks(&self) -> &Option<Vec<NetworkSummary>>
pub fn get_networks(&self) -> &Option<Vec<NetworkSummary>>
An array of NetworkSummary
objects that contain configuration properties for each network.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The pagination token that indicates the next set of results to retrieve.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The pagination token that indicates the next set of results to retrieve.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The pagination token that indicates the next set of results to retrieve.
sourcepub fn build(self) -> ListNetworksOutput
pub fn build(self) -> ListNetworksOutput
Consumes the builder and constructs a ListNetworksOutput
.
Trait Implementations§
source§impl Clone for ListNetworksOutputBuilder
impl Clone for ListNetworksOutputBuilder
source§fn clone(&self) -> ListNetworksOutputBuilder
fn clone(&self) -> ListNetworksOutputBuilder
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 Debug for ListNetworksOutputBuilder
impl Debug for ListNetworksOutputBuilder
source§impl Default for ListNetworksOutputBuilder
impl Default for ListNetworksOutputBuilder
source§fn default() -> ListNetworksOutputBuilder
fn default() -> ListNetworksOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ListNetworksOutputBuilder
impl PartialEq for ListNetworksOutputBuilder
source§fn eq(&self, other: &ListNetworksOutputBuilder) -> bool
fn eq(&self, other: &ListNetworksOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListNetworksOutputBuilder
Auto Trait Implementations§
impl Freeze for ListNetworksOutputBuilder
impl RefUnwindSafe for ListNetworksOutputBuilder
impl Send for ListNetworksOutputBuilder
impl Sync for ListNetworksOutputBuilder
impl Unpin for ListNetworksOutputBuilder
impl UnwindSafe for ListNetworksOutputBuilder
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
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.