describeDbParameters

Returns the detailed parameter list for a particular DB parameter group.

Samples


fun main() { 
   //sampleStart 
   // The following example retrieves the details of the specified DB parameter group.
val resp = rdsClient.describeDbParameters {
    dbParameterGroupName = "mydbpg"
} 
   //sampleEnd
}