getUser

suspend fun getUser(argument: GetUserPlainArgs): GetUserResult

Use this data source to get an Identity Store User.

Return

A collection of values returned by getUser.

Parameters

argument

A collection of arguments for invoking getUser.


suspend fun getUser(alternateIdentifier: GetUserAlternateIdentifier? = null, filter: GetUserFilter? = null, identityStoreId: String, userId: String? = null): GetUserResult

Return

A collection of values returned by getUser.

Parameters

alternateIdentifier

A unique identifier for a user or group that is not the primary identifier. Conflicts with user_id and filter. Detailed below.

filter

Configuration block for filtering by a unique attribute of the user. Detailed below.

identityStoreId

Identity Store ID associated with the Single Sign-On Instance. The following arguments are optional:

userId

The identifier for a user in the Identity Store.

Exactly one of the above arguments must be provided. Passing both filter and user_id is allowed for backwards compatibility.

See also


suspend fun getUser(argument: suspend GetUserPlainArgsBuilder.() -> Unit): GetUserResult

Return

A collection of values returned by getUser.

Parameters

argument

Builder for com.pulumi.aws.identitystore.kotlin.inputs.GetUserPlainArgs.

See also