describeDbClusterSnapshots
inline suspend fun RdsClient.describeDbClusterSnapshots(crossinline block: DescribeDbClusterSnapshotsRequest.Builder.() -> Unit): DescribeDbClusterSnapshotsResponse
Returns information about DB cluster snapshots. This API action 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.
Samples
fun main() {
//sampleStart
// The following example retrieves the details for the DB cluster snapshots for the specified DB
// cluster.
val resp = rdsClient.describeDbClusterSnapshots {
dbClusterIdentifier = "mydbcluster"
}
//sampleEnd
}