getConfigurationProfile
inline suspend fun AppConfigClient.getConfigurationProfile(crossinline block: GetConfigurationProfileRequest.Builder.() -> Unit): GetConfigurationProfileResponse
Retrieves information about a configuration profile.
Samples
fun main() {
//sampleStart
// The following get configuration profile example returns the details of the specified configuration
// profile.
val resp = appConfigClient.getConfigurationProfile {
applicationId = "339ohji"
configurationProfileId = "ur8hx2f"
}
//sampleEnd
}