describeDbSnapshots
inline suspend fun RdsClient.describeDbSnapshots(crossinline block: DescribeDbSnapshotsRequest.Builder.() -> Unit): DescribeDbSnapshotsResponse
Returns information about DB snapshots. This API action supports pagination.
Samples
fun main() {
//sampleStart
// The following example retrieves the details of a DB snapshot for a DB instance.
val resp = rdsClient.describeDbSnapshots {
dbSnapshotIdentifier = "mydbsnapshot"
}
//sampleEnd
}