aws_sdk_qconnect/client/
delete_ai_prompt.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteAIPrompt`](crate::operation::delete_ai_prompt::builders::DeleteAIPromptFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`assistant_id(impl Into<String>)`](crate::operation::delete_ai_prompt::builders::DeleteAIPromptFluentBuilder::assistant_id) / [`set_assistant_id(Option<String>)`](crate::operation::delete_ai_prompt::builders::DeleteAIPromptFluentBuilder::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>
    ///   - [`ai_prompt_id(impl Into<String>)`](crate::operation::delete_ai_prompt::builders::DeleteAIPromptFluentBuilder::ai_prompt_id) / [`set_ai_prompt_id(Option<String>)`](crate::operation::delete_ai_prompt::builders::DeleteAIPromptFluentBuilder::set_ai_prompt_id):<br>required: **true**<br><p>The identifier of the Amazon Q in Connect AI prompt. Can be either the ID or the ARN. URLs cannot contain the ARN.</p><br>
    /// - On success, responds with [`DeleteAiPromptOutput`](crate::operation::delete_ai_prompt::DeleteAiPromptOutput)
    /// - On failure, responds with [`SdkError<DeleteAIPromptError>`](crate::operation::delete_ai_prompt::DeleteAIPromptError)
    pub fn delete_ai_prompt(&self) -> crate::operation::delete_ai_prompt::builders::DeleteAIPromptFluentBuilder {
        crate::operation::delete_ai_prompt::builders::DeleteAIPromptFluentBuilder::new(self.handle.clone())
    }
}