describeEngineDefaultClusterParameters

Returns the default engine and system parameter information for the cluster database engine.

For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

Samples


fun main() { 
   //sampleStart 
   // The following example retrieves the details of the default engine and system parameter information
// for Aurora DB clusters with MySQL 5. 7 compatibility.
val resp = rdsClient.describeEngineDefaultClusterParameters {
    dbParameterGroupFamily = "aurora-mysql5.7"
} 
   //sampleEnd
}