#[non_exhaustive]pub struct SourceApiAssociationSummaryBuilder { /* private fields */ }
Expand description
A builder for SourceApiAssociationSummary
.
Implementations§
source§impl SourceApiAssociationSummaryBuilder
impl SourceApiAssociationSummaryBuilder
sourcepub fn association_id(self, input: impl Into<String>) -> Self
pub fn association_id(self, input: impl Into<String>) -> Self
The ID generated by the AppSync service for the source API association.
sourcepub fn set_association_id(self, input: Option<String>) -> Self
pub fn set_association_id(self, input: Option<String>) -> Self
The ID generated by the AppSync service for the source API association.
sourcepub fn get_association_id(&self) -> &Option<String>
pub fn get_association_id(&self) -> &Option<String>
The ID generated by the AppSync service for the source API association.
sourcepub fn association_arn(self, input: impl Into<String>) -> Self
pub fn association_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the source API association.
sourcepub fn set_association_arn(self, input: Option<String>) -> Self
pub fn set_association_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the source API association.
sourcepub fn get_association_arn(&self) -> &Option<String>
pub fn get_association_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the source API association.
sourcepub fn source_api_id(self, input: impl Into<String>) -> Self
pub fn source_api_id(self, input: impl Into<String>) -> Self
The ID of the AppSync source API.
sourcepub fn set_source_api_id(self, input: Option<String>) -> Self
pub fn set_source_api_id(self, input: Option<String>) -> Self
The ID of the AppSync source API.
sourcepub fn get_source_api_id(&self) -> &Option<String>
pub fn get_source_api_id(&self) -> &Option<String>
The ID of the AppSync source API.
sourcepub fn source_api_arn(self, input: impl Into<String>) -> Self
pub fn source_api_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the AppSync Source API.
sourcepub fn set_source_api_arn(self, input: Option<String>) -> Self
pub fn set_source_api_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the AppSync Source API.
sourcepub fn get_source_api_arn(&self) -> &Option<String>
pub fn get_source_api_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the AppSync Source API.
sourcepub fn merged_api_id(self, input: impl Into<String>) -> Self
pub fn merged_api_id(self, input: impl Into<String>) -> Self
The ID of the AppSync Merged API.
sourcepub fn set_merged_api_id(self, input: Option<String>) -> Self
pub fn set_merged_api_id(self, input: Option<String>) -> Self
The ID of the AppSync Merged API.
sourcepub fn get_merged_api_id(&self) -> &Option<String>
pub fn get_merged_api_id(&self) -> &Option<String>
The ID of the AppSync Merged API.
sourcepub fn merged_api_arn(self, input: impl Into<String>) -> Self
pub fn merged_api_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the AppSync Merged API.
sourcepub fn set_merged_api_arn(self, input: Option<String>) -> Self
pub fn set_merged_api_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the AppSync Merged API.
sourcepub fn get_merged_api_arn(&self) -> &Option<String>
pub fn get_merged_api_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the AppSync Merged API.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description field.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description field.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description field.
sourcepub fn build(self) -> SourceApiAssociationSummary
pub fn build(self) -> SourceApiAssociationSummary
Consumes the builder and constructs a SourceApiAssociationSummary
.
Trait Implementations§
source§impl Clone for SourceApiAssociationSummaryBuilder
impl Clone for SourceApiAssociationSummaryBuilder
source§fn clone(&self) -> SourceApiAssociationSummaryBuilder
fn clone(&self) -> SourceApiAssociationSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for SourceApiAssociationSummaryBuilder
impl Default for SourceApiAssociationSummaryBuilder
source§fn default() -> SourceApiAssociationSummaryBuilder
fn default() -> SourceApiAssociationSummaryBuilder
source§impl PartialEq for SourceApiAssociationSummaryBuilder
impl PartialEq for SourceApiAssociationSummaryBuilder
source§fn eq(&self, other: &SourceApiAssociationSummaryBuilder) -> bool
fn eq(&self, other: &SourceApiAssociationSummaryBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SourceApiAssociationSummaryBuilder
Auto Trait Implementations§
impl Freeze for SourceApiAssociationSummaryBuilder
impl RefUnwindSafe for SourceApiAssociationSummaryBuilder
impl Send for SourceApiAssociationSummaryBuilder
impl Sync for SourceApiAssociationSummaryBuilder
impl Unpin for SourceApiAssociationSummaryBuilder
impl UnwindSafe for SourceApiAssociationSummaryBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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