describeOptionGroups

Describes the available option groups.

Samples


fun main() { 
   //sampleStart 
   // The following example lists the options groups for an Oracle Database 19c instance.
val resp = rdsClient.describeOptionGroups {
    engineName = "oracle-ee"
    majorEngineVersion = "19"
} 
   //sampleEnd
}