describeOptionGroupOptions

Describes all available options for the specified engine.

Samples


fun main() { 
   //sampleStart 
   // The following example lists the options for an RDS for MySQL version 8. 0 DB instance.
val resp = rdsClient.describeOptionGroupOptions {
    engineName = "mysql"
    majorEngineVersion = "8.0"
} 
   //sampleEnd
}