describeOrderableDbInstanceOptions

Describes the orderable DB instance options for a specified DB engine.

Samples


fun main() { 
   //sampleStart 
   // The following example retrieves details about the orderable options for a DB instances running the
// MySQL DB engine.
val resp = rdsClient.describeOrderableDbInstanceOptions {
    engine = "mysql"
} 
   //sampleEnd
}