#[non_exhaustive]pub struct SourceApiAssociationSummary {
pub association_id: Option<String>,
pub association_arn: Option<String>,
pub source_api_id: Option<String>,
pub source_api_arn: Option<String>,
pub merged_api_id: Option<String>,
pub merged_api_arn: Option<String>,
pub description: Option<String>,
}
Expand description
Describes the ARNs and IDs of associations, Merged APIs, and source APIs.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.association_id: Option<String>
The ID generated by the AppSync service for the source API association.
association_arn: Option<String>
The Amazon Resource Name (ARN) of the source API association.
source_api_id: Option<String>
The ID of the AppSync source API.
source_api_arn: Option<String>
The Amazon Resource Name (ARN) of the AppSync Source API.
merged_api_id: Option<String>
The ID of the AppSync Merged API.
merged_api_arn: Option<String>
The Amazon Resource Name (ARN) of the AppSync Merged API.
description: Option<String>
The description field.
Implementations§
source§impl SourceApiAssociationSummary
impl SourceApiAssociationSummary
sourcepub fn association_id(&self) -> Option<&str>
pub fn association_id(&self) -> Option<&str>
The ID generated by the AppSync service for the source API association.
sourcepub fn association_arn(&self) -> Option<&str>
pub fn association_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the source API association.
sourcepub fn source_api_id(&self) -> Option<&str>
pub fn source_api_id(&self) -> Option<&str>
The ID of the AppSync source API.
sourcepub fn source_api_arn(&self) -> Option<&str>
pub fn source_api_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the AppSync Source API.
sourcepub fn merged_api_id(&self) -> Option<&str>
pub fn merged_api_id(&self) -> Option<&str>
The ID of the AppSync Merged API.
sourcepub fn merged_api_arn(&self) -> Option<&str>
pub fn merged_api_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the AppSync Merged API.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description field.
source§impl SourceApiAssociationSummary
impl SourceApiAssociationSummary
sourcepub fn builder() -> SourceApiAssociationSummaryBuilder
pub fn builder() -> SourceApiAssociationSummaryBuilder
Creates a new builder-style object to manufacture SourceApiAssociationSummary
.
Trait Implementations§
source§impl Clone for SourceApiAssociationSummary
impl Clone for SourceApiAssociationSummary
source§fn clone(&self) -> SourceApiAssociationSummary
fn clone(&self) -> SourceApiAssociationSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SourceApiAssociationSummary
impl Debug for SourceApiAssociationSummary
impl StructuralPartialEq for SourceApiAssociationSummary
Auto Trait Implementations§
impl Freeze for SourceApiAssociationSummary
impl RefUnwindSafe for SourceApiAssociationSummary
impl Send for SourceApiAssociationSummary
impl Sync for SourceApiAssociationSummary
impl Unpin for SourceApiAssociationSummary
impl UnwindSafe for SourceApiAssociationSummary
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