Struct aws_sdk_wisdom::operation::get_assistant::GetAssistantInput
source · #[non_exhaustive]pub struct GetAssistantInput {
pub assistant_id: Option<String>,
}
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.assistant_id: Option<String>
The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
Implementations§
source§impl GetAssistantInput
impl GetAssistantInput
sourcepub fn assistant_id(&self) -> Option<&str>
pub fn assistant_id(&self) -> Option<&str>
The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
source§impl GetAssistantInput
impl GetAssistantInput
sourcepub fn builder() -> GetAssistantInputBuilder
pub fn builder() -> GetAssistantInputBuilder
Creates a new builder-style object to manufacture GetAssistantInput
.
Trait Implementations§
source§impl Clone for GetAssistantInput
impl Clone for GetAssistantInput
source§fn clone(&self) -> GetAssistantInput
fn clone(&self) -> GetAssistantInput
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 GetAssistantInput
impl Debug for GetAssistantInput
source§impl PartialEq<GetAssistantInput> for GetAssistantInput
impl PartialEq<GetAssistantInput> for GetAssistantInput
source§fn eq(&self, other: &GetAssistantInput) -> bool
fn eq(&self, other: &GetAssistantInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetAssistantInput
Auto Trait Implementations§
impl RefUnwindSafe for GetAssistantInput
impl Send for GetAssistantInput
impl Sync for GetAssistantInput
impl Unpin for GetAssistantInput
impl UnwindSafe for GetAssistantInput
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