describeDbEngineVersions

Describes the properties of specific versions of DB engines.

Samples


fun main() { 
   //sampleStart 
   // The following example displays details about each of the DB engine versions for the specified DB
// engine.
val resp = rdsClient.describeDbEngineVersions {
    engine = "mysql"
} 
   //sampleEnd
}