aws_sdk_qapps/client/update_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 [`UpdateQApp`](crate::operation::update_q_app::builders::UpdateQAppFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`instance_id(impl Into<String>)`](crate::operation::update_q_app::builders::UpdateQAppFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::update_q_app::builders::UpdateQAppFluentBuilder::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::update_q_app::builders::UpdateQAppFluentBuilder::app_id) / [`set_app_id(Option<String>)`](crate::operation::update_q_app::builders::UpdateQAppFluentBuilder::set_app_id):<br>required: **true**<br><p>The unique identifier of the Q App to update.</p><br>
8 /// - [`title(impl Into<String>)`](crate::operation::update_q_app::builders::UpdateQAppFluentBuilder::title) / [`set_title(Option<String>)`](crate::operation::update_q_app::builders::UpdateQAppFluentBuilder::set_title):<br>required: **false**<br><p>The new title for the Q App.</p><br>
9 /// - [`description(impl Into<String>)`](crate::operation::update_q_app::builders::UpdateQAppFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_q_app::builders::UpdateQAppFluentBuilder::set_description):<br>required: **false**<br><p>The new description for the Q App.</p><br>
10 /// - [`app_definition(AppDefinitionInput)`](crate::operation::update_q_app::builders::UpdateQAppFluentBuilder::app_definition) / [`set_app_definition(Option<AppDefinitionInput>)`](crate::operation::update_q_app::builders::UpdateQAppFluentBuilder::set_app_definition):<br>required: **false**<br><p>The new definition specifying the cards and flow for the Q App.</p><br>
11 /// - On success, responds with [`UpdateQAppOutput`](crate::operation::update_q_app::UpdateQAppOutput) with field(s):
12 /// - [`app_id(String)`](crate::operation::update_q_app::UpdateQAppOutput::app_id): <p>The unique identifier of the updated Q App.</p>
13 /// - [`app_arn(String)`](crate::operation::update_q_app::UpdateQAppOutput::app_arn): <p>The Amazon Resource Name (ARN) of the updated Q App.</p>
14 /// - [`title(String)`](crate::operation::update_q_app::UpdateQAppOutput::title): <p>The new title of the updated Q App.</p>
15 /// - [`description(Option<String>)`](crate::operation::update_q_app::UpdateQAppOutput::description): <p>The new description of the updated Q App.</p>
16 /// - [`initial_prompt(Option<String>)`](crate::operation::update_q_app::UpdateQAppOutput::initial_prompt): <p>The initial prompt for the updated Q App.</p>
17 /// - [`app_version(i32)`](crate::operation::update_q_app::UpdateQAppOutput::app_version): <p>The new version of the updated Q App.</p>
18 /// - [`status(AppStatus)`](crate::operation::update_q_app::UpdateQAppOutput::status): <p>The status of the updated Q App.</p>
19 /// - [`created_at(DateTime)`](crate::operation::update_q_app::UpdateQAppOutput::created_at): <p>The date and time the Q App was originally created.</p>
20 /// - [`created_by(String)`](crate::operation::update_q_app::UpdateQAppOutput::created_by): <p>The user who originally created the Q App.</p>
21 /// - [`updated_at(DateTime)`](crate::operation::update_q_app::UpdateQAppOutput::updated_at): <p>The date and time the Q App was last updated.</p>
22 /// - [`updated_by(String)`](crate::operation::update_q_app::UpdateQAppOutput::updated_by): <p>The user who last updated the Q App.</p>
23 /// - [`required_capabilities(Option<Vec::<AppRequiredCapability>>)`](crate::operation::update_q_app::UpdateQAppOutput::required_capabilities): <p>The capabilities required for the updated Q App.</p>
24 /// - On failure, responds with [`SdkError<UpdateQAppError>`](crate::operation::update_q_app::UpdateQAppError)
25 pub fn update_q_app(&self) -> crate::operation::update_q_app::builders::UpdateQAppFluentBuilder {
26 crate::operation::update_q_app::builders::UpdateQAppFluentBuilder::new(self.handle.clone())
27 }
28}