// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListTargetAccountConfigurations`](crate::operation::list_target_account_configurations::builders::ListTargetAccountConfigurationsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_target_account_configurations::builders::ListTargetAccountConfigurationsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`experiment_template_id(impl Into<String>)`](crate::operation::list_target_account_configurations::builders::ListTargetAccountConfigurationsFluentBuilder::experiment_template_id) / [`set_experiment_template_id(Option<String>)`](crate::operation::list_target_account_configurations::builders::ListTargetAccountConfigurationsFluentBuilder::set_experiment_template_id):<br>required: **true**<br><p>The ID of the experiment template.</p><br>
/// - [`max_results(i32)`](crate::operation::list_target_account_configurations::builders::ListTargetAccountConfigurationsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_target_account_configurations::builders::ListTargetAccountConfigurationsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_target_account_configurations::builders::ListTargetAccountConfigurationsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_target_account_configurations::builders::ListTargetAccountConfigurationsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next page of results.</p><br>
/// - On success, responds with [`ListTargetAccountConfigurationsOutput`](crate::operation::list_target_account_configurations::ListTargetAccountConfigurationsOutput) with field(s):
/// - [`target_account_configurations(Option<Vec::<TargetAccountConfigurationSummary>>)`](crate::operation::list_target_account_configurations::ListTargetAccountConfigurationsOutput::target_account_configurations): <p>The target account configurations.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_target_account_configurations::ListTargetAccountConfigurationsOutput::next_token): <p>The token to use to retrieve the next page of results. This value is null when there are no more results to return.</p>
/// - On failure, responds with [`SdkError<ListTargetAccountConfigurationsError>`](crate::operation::list_target_account_configurations::ListTargetAccountConfigurationsError)
pub fn list_target_account_configurations(
&self,
) -> crate::operation::list_target_account_configurations::builders::ListTargetAccountConfigurationsFluentBuilder {
crate::operation::list_target_account_configurations::builders::ListTargetAccountConfigurationsFluentBuilder::new(self.handle.clone())
}
}