aws_sdk_qconnect/client/
delete_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 [`DeleteAIAgent`](crate::operation::delete_ai_agent::builders::DeleteAIAgentFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`assistant_id(impl Into<String>)`](crate::operation::delete_ai_agent::builders::DeleteAIAgentFluentBuilder::assistant_id) / [`set_assistant_id(Option<String>)`](crate::operation::delete_ai_agent::builders::DeleteAIAgentFluentBuilder::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_id(impl Into<String>)`](crate::operation::delete_ai_agent::builders::DeleteAIAgentFluentBuilder::ai_agent_id) / [`set_ai_agent_id(Option<String>)`](crate::operation::delete_ai_agent::builders::DeleteAIAgentFluentBuilder::set_ai_agent_id):<br>required: **true**<br><p>The identifier of the Amazon Q in Connect AI Agent. Can be either the ID or the ARN. URLs cannot contain the ARN.</p><br>
8    /// - On success, responds with [`DeleteAiAgentOutput`](crate::operation::delete_ai_agent::DeleteAiAgentOutput)
9    /// - On failure, responds with [`SdkError<DeleteAIAgentError>`](crate::operation::delete_ai_agent::DeleteAIAgentError)
10    pub fn delete_ai_agent(&self) -> crate::operation::delete_ai_agent::builders::DeleteAIAgentFluentBuilder {
11        crate::operation::delete_ai_agent::builders::DeleteAIAgentFluentBuilder::new(self.handle.clone())
12    }
13}