describeGroup
inline suspend fun DirectoryServiceDataClient.describeGroup(crossinline block: DescribeGroupRequest.Builder.() -> Unit): DescribeGroupResponse
Returns information about a specific group.
Samples
fun main() {
//sampleStart
// The following command returns the mapped attributes for a group along with the display name,
// description, and GUID for the group.
val resp = directoryServiceDataClient.describeGroup {
directoryId = "d-12233abcde"
otherAttributes = listOf<String>(
"displayName",
"description",
"objectGUID"
)
realm = "example.domain.com"
samAccountName = "DevOpsMail"
}
//sampleEnd
}