describeCacheParameterGroups
inline suspend fun ElastiCacheClient.describeCacheParameterGroups(crossinline block: DescribeCacheParameterGroupsRequest.Builder.() -> Unit): DescribeCacheParameterGroupsResponse
Returns a list of cache parameter group descriptions. If a cache parameter group name is specified, the list contains only the descriptions for that group.
Samples
fun main() {
//sampleStart
// Returns a list of cache parameter group descriptions. If a cache parameter group name is specified,
// the list contains only the descriptions for that group.
val resp = elastiCacheClient.describeCacheParameterGroups {
cacheParameterGroupName = "custom-mem1-4"
}
//sampleEnd
}