listConfigurationProfiles
inline suspend fun AppConfigClient.listConfigurationProfiles(crossinline block: ListConfigurationProfilesRequest.Builder.() -> Unit): ListConfigurationProfilesResponse
Lists the configuration profiles for an application.
Samples
fun main() {
//sampleStart
// The following list configuration profiles example lists the available configuration profiles for the
// specified application.
val resp = appConfigClient.listConfigurationProfiles {
applicationId = "339ohji"
}
//sampleEnd
}