#[non_exhaustive]pub struct ListServicesOutputBuilder { /* private fields */ }
Expand description
A builder for ListServicesOutput
.
Implementations§
source§impl ListServicesOutputBuilder
impl ListServicesOutputBuilder
sourcepub fn service_arns(self, input: impl Into<String>) -> Self
pub fn service_arns(self, input: impl Into<String>) -> Self
Appends an item to service_arns
.
To override the contents of this collection use set_service_arns
.
The list of full ARN entries for each service that's associated with the specified cluster.
sourcepub fn set_service_arns(self, input: Option<Vec<String>>) -> Self
pub fn set_service_arns(self, input: Option<Vec<String>>) -> Self
The list of full ARN entries for each service that's associated with the specified cluster.
sourcepub fn get_service_arns(&self) -> &Option<Vec<String>>
pub fn get_service_arns(&self) -> &Option<Vec<String>>
The list of full ARN entries for each service that's 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 to include in a future ListServices
request. When the results of a ListServices
request exceed maxResults
, this value can be used to retrieve the next page of results. This value is null
when there are no more results to return.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The nextToken
value to include in a future ListServices
request. When the results of a ListServices
request exceed maxResults
, this value can be used to retrieve the next page of results. This value is null
when there are no more results to return.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The nextToken
value to include in a future ListServices
request. When the results of a ListServices
request exceed maxResults
, this value can be used to retrieve the next page of results. This value is null
when there are no more results to return.
sourcepub fn build(self) -> ListServicesOutput
pub fn build(self) -> ListServicesOutput
Consumes the builder and constructs a ListServicesOutput
.
Trait Implementations§
source§impl Clone for ListServicesOutputBuilder
impl Clone for ListServicesOutputBuilder
source§fn clone(&self) -> ListServicesOutputBuilder
fn clone(&self) -> ListServicesOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListServicesOutputBuilder
impl Debug for ListServicesOutputBuilder
source§impl Default for ListServicesOutputBuilder
impl Default for ListServicesOutputBuilder
source§fn default() -> ListServicesOutputBuilder
fn default() -> ListServicesOutputBuilder
source§impl PartialEq for ListServicesOutputBuilder
impl PartialEq for ListServicesOutputBuilder
source§fn eq(&self, other: &ListServicesOutputBuilder) -> bool
fn eq(&self, other: &ListServicesOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListServicesOutputBuilder
Auto Trait Implementations§
impl Freeze for ListServicesOutputBuilder
impl RefUnwindSafe for ListServicesOutputBuilder
impl Send for ListServicesOutputBuilder
impl Sync for ListServicesOutputBuilder
impl Unpin for ListServicesOutputBuilder
impl UnwindSafe for ListServicesOutputBuilder
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