listHostedConfigurationVersions

Lists configurations stored in the AppConfig hosted configuration store by version.

Samples


fun main() { 
   //sampleStart 
   // The following list hosted configuration versions example lists the configurations versions hosted in
// the AWS AppConfig hosted configuration store for the specified application and configuration profile.
val resp = appConfigClient.listHostedConfigurationVersions {
    applicationId = "339ohji"
    configurationProfileId = "ur8hx2f"
} 
   //sampleEnd
}