1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateAccount`](crate::operation::update_account::builders::UpdateAccountFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`patch_operations(PatchOperation)`](crate::operation::update_account::builders::UpdateAccountFluentBuilder::patch_operations) / [`set_patch_operations(Option<Vec::<PatchOperation>>)`](crate::operation::update_account::builders::UpdateAccountFluentBuilder::set_patch_operations):<br>required: **false**<br><p>For more information about supported patch operations, see <a href="https://docs.aws.amazon.com/apigateway/latest/api/patch-operations.html">Patch Operations</a>.</p><br>
    /// - On success, responds with [`UpdateAccountOutput`](crate::operation::update_account::UpdateAccountOutput) with field(s):
    ///   - [`cloudwatch_role_arn(Option<String>)`](crate::operation::update_account::UpdateAccountOutput::cloudwatch_role_arn): <p>The ARN of an Amazon CloudWatch role for the current Account. </p>
    ///   - [`throttle_settings(Option<ThrottleSettings>)`](crate::operation::update_account::UpdateAccountOutput::throttle_settings): <p>Specifies the API request limits configured for the current Account.</p>
    ///   - [`features(Option<Vec::<String>>)`](crate::operation::update_account::UpdateAccountOutput::features): <p>A list of features supported for the account. When usage plans are enabled, the features list will include an entry of <code>"UsagePlans"</code>.</p>
    ///   - [`api_key_version(Option<String>)`](crate::operation::update_account::UpdateAccountOutput::api_key_version): <p>The version of the API keys used for the account.</p>
    /// - On failure, responds with [`SdkError<UpdateAccountError>`](crate::operation::update_account::UpdateAccountError)
    pub fn update_account(&self) -> crate::operation::update_account::builders::UpdateAccountFluentBuilder {
        crate::operation::update_account::builders::UpdateAccountFluentBuilder::new(self.handle.clone())
    }
}