1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListUserProficiencies`](crate::operation::list_user_proficiencies::builders::ListUserProficienciesFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_user_proficiencies::builders::ListUserProficienciesFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`instance_id(impl Into<String>)`](crate::operation::list_user_proficiencies::builders::ListUserProficienciesFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::list_user_proficiencies::builders::ListUserProficienciesFluentBuilder::set_instance_id):<br>required: **true**<br><p>The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.</p><br>
    ///   - [`user_id(impl Into<String>)`](crate::operation::list_user_proficiencies::builders::ListUserProficienciesFluentBuilder::user_id) / [`set_user_id(Option<String>)`](crate::operation::list_user_proficiencies::builders::ListUserProficienciesFluentBuilder::set_user_id):<br>required: **true**<br><p>The identifier of the user account.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_user_proficiencies::builders::ListUserProficienciesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_user_proficiencies::builders::ListUserProficienciesFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_user_proficiencies::builders::ListUserProficienciesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_user_proficiencies::builders::ListUserProficienciesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return per page.</p><br>
    /// - On success, responds with [`ListUserProficienciesOutput`](crate::operation::list_user_proficiencies::ListUserProficienciesOutput) with field(s):
    ///   - [`next_token(Option<String>)`](crate::operation::list_user_proficiencies::ListUserProficienciesOutput::next_token): <p>If there are additional results, this is the token for the next set of results.</p>
    ///   - [`user_proficiency_list(Option<Vec::<UserProficiency>>)`](crate::operation::list_user_proficiencies::ListUserProficienciesOutput::user_proficiency_list): <p>Information about the user proficiencies.</p>
    ///   - [`last_modified_time(Option<DateTime>)`](crate::operation::list_user_proficiencies::ListUserProficienciesOutput::last_modified_time): <p>The last time that the user's proficiencies are were modified.</p>
    ///   - [`last_modified_region(Option<String>)`](crate::operation::list_user_proficiencies::ListUserProficienciesOutput::last_modified_region): <p>The region in which a user's proficiencies were last modified.</p>
    /// - On failure, responds with [`SdkError<ListUserProficienciesError>`](crate::operation::list_user_proficiencies::ListUserProficienciesError)
    pub fn list_user_proficiencies(&self) -> crate::operation::list_user_proficiencies::builders::ListUserProficienciesFluentBuilder {
        crate::operation::list_user_proficiencies::builders::ListUserProficienciesFluentBuilder::new(self.handle.clone())
    }
}