describeDbSnapshots
abstract suspend fun describeDbSnapshots(input: DescribeDbSnapshotsRequest = DescribeDbSnapshotsRequest { }): 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
}