#[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
source§impl PartialEq for SourceApiAssociationSummary
impl PartialEq for SourceApiAssociationSummary
source§fn eq(&self, other: &SourceApiAssociationSummary) -> bool
fn eq(&self, other: &SourceApiAssociationSummary) -> bool
self
and other
values to be equal, and is used
by ==
.