aws_sdk_qconnect/client/
remove_assistant_ai_agent.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 [`RemoveAssistantAIAgent`](crate::operation::remove_assistant_ai_agent::builders::RemoveAssistantAIAgentFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`assistant_id(impl Into<String>)`](crate::operation::remove_assistant_ai_agent::builders::RemoveAssistantAIAgentFluentBuilder::assistant_id) / [`set_assistant_id(Option<String>)`](crate::operation::remove_assistant_ai_agent::builders::RemoveAssistantAIAgentFluentBuilder::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>
7    ///   - [`ai_agent_type(AiAgentType)`](crate::operation::remove_assistant_ai_agent::builders::RemoveAssistantAIAgentFluentBuilder::ai_agent_type) / [`set_ai_agent_type(Option<AiAgentType>)`](crate::operation::remove_assistant_ai_agent::builders::RemoveAssistantAIAgentFluentBuilder::set_ai_agent_type):<br>required: **true**<br><p>The type of the AI Agent being removed for use by default from the Amazon Q in Connect Assistant.</p><br>
8    /// - On success, responds with [`RemoveAssistantAiAgentOutput`](crate::operation::remove_assistant_ai_agent::RemoveAssistantAiAgentOutput)
9    /// - On failure, responds with [`SdkError<RemoveAssistantAIAgentError>`](crate::operation::remove_assistant_ai_agent::RemoveAssistantAIAgentError)
10    pub fn remove_assistant_ai_agent(&self) -> crate::operation::remove_assistant_ai_agent::builders::RemoveAssistantAIAgentFluentBuilder {
11        crate::operation::remove_assistant_ai_agent::builders::RemoveAssistantAIAgentFluentBuilder::new(self.handle.clone())
12    }
13}