listConfigurationProfiles  
  abstract suspend fun listConfigurationProfiles(input: ListConfigurationProfilesRequest): 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
}