describeDbSubnetGroups
inline suspend fun RdsClient.describeDbSubnetGroups(crossinline block: DescribeDbSubnetGroupsRequest.Builder.() -> Unit): DescribeDbSubnetGroupsResponse
Returns a list of DBSubnetGroup descriptions. If a DBSubnetGroupName is specified, the list will contain only the descriptions of the specified DBSubnetGroup.
For an overview of CIDR ranges, go to the Wikipedia Tutorial.
Samples
fun main() {
//sampleStart
// The following example retrieves the details of the specified DB subnet group.
val resp = rdsClient.describeDbSubnetGroups()
//sampleEnd
}