aws_sdk_qapps/client/delete_q_app.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 [`DeleteQApp`](crate::operation::delete_q_app::builders::DeleteQAppFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`instance_id(impl Into<String>)`](crate::operation::delete_q_app::builders::DeleteQAppFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::delete_q_app::builders::DeleteQAppFluentBuilder::set_instance_id):<br>required: **true**<br><p>The unique identifier of the Amazon Q Business application environment instance.</p><br>
7 /// - [`app_id(impl Into<String>)`](crate::operation::delete_q_app::builders::DeleteQAppFluentBuilder::app_id) / [`set_app_id(Option<String>)`](crate::operation::delete_q_app::builders::DeleteQAppFluentBuilder::set_app_id):<br>required: **true**<br><p>The unique identifier of the Q App to delete.</p><br>
8 /// - On success, responds with [`DeleteQAppOutput`](crate::operation::delete_q_app::DeleteQAppOutput)
9 /// - On failure, responds with [`SdkError<DeleteQAppError>`](crate::operation::delete_q_app::DeleteQAppError)
10 pub fn delete_q_app(&self) -> crate::operation::delete_q_app::builders::DeleteQAppFluentBuilder {
11 crate::operation::delete_q_app::builders::DeleteQAppFluentBuilder::new(self.handle.clone())
12 }
13}