aws_sdk_qbusiness/client/
delete_chat_response_configuration.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 [`DeleteChatResponseConfiguration`](crate::operation::delete_chat_response_configuration::builders::DeleteChatResponseConfigurationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`application_id(impl Into<String>)`](crate::operation::delete_chat_response_configuration::builders::DeleteChatResponseConfigurationFluentBuilder::application_id) / [`set_application_id(Option<String>)`](crate::operation::delete_chat_response_configuration::builders::DeleteChatResponseConfigurationFluentBuilder::set_application_id):<br>required: **true**<br><p>The unique identifier of theAmazon Q Business application from which to delete the chat response configuration.</p><br>
7    ///   - [`chat_response_configuration_id(impl Into<String>)`](crate::operation::delete_chat_response_configuration::builders::DeleteChatResponseConfigurationFluentBuilder::chat_response_configuration_id) / [`set_chat_response_configuration_id(Option<String>)`](crate::operation::delete_chat_response_configuration::builders::DeleteChatResponseConfigurationFluentBuilder::set_chat_response_configuration_id):<br>required: **true**<br><p>The unique identifier of the chat response configuration to delete from the specified application.</p><br>
8    /// - On success, responds with [`DeleteChatResponseConfigurationOutput`](crate::operation::delete_chat_response_configuration::DeleteChatResponseConfigurationOutput)
9    /// - On failure, responds with [`SdkError<DeleteChatResponseConfigurationError>`](crate::operation::delete_chat_response_configuration::DeleteChatResponseConfigurationError)
10    pub fn delete_chat_response_configuration(
11        &self,
12    ) -> crate::operation::delete_chat_response_configuration::builders::DeleteChatResponseConfigurationFluentBuilder {
13        crate::operation::delete_chat_response_configuration::builders::DeleteChatResponseConfigurationFluentBuilder::new(self.handle.clone())
14    }
15}