#[non_exhaustive]pub struct AssistantAssociationSummary {
pub assistant_association_id: String,
pub assistant_association_arn: String,
pub assistant_id: String,
pub assistant_arn: String,
pub association_type: AssociationType,
pub association_data: Option<AssistantAssociationOutputData>,
pub tags: Option<HashMap<String, String>>,
}Expand description
Summary information about the assistant association.
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.assistant_association_id: StringThe identifier of the assistant association.
assistant_association_arn: StringThe Amazon Resource Name (ARN) of the assistant association.
assistant_id: StringThe identifier of the Amazon Q assistant.
assistant_arn: StringThe Amazon Resource Name (ARN) of the Amazon Q assistant.
association_type: AssociationTypeThe type of association.
association_data: Option<AssistantAssociationOutputData>The association data.
The tags used to organize, track, or control access for this resource.
Implementations§
source§impl AssistantAssociationSummary
impl AssistantAssociationSummary
sourcepub fn assistant_association_id(&self) -> &str
pub fn assistant_association_id(&self) -> &str
The identifier of the assistant association.
sourcepub fn assistant_association_arn(&self) -> &str
pub fn assistant_association_arn(&self) -> &str
The Amazon Resource Name (ARN) of the assistant association.
sourcepub fn assistant_id(&self) -> &str
pub fn assistant_id(&self) -> &str
The identifier of the Amazon Q assistant.
sourcepub fn assistant_arn(&self) -> &str
pub fn assistant_arn(&self) -> &str
The Amazon Resource Name (ARN) of the Amazon Q assistant.
sourcepub fn association_type(&self) -> &AssociationType
pub fn association_type(&self) -> &AssociationType
The type of association.
sourcepub fn association_data(&self) -> Option<&AssistantAssociationOutputData>
pub fn association_data(&self) -> Option<&AssistantAssociationOutputData>
The association data.
The tags used to organize, track, or control access for this resource.
source§impl AssistantAssociationSummary
impl AssistantAssociationSummary
sourcepub fn builder() -> AssistantAssociationSummaryBuilder
pub fn builder() -> AssistantAssociationSummaryBuilder
Creates a new builder-style object to manufacture AssistantAssociationSummary.
Trait Implementations§
source§impl Clone for AssistantAssociationSummary
impl Clone for AssistantAssociationSummary
source§fn clone(&self) -> AssistantAssociationSummary
fn clone(&self) -> AssistantAssociationSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for AssistantAssociationSummary
impl Debug for AssistantAssociationSummary
source§impl PartialEq for AssistantAssociationSummary
impl PartialEq for AssistantAssociationSummary
source§fn eq(&self, other: &AssistantAssociationSummary) -> bool
fn eq(&self, other: &AssistantAssociationSummary) -> bool
self and other values to be equal, and is used
by ==.