aws_sdk_qconnect/client/delete_assistant_association.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DeleteAssistantAssociation`](crate::operation::delete_assistant_association::builders::DeleteAssistantAssociationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`assistant_association_id(impl Into<String>)`](crate::operation::delete_assistant_association::builders::DeleteAssistantAssociationFluentBuilder::assistant_association_id) / [`set_assistant_association_id(Option<String>)`](crate::operation::delete_assistant_association::builders::DeleteAssistantAssociationFluentBuilder::set_assistant_association_id):<br>required: **true**<br><p>The identifier of the assistant association. Can be either the ID or the ARN. URLs cannot contain the ARN.</p><br>
7 /// - [`assistant_id(impl Into<String>)`](crate::operation::delete_assistant_association::builders::DeleteAssistantAssociationFluentBuilder::assistant_id) / [`set_assistant_id(Option<String>)`](crate::operation::delete_assistant_association::builders::DeleteAssistantAssociationFluentBuilder::set_assistant_id):<br>required: **true**<br><p>The identifier of the Amazon Q in Connect assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.</p><br>
8 /// - On success, responds with [`DeleteAssistantAssociationOutput`](crate::operation::delete_assistant_association::DeleteAssistantAssociationOutput)
9 /// - On failure, responds with [`SdkError<DeleteAssistantAssociationError>`](crate::operation::delete_assistant_association::DeleteAssistantAssociationError)
10 pub fn delete_assistant_association(&self) -> crate::operation::delete_assistant_association::builders::DeleteAssistantAssociationFluentBuilder {
11 crate::operation::delete_assistant_association::builders::DeleteAssistantAssociationFluentBuilder::new(self.handle.clone())
12 }
13}