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