getIdentitySource
inline suspend fun VerifiedPermissionsClient.getIdentitySource(crossinline block: GetIdentitySourceRequest.Builder.() -> Unit): GetIdentitySourceResponse
Retrieves the details about the specified identity source.
Samples
fun main() {
//sampleStart
// The following example retrieves the details for the specified identity source.
val resp = verifiedPermissionsClient.getIdentitySource {
identitySourceId = "ISEXAMPLEabcdefg111111"
policyStoreId = "C7v5xMplfFH3i3e4Jrzb1a"
}
//sampleEnd
}