getGroup

suspend fun getGroup(argument: GetGroupPlainArgs): GetGroupResult

Use this data source to get an Identity Store Group.

Return

A collection of values returned by getGroup.

Parameters

argument

A collection of arguments for invoking getGroup.


suspend fun getGroup(alternateIdentifier: GetGroupAlternateIdentifier? = null, filter: GetGroupFilter? = null, groupId: String? = null, identityStoreId: String): GetGroupResult

Return

A collection of values returned by getGroup.

Parameters

alternateIdentifier

A unique identifier for the group that is not the primary identifier. Conflicts with group_id and filter. Detailed below.

filter

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

groupId

The identifier for a group in the Identity Store.

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

identityStoreId

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

See also


suspend fun getGroup(argument: suspend GetGroupPlainArgsBuilder.() -> Unit): GetGroupResult

Return

A collection of values returned by getGroup.

Parameters

argument

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

See also