Returns the detailed parameter list for a particular CacheParameterGroup.
Access
public
Parameters
Parameter |
Type |
Required |
Description |
|---|---|---|---|
|
|
Required |
The name of a specific cache parameter group to return details for. |
|
|
|
Optional |
An associative array of parameters that can have the following keys:
|
Returns
Type |
Description |
|---|---|
|
A |
Examples
Describe all cache parameters.
$elasticache = new AmazonElastiCache();
$response = $elasticache->describe_cache_parameters('default.memcached1.4');
$query = $response->body
->query('descendant-or-self::Parameter[ParameterName="max_simultaneous_connections"]')
->first();
print_r($query);
Result:
CFSimpleXML Object
(
[ParameterValue] => 65000
[DataType] => integer
[Source] => system
[IsModifiable] => false
[Description] => The maximum number of simultaneous connections.
[AllowedValues] => 3-65000
[ParameterName] => max_simultaneous_connections
[MinimumEngineVersion] => 1.4.5
)
Source
Method defined in services/elasticache.class.php | Toggle source view (7 lines) | View on GitHub

