aws_sdk_transfer/client/update_web_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 [`UpdateWebApp`](crate::operation::update_web_app::builders::UpdateWebAppFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`web_app_id(impl Into<String>)`](crate::operation::update_web_app::builders::UpdateWebAppFluentBuilder::web_app_id) / [`set_web_app_id(Option<String>)`](crate::operation::update_web_app::builders::UpdateWebAppFluentBuilder::set_web_app_id):<br>required: **true**<br><p>Provide the identifier of the web app that you are updating.</p><br>
7 /// - [`identity_provider_details(UpdateWebAppIdentityProviderDetails)`](crate::operation::update_web_app::builders::UpdateWebAppFluentBuilder::identity_provider_details) / [`set_identity_provider_details(Option<UpdateWebAppIdentityProviderDetails>)`](crate::operation::update_web_app::builders::UpdateWebAppFluentBuilder::set_identity_provider_details):<br>required: **false**<br><p>Provide updated identity provider values in a <code>WebAppIdentityProviderDetails</code> object.</p><br>
8 /// - [`access_endpoint(impl Into<String>)`](crate::operation::update_web_app::builders::UpdateWebAppFluentBuilder::access_endpoint) / [`set_access_endpoint(Option<String>)`](crate::operation::update_web_app::builders::UpdateWebAppFluentBuilder::set_access_endpoint):<br>required: **false**<br><p>The <code>AccessEndpoint</code> is the URL that you provide to your users for them to interact with the Transfer Family web app. You can specify a custom URL or use the default value.</p><br>
9 /// - [`web_app_units(WebAppUnits)`](crate::operation::update_web_app::builders::UpdateWebAppFluentBuilder::web_app_units) / [`set_web_app_units(Option<WebAppUnits>)`](crate::operation::update_web_app::builders::UpdateWebAppFluentBuilder::set_web_app_units):<br>required: **false**<br><p>A union that contains the value for number of concurrent connections or the user sessions on your web app.</p><br>
10 /// - [`endpoint_details(UpdateWebAppEndpointDetails)`](crate::operation::update_web_app::builders::UpdateWebAppFluentBuilder::endpoint_details) / [`set_endpoint_details(Option<UpdateWebAppEndpointDetails>)`](crate::operation::update_web_app::builders::UpdateWebAppFluentBuilder::set_endpoint_details):<br>required: **false**<br><p>The updated endpoint configuration for the web app. You can modify the endpoint type and VPC configuration settings.</p><br>
11 /// - On success, responds with [`UpdateWebAppOutput`](crate::operation::update_web_app::UpdateWebAppOutput) with field(s):
12 /// - [`web_app_id(String)`](crate::operation::update_web_app::UpdateWebAppOutput::web_app_id): <p>Returns the unique identifier for the web app being updated.</p>
13 /// - On failure, responds with [`SdkError<UpdateWebAppError>`](crate::operation::update_web_app::UpdateWebAppError)
14 pub fn update_web_app(&self) -> crate::operation::update_web_app::builders::UpdateWebAppFluentBuilder {
15 crate::operation::update_web_app::builders::UpdateWebAppFluentBuilder::new(self.handle.clone())
16 }
17}