aws-sdk-identitystore 1.27.0

AWS SDK for AWS SSO Identity Store
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeUser`](crate::operation::describe_user::builders::DescribeUserFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`identity_store_id(impl Into<String>)`](crate::operation::describe_user::builders::DescribeUserFluentBuilder::identity_store_id) / [`set_identity_store_id(Option<String>)`](crate::operation::describe_user::builders::DescribeUserFluentBuilder::set_identity_store_id):<br>required: **true**<br><p>The globally unique identifier for the identity store, such as <code>d-1234567890</code>. In this example, <code>d-</code> is a fixed prefix, and <code>1234567890</code> is a randomly generated string that contains numbers and lower case letters. This value is generated at the time that a new identity store is created.</p><br>
    ///   - [`user_id(impl Into<String>)`](crate::operation::describe_user::builders::DescribeUserFluentBuilder::user_id) / [`set_user_id(Option<String>)`](crate::operation::describe_user::builders::DescribeUserFluentBuilder::set_user_id):<br>required: **true**<br><p>The identifier for a user in the identity store.</p><br>
    /// - On success, responds with [`DescribeUserOutput`](crate::operation::describe_user::DescribeUserOutput) with field(s):
    ///   - [`user_name(Option<String>)`](crate::operation::describe_user::DescribeUserOutput::user_name): <p>A unique string used to identify the user. The length limit is 128 characters. This value can consist of letters, accented characters, symbols, numbers, and punctuation. This value is specified at the time the user is created and stored as an attribute of the user object in the identity store.</p>
    ///   - [`user_id(String)`](crate::operation::describe_user::DescribeUserOutput::user_id): <p>The identifier for a user in the identity store.</p>
    ///   - [`external_ids(Option<Vec::<ExternalId>>)`](crate::operation::describe_user::DescribeUserOutput::external_ids): <p>A list of <code>ExternalId</code> objects that contains the identifiers issued to this resource by an external identity provider.</p>
    ///   - [`name(Option<Name>)`](crate::operation::describe_user::DescribeUserOutput::name): <p>The name of the user.</p>
    ///   - [`display_name(Option<String>)`](crate::operation::describe_user::DescribeUserOutput::display_name): <p>The display name of the user.</p>
    ///   - [`nick_name(Option<String>)`](crate::operation::describe_user::DescribeUserOutput::nick_name): <p>An alternative descriptive name for the user.</p>
    ///   - [`profile_url(Option<String>)`](crate::operation::describe_user::DescribeUserOutput::profile_url): <p>A URL link for the user's profile.</p>
    ///   - [`emails(Option<Vec::<Email>>)`](crate::operation::describe_user::DescribeUserOutput::emails): <p>The email address of the user.</p>
    ///   - [`addresses(Option<Vec::<Address>>)`](crate::operation::describe_user::DescribeUserOutput::addresses): <p>The physical address of the user.</p>
    ///   - [`phone_numbers(Option<Vec::<PhoneNumber>>)`](crate::operation::describe_user::DescribeUserOutput::phone_numbers): <p>A list of <code>PhoneNumber</code> objects associated with a user.</p>
    ///   - [`user_type(Option<String>)`](crate::operation::describe_user::DescribeUserOutput::user_type): <p>A string indicating the type of user.</p>
    ///   - [`title(Option<String>)`](crate::operation::describe_user::DescribeUserOutput::title): <p>A string containing the title of the user.</p>
    ///   - [`preferred_language(Option<String>)`](crate::operation::describe_user::DescribeUserOutput::preferred_language): <p>The preferred language of the user.</p>
    ///   - [`locale(Option<String>)`](crate::operation::describe_user::DescribeUserOutput::locale): <p>A string containing the geographical region or location of the user.</p>
    ///   - [`timezone(Option<String>)`](crate::operation::describe_user::DescribeUserOutput::timezone): <p>The time zone for a user.</p>
    ///   - [`identity_store_id(String)`](crate::operation::describe_user::DescribeUserOutput::identity_store_id): <p>The globally unique identifier for the identity store.</p>
    /// - On failure, responds with [`SdkError<DescribeUserError>`](crate::operation::describe_user::DescribeUserError)
    pub fn describe_user(&self) -> crate::operation::describe_user::builders::DescribeUserFluentBuilder {
        crate::operation::describe_user::builders::DescribeUserFluentBuilder::new(self.handle.clone())
    }
}