Struct aws_sdk_qconnect::types::SessionSummary
source · #[non_exhaustive]pub struct SessionSummary {
pub session_id: String,
pub session_arn: String,
pub assistant_id: String,
pub assistant_arn: String,
}Expand description
Summary information about the session.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.session_id: StringThe identifier of the session.
session_arn: StringThe Amazon Resource Name (ARN) of the session.
assistant_id: StringThe identifier of the Amazon Q assistant.
assistant_arn: StringThe Amazon Resource Name (ARN) of the Amazon Q assistant.
Implementations§
source§impl SessionSummary
impl SessionSummary
sourcepub fn session_id(&self) -> &str
pub fn session_id(&self) -> &str
The identifier of the session.
sourcepub fn session_arn(&self) -> &str
pub fn session_arn(&self) -> &str
The Amazon Resource Name (ARN) of the session.
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.
source§impl SessionSummary
impl SessionSummary
sourcepub fn builder() -> SessionSummaryBuilder
pub fn builder() -> SessionSummaryBuilder
Creates a new builder-style object to manufacture SessionSummary.
Trait Implementations§
source§impl Clone for SessionSummary
impl Clone for SessionSummary
source§fn clone(&self) -> SessionSummary
fn clone(&self) -> SessionSummary
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for SessionSummary
impl Debug for SessionSummary
source§impl PartialEq for SessionSummary
impl PartialEq for SessionSummary
source§fn eq(&self, other: &SessionSummary) -> bool
fn eq(&self, other: &SessionSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SessionSummary
Auto Trait Implementations§
impl RefUnwindSafe for SessionSummary
impl Send for SessionSummary
impl Sync for SessionSummary
impl Unpin for SessionSummary
impl UnwindSafe for SessionSummary
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.