#[non_exhaustive]pub struct IntegrationAssociationSummary {
pub integration_association_id: Option<String>,
pub integration_association_arn: Option<String>,
pub instance_id: Option<String>,
pub integration_type: Option<IntegrationType>,
pub integration_arn: Option<String>,
pub source_application_url: Option<String>,
pub source_application_name: Option<String>,
pub source_type: Option<SourceType>,
}
Expand description
Contains summary information about the associated AppIntegrations.
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.integration_association_id: Option<String>
The identifier for the AppIntegration association.
integration_association_arn: Option<String>
The Amazon Resource Name (ARN) for the AppIntegration association.
instance_id: Option<String>
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
integration_type: Option<IntegrationType>
The integration type.
integration_arn: Option<String>
The Amazon Resource Name (ARN) for the AppIntegration.
source_application_url: Option<String>
The URL for the external application.
source_application_name: Option<String>
The user-provided, friendly name for the external application.
source_type: Option<SourceType>
The name of the source.
Implementations§
source§impl IntegrationAssociationSummary
impl IntegrationAssociationSummary
sourcepub fn integration_association_id(&self) -> Option<&str>
pub fn integration_association_id(&self) -> Option<&str>
The identifier for the AppIntegration association.
sourcepub fn integration_association_arn(&self) -> Option<&str>
pub fn integration_association_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) for the AppIntegration association.
sourcepub fn instance_id(&self) -> Option<&str>
pub fn instance_id(&self) -> Option<&str>
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
sourcepub fn integration_type(&self) -> Option<&IntegrationType>
pub fn integration_type(&self) -> Option<&IntegrationType>
The integration type.
sourcepub fn integration_arn(&self) -> Option<&str>
pub fn integration_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) for the AppIntegration.
sourcepub fn source_application_url(&self) -> Option<&str>
pub fn source_application_url(&self) -> Option<&str>
The URL for the external application.
sourcepub fn source_application_name(&self) -> Option<&str>
pub fn source_application_name(&self) -> Option<&str>
The user-provided, friendly name for the external application.
sourcepub fn source_type(&self) -> Option<&SourceType>
pub fn source_type(&self) -> Option<&SourceType>
The name of the source.
source§impl IntegrationAssociationSummary
impl IntegrationAssociationSummary
sourcepub fn builder() -> IntegrationAssociationSummaryBuilder
pub fn builder() -> IntegrationAssociationSummaryBuilder
Creates a new builder-style object to manufacture IntegrationAssociationSummary
.
Trait Implementations§
source§impl Clone for IntegrationAssociationSummary
impl Clone for IntegrationAssociationSummary
source§fn clone(&self) -> IntegrationAssociationSummary
fn clone(&self) -> IntegrationAssociationSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for IntegrationAssociationSummary
impl PartialEq for IntegrationAssociationSummary
source§fn eq(&self, other: &IntegrationAssociationSummary) -> bool
fn eq(&self, other: &IntegrationAssociationSummary) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for IntegrationAssociationSummary
Auto Trait Implementations§
impl Freeze for IntegrationAssociationSummary
impl RefUnwindSafe for IntegrationAssociationSummary
impl Send for IntegrationAssociationSummary
impl Sync for IntegrationAssociationSummary
impl Unpin for IntegrationAssociationSummary
impl UnwindSafe for IntegrationAssociationSummary
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