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