describeDbClusters  
  inline suspend fun RdsClient.describeDbClusters(crossinline block: DescribeDbClustersRequest.Builder.() -> Unit): DescribeDbClustersResponse
Describes existing Amazon Aurora DB clusters and Multi-AZ DB clusters. This API supports pagination.
For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? in the Amazon Aurora User Guide.
For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.
This operation can also return information for Amazon Neptune DB instances and Amazon DocumentDB instances.
Samples
fun main() { 
   //sampleStart 
   // The following example retrieves the details of the specified DB cluster.
val resp = rdsClient.describeDbClusters {
    dbClusterIdentifier = "mydbcluster"
} 
   //sampleEnd
}