Returns a list of CacheParameterGroup descriptions. If a CacheParameterGroupName is specified, the list will contain only the descriptions of the specified CacheParameterGroup.
Access
public
Parameters
Parameter |
Type |
Required |
Description |
|---|---|---|---|
|
|
Optional |
An associative array of parameters that can have the following keys:
|
Returns
Type |
Description |
|---|---|
|
A |
Examples
Describe all cache parameter groups.
$elasticache = new AmazonElastiCache(); $response = $elasticache->describe_cache_parameter_groups(); print_r($response->body->CacheParameterGroup()->first());Result:
CFSimpleXML Object
(
[CacheParameterGroupName] => default.memcached1.4
[CacheParameterGroupFamily] => memcached1.4
[Description] => Default parameter group for memcached1.4
)
Source
Method defined in services/elasticache.class.php | Toggle source view (6 lines) | View on GitHub

