Struct aws_sdk_appsync::operation::list_source_api_associations::builders::ListSourceApiAssociationsOutputBuilder
source · #[non_exhaustive]pub struct ListSourceApiAssociationsOutputBuilder { /* private fields */ }
Expand description
A builder for ListSourceApiAssociationsOutput
.
Implementations§
source§impl ListSourceApiAssociationsOutputBuilder
impl ListSourceApiAssociationsOutputBuilder
sourcepub fn source_api_association_summaries(
self,
input: SourceApiAssociationSummary,
) -> Self
pub fn source_api_association_summaries( self, input: SourceApiAssociationSummary, ) -> Self
Appends an item to source_api_association_summaries
.
To override the contents of this collection use set_source_api_association_summaries
.
The SourceApiAssociationSummary
object data.
sourcepub fn set_source_api_association_summaries(
self,
input: Option<Vec<SourceApiAssociationSummary>>,
) -> Self
pub fn set_source_api_association_summaries( self, input: Option<Vec<SourceApiAssociationSummary>>, ) -> Self
The SourceApiAssociationSummary
object data.
sourcepub fn get_source_api_association_summaries(
&self,
) -> &Option<Vec<SourceApiAssociationSummary>>
pub fn get_source_api_association_summaries( &self, ) -> &Option<Vec<SourceApiAssociationSummary>>
The SourceApiAssociationSummary
object data.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.
sourcepub fn build(self) -> ListSourceApiAssociationsOutput
pub fn build(self) -> ListSourceApiAssociationsOutput
Consumes the builder and constructs a ListSourceApiAssociationsOutput
.
Trait Implementations§
source§impl Clone for ListSourceApiAssociationsOutputBuilder
impl Clone for ListSourceApiAssociationsOutputBuilder
source§fn clone(&self) -> ListSourceApiAssociationsOutputBuilder
fn clone(&self) -> ListSourceApiAssociationsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListSourceApiAssociationsOutputBuilder
impl Default for ListSourceApiAssociationsOutputBuilder
source§fn default() -> ListSourceApiAssociationsOutputBuilder
fn default() -> ListSourceApiAssociationsOutputBuilder
source§impl PartialEq for ListSourceApiAssociationsOutputBuilder
impl PartialEq for ListSourceApiAssociationsOutputBuilder
source§fn eq(&self, other: &ListSourceApiAssociationsOutputBuilder) -> bool
fn eq(&self, other: &ListSourceApiAssociationsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListSourceApiAssociationsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListSourceApiAssociationsOutputBuilder
impl RefUnwindSafe for ListSourceApiAssociationsOutputBuilder
impl Send for ListSourceApiAssociationsOutputBuilder
impl Sync for ListSourceApiAssociationsOutputBuilder
impl Unpin for ListSourceApiAssociationsOutputBuilder
impl UnwindSafe for ListSourceApiAssociationsOutputBuilder
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