#[non_exhaustive]pub struct ListNodegroupsOutputBuilder { /* private fields */ }
Expand description
A builder for ListNodegroupsOutput
.
Implementations§
source§impl ListNodegroupsOutputBuilder
impl ListNodegroupsOutputBuilder
sourcepub fn nodegroups(self, input: impl Into<String>) -> Self
pub fn nodegroups(self, input: impl Into<String>) -> Self
Appends an item to nodegroups
.
To override the contents of this collection use set_nodegroups
.
A list of all of the node groups associated with the specified cluster.
sourcepub fn set_nodegroups(self, input: Option<Vec<String>>) -> Self
pub fn set_nodegroups(self, input: Option<Vec<String>>) -> Self
A list of all of the node groups associated with the specified cluster.
sourcepub fn get_nodegroups(&self) -> &Option<Vec<String>>
pub fn get_nodegroups(&self) -> &Option<Vec<String>>
A list of all of the node groups associated with the specified cluster.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The nextToken
value returned from a previous paginated request, where maxResults
was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken
value. This value is null when there are no more results to return.
This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The nextToken
value returned from a previous paginated request, where maxResults
was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken
value. This value is null when there are no more results to return.
This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The nextToken
value returned from a previous paginated request, where maxResults
was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken
value. This value is null when there are no more results to return.
This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
sourcepub fn build(self) -> ListNodegroupsOutput
pub fn build(self) -> ListNodegroupsOutput
Consumes the builder and constructs a ListNodegroupsOutput
.
Trait Implementations§
source§impl Clone for ListNodegroupsOutputBuilder
impl Clone for ListNodegroupsOutputBuilder
source§fn clone(&self) -> ListNodegroupsOutputBuilder
fn clone(&self) -> ListNodegroupsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListNodegroupsOutputBuilder
impl Debug for ListNodegroupsOutputBuilder
source§impl Default for ListNodegroupsOutputBuilder
impl Default for ListNodegroupsOutputBuilder
source§fn default() -> ListNodegroupsOutputBuilder
fn default() -> ListNodegroupsOutputBuilder
source§impl PartialEq for ListNodegroupsOutputBuilder
impl PartialEq for ListNodegroupsOutputBuilder
source§fn eq(&self, other: &ListNodegroupsOutputBuilder) -> bool
fn eq(&self, other: &ListNodegroupsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListNodegroupsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListNodegroupsOutputBuilder
impl RefUnwindSafe for ListNodegroupsOutputBuilder
impl Send for ListNodegroupsOutputBuilder
impl Sync for ListNodegroupsOutputBuilder
impl Unpin for ListNodegroupsOutputBuilder
impl UnwindSafe for ListNodegroupsOutputBuilder
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