// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateAppVersion`](crate::operation::update_app_version::builders::UpdateAppVersionFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`app_arn(impl Into<String>)`](crate::operation::update_app_version::builders::UpdateAppVersionFluentBuilder::app_arn) / [`set_app_arn(Option<String>)`](crate::operation::update_app_version::builders::UpdateAppVersionFluentBuilder::set_app_arn):<br>required: **true**<br><p>Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html"> Amazon Resource Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i> guide.</p><br>
    ///   - [`additional_info(impl Into<String>, Vec::<String>)`](crate::operation::update_app_version::builders::UpdateAppVersionFluentBuilder::additional_info) / [`set_additional_info(Option<HashMap::<String, Vec::<String>>>)`](crate::operation::update_app_version::builders::UpdateAppVersionFluentBuilder::set_additional_info):<br>required: **false**<br><p>Additional configuration parameters for an Resilience Hub application. If you want to implement <code>additionalInfo</code> through the Resilience Hub console rather than using an API call, see <a href="https://docs.aws.amazon.com/resilience-hub/latest/userguide/app-config-param.html">Configure the application configuration parameters</a>.</p><note>  <p>Currently, this parameter accepts a key-value mapping (in a string format) of only one failover region and one associated account.</p>  <p>Key: <code>"failover-regions"</code></p>  <p>Value: <code>"[{"region":"<REGION>", "accounts":[{"id":"<ACCOUNT_ID>"}]}]"</code></p> </note><br>
    /// - On success, responds with [`UpdateAppVersionOutput`](crate::operation::update_app_version::UpdateAppVersionOutput) with field(s):
    ///   - [`app_arn(String)`](crate::operation::update_app_version::UpdateAppVersionOutput::app_arn): <p>Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html"> Amazon Resource Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i> guide.</p>
    ///   - [`app_version(String)`](crate::operation::update_app_version::UpdateAppVersionOutput::app_version): <p>Resilience Hub application version.</p>
    ///   - [`additional_info(Option<HashMap::<String, Vec::<String>>>)`](crate::operation::update_app_version::UpdateAppVersionOutput::additional_info): <p>Additional configuration parameters for an Resilience Hub application. If you want to implement <code>additionalInfo</code> through the Resilience Hub console rather than using an API call, see <a href="https://docs.aws.amazon.com/resilience-hub/latest/userguide/app-config-param.html">Configure the application configuration parameters</a>.</p><note>  <p>Currently, this parameter supports only failover region and account.</p> </note>
    /// - On failure, responds with [`SdkError<UpdateAppVersionError>`](crate::operation::update_app_version::UpdateAppVersionError)
    pub fn update_app_version(&self) -> crate::operation::update_app_version::builders::UpdateAppVersionFluentBuilder {
        crate::operation::update_app_version::builders::UpdateAppVersionFluentBuilder::new(self.handle.clone())
    }
}