// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`UpdateAccountPool`](crate::operation::update_account_pool::builders::UpdateAccountPoolFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`domain_identifier(impl Into<String>)`](crate::operation::update_account_pool::builders::UpdateAccountPoolFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::update_account_pool::builders::UpdateAccountPoolFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The domain ID where the account pool that is to be updated lives.</p><br>
/// - [`identifier(impl Into<String>)`](crate::operation::update_account_pool::builders::UpdateAccountPoolFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::update_account_pool::builders::UpdateAccountPoolFluentBuilder::set_identifier):<br>required: **true**<br><p>The ID of the account pool that is to be updated.</p><br>
/// - [`name(impl Into<String>)`](crate::operation::update_account_pool::builders::UpdateAccountPoolFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::update_account_pool::builders::UpdateAccountPoolFluentBuilder::set_name):<br>required: **false**<br><p>The name of the account pool that is to be updated.</p><br>
/// - [`description(impl Into<String>)`](crate::operation::update_account_pool::builders::UpdateAccountPoolFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_account_pool::builders::UpdateAccountPoolFluentBuilder::set_description):<br>required: **false**<br><p>The description of the account pool that is to be udpated.</p><br>
/// - [`resolution_strategy(ResolutionStrategy)`](crate::operation::update_account_pool::builders::UpdateAccountPoolFluentBuilder::resolution_strategy) / [`set_resolution_strategy(Option<ResolutionStrategy>)`](crate::operation::update_account_pool::builders::UpdateAccountPoolFluentBuilder::set_resolution_strategy):<br>required: **false**<br><p>The mechanism used to resolve the account selection from the account pool.</p><br>
/// - [`account_source(AccountSource)`](crate::operation::update_account_pool::builders::UpdateAccountPoolFluentBuilder::account_source) / [`set_account_source(Option<AccountSource>)`](crate::operation::update_account_pool::builders::UpdateAccountPoolFluentBuilder::set_account_source):<br>required: **false**<br><p>The source of accounts for the account pool. In the current release, it's either a static list of accounts provided by the customer or a custom Amazon Web Services Lambda handler.</p><br>
/// - On success, responds with [`UpdateAccountPoolOutput`](crate::operation::update_account_pool::UpdateAccountPoolOutput) with field(s):
/// - [`domain_id(Option<String>)`](crate::operation::update_account_pool::UpdateAccountPoolOutput::domain_id): <p>The domain ID where the account pool that is to be updated lives.</p>
/// - [`name(Option<String>)`](crate::operation::update_account_pool::UpdateAccountPoolOutput::name): <p>The name of the account pool that is to be updated.</p>
/// - [`id(Option<String>)`](crate::operation::update_account_pool::UpdateAccountPoolOutput::id): <p>The ID of the account pool that is to be updated.</p>
/// - [`description(Option<String>)`](crate::operation::update_account_pool::UpdateAccountPoolOutput::description): <p>The description of the account pool that is to be udpated.</p>
/// - [`resolution_strategy(Option<ResolutionStrategy>)`](crate::operation::update_account_pool::UpdateAccountPoolOutput::resolution_strategy): <p>The mechanism used to resolve the account selection from the account pool.</p>
/// - [`account_source(Option<AccountSource>)`](crate::operation::update_account_pool::UpdateAccountPoolOutput::account_source): <p>The source of accounts for the account pool. In the current release, it's either a static list of accounts provided by the customer or a custom Amazon Web Services Lambda handler.</p>
/// - [`created_by(String)`](crate::operation::update_account_pool::UpdateAccountPoolOutput::created_by): <p>The user who created the account pool.</p>
/// - [`created_at(Option<DateTime>)`](crate::operation::update_account_pool::UpdateAccountPoolOutput::created_at): <p>The timestamp at which the account pool was created.</p>
/// - [`last_updated_at(Option<DateTime>)`](crate::operation::update_account_pool::UpdateAccountPoolOutput::last_updated_at): <p>The timestamp at which the account pool was last updated.</p>
/// - [`updated_by(Option<String>)`](crate::operation::update_account_pool::UpdateAccountPoolOutput::updated_by): <p>The user who last updated the account pool.</p>
/// - [`domain_unit_id(Option<String>)`](crate::operation::update_account_pool::UpdateAccountPoolOutput::domain_unit_id): <p>The domain ID in which the account pool that is to be updated lives.</p>
/// - On failure, responds with [`SdkError<UpdateAccountPoolError>`](crate::operation::update_account_pool::UpdateAccountPoolError)
pub fn update_account_pool(&self) -> crate::operation::update_account_pool::builders::UpdateAccountPoolFluentBuilder {
crate::operation::update_account_pool::builders::UpdateAccountPoolFluentBuilder::new(self.handle.clone())
}
}