Struct aws_sdk_qconnect::operation::create_assistant_association::builders::CreateAssistantAssociationFluentBuilder
source · pub struct CreateAssistantAssociationFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to CreateAssistantAssociation.
Creates an association between an Amazon Q in Connect assistant and another resource. Currently, the only supported association is with a knowledge base. An assistant can have only a single association.
Implementations§
source§impl CreateAssistantAssociationFluentBuilder
impl CreateAssistantAssociationFluentBuilder
sourcepub fn as_input(&self) -> &CreateAssistantAssociationInputBuilder
pub fn as_input(&self) -> &CreateAssistantAssociationInputBuilder
Access the CreateAssistantAssociation as a reference.
sourcepub async fn send(
self,
) -> Result<CreateAssistantAssociationOutput, SdkError<CreateAssistantAssociationError, HttpResponse>>
pub async fn send( self, ) -> Result<CreateAssistantAssociationOutput, SdkError<CreateAssistantAssociationError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self,
) -> CustomizableOperation<CreateAssistantAssociationOutput, CreateAssistantAssociationError, Self>
pub fn customize( self, ) -> CustomizableOperation<CreateAssistantAssociationOutput, CreateAssistantAssociationError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn assistant_id(self, input: impl Into<String>) -> Self
pub fn assistant_id(self, input: impl Into<String>) -> Self
The identifier of the Amazon Q in Connect assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
sourcepub fn set_assistant_id(self, input: Option<String>) -> Self
pub fn set_assistant_id(self, input: Option<String>) -> Self
The identifier of the Amazon Q in Connect assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
sourcepub fn get_assistant_id(&self) -> &Option<String>
pub fn get_assistant_id(&self) -> &Option<String>
The identifier of the Amazon Q in Connect assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
sourcepub fn association_type(self, input: AssociationType) -> Self
pub fn association_type(self, input: AssociationType) -> Self
The type of association.
sourcepub fn set_association_type(self, input: Option<AssociationType>) -> Self
pub fn set_association_type(self, input: Option<AssociationType>) -> Self
The type of association.
sourcepub fn get_association_type(&self) -> &Option<AssociationType>
pub fn get_association_type(&self) -> &Option<AssociationType>
The type of association.
sourcepub fn association(self, input: AssistantAssociationInputData) -> Self
pub fn association(self, input: AssistantAssociationInputData) -> Self
The identifier of the associated resource.
sourcepub fn set_association(
self,
input: Option<AssistantAssociationInputData>,
) -> Self
pub fn set_association( self, input: Option<AssistantAssociationInputData>, ) -> Self
The identifier of the associated resource.
sourcepub fn get_association(&self) -> &Option<AssistantAssociationInputData>
pub fn get_association(&self) -> &Option<AssistantAssociationInputData>
The identifier of the associated resource.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
sourcepub fn get_client_token(&self) -> &Option<String>
pub fn get_client_token(&self) -> &Option<String>
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
Adds a key-value pair to tags.
To override the contents of this collection use set_tags.
The tags used to organize, track, or control access for this resource.
The tags used to organize, track, or control access for this resource.
The tags used to organize, track, or control access for this resource.
Trait Implementations§
source§impl Clone for CreateAssistantAssociationFluentBuilder
impl Clone for CreateAssistantAssociationFluentBuilder
source§fn clone(&self) -> CreateAssistantAssociationFluentBuilder
fn clone(&self) -> CreateAssistantAssociationFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
impl Freeze for CreateAssistantAssociationFluentBuilder
impl !RefUnwindSafe for CreateAssistantAssociationFluentBuilder
impl Send for CreateAssistantAssociationFluentBuilder
impl Sync for CreateAssistantAssociationFluentBuilder
impl Unpin for CreateAssistantAssociationFluentBuilder
impl !UnwindSafe for CreateAssistantAssociationFluentBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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