// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListAIWorkloadConfigs`](crate::operation::list_ai_workload_configs::builders::ListAIWorkloadConfigsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_ai_workload_configs::builders::ListAIWorkloadConfigsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`max_results(i32)`](crate::operation::list_ai_workload_configs::builders::ListAIWorkloadConfigsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_ai_workload_configs::builders::ListAIWorkloadConfigsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of AI workload configurations to return in the response.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_ai_workload_configs::builders::ListAIWorkloadConfigsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_ai_workload_configs::builders::ListAIWorkloadConfigsFluentBuilder::set_next_token):<br>required: **false**<br><p>If the previous call to <code>ListAIWorkloadConfigs</code> didn't return the full set of configurations, the call returns a token for getting the next set of configurations.</p><br>
/// - [`name_contains(impl Into<String>)`](crate::operation::list_ai_workload_configs::builders::ListAIWorkloadConfigsFluentBuilder::name_contains) / [`set_name_contains(Option<String>)`](crate::operation::list_ai_workload_configs::builders::ListAIWorkloadConfigsFluentBuilder::set_name_contains):<br>required: **false**<br><p>A string in the configuration name. This filter returns only configurations whose name contains the specified string.</p><br>
/// - [`creation_time_after(DateTime)`](crate::operation::list_ai_workload_configs::builders::ListAIWorkloadConfigsFluentBuilder::creation_time_after) / [`set_creation_time_after(Option<DateTime>)`](crate::operation::list_ai_workload_configs::builders::ListAIWorkloadConfigsFluentBuilder::set_creation_time_after):<br>required: **false**<br><p>A filter that returns only configurations created after the specified time.</p><br>
/// - [`creation_time_before(DateTime)`](crate::operation::list_ai_workload_configs::builders::ListAIWorkloadConfigsFluentBuilder::creation_time_before) / [`set_creation_time_before(Option<DateTime>)`](crate::operation::list_ai_workload_configs::builders::ListAIWorkloadConfigsFluentBuilder::set_creation_time_before):<br>required: **false**<br><p>A filter that returns only configurations created before the specified time.</p><br>
/// - [`sort_by(ListAiWorkloadConfigsSortBy)`](crate::operation::list_ai_workload_configs::builders::ListAIWorkloadConfigsFluentBuilder::sort_by) / [`set_sort_by(Option<ListAiWorkloadConfigsSortBy>)`](crate::operation::list_ai_workload_configs::builders::ListAIWorkloadConfigsFluentBuilder::set_sort_by):<br>required: **false**<br><p>The field to sort results by. The default is <code>CreationTime</code>.</p><br>
/// - [`sort_order(SortOrder)`](crate::operation::list_ai_workload_configs::builders::ListAIWorkloadConfigsFluentBuilder::sort_order) / [`set_sort_order(Option<SortOrder>)`](crate::operation::list_ai_workload_configs::builders::ListAIWorkloadConfigsFluentBuilder::set_sort_order):<br>required: **false**<br><p>The sort order for results. The default is <code>Descending</code>.</p><br>
/// - On success, responds with [`ListAiWorkloadConfigsOutput`](crate::operation::list_ai_workload_configs::ListAiWorkloadConfigsOutput) with field(s):
/// - [`ai_workload_configs(Option<Vec::<AiWorkloadConfigSummary>>)`](crate::operation::list_ai_workload_configs::ListAiWorkloadConfigsOutput::ai_workload_configs): <p>An array of <code>AIWorkloadConfigSummary</code> objects, one for each AI workload configuration that matches the specified filters.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_ai_workload_configs::ListAiWorkloadConfigsOutput::next_token): <p>If the response is truncated, Amazon SageMaker AI returns this token. To retrieve the next set of configurations, use it in the subsequent request.</p>
/// - On failure, responds with [`SdkError<ListAIWorkloadConfigsError>`](crate::operation::list_ai_workload_configs::ListAIWorkloadConfigsError)
pub fn list_ai_workload_configs(&self) -> crate::operation::list_ai_workload_configs::builders::ListAIWorkloadConfigsFluentBuilder {
crate::operation::list_ai_workload_configs::builders::ListAIWorkloadConfigsFluentBuilder::new(self.handle.clone())
}
}