describe_cache_engine_versions ( $opt )

Returns a list of the available cache engines and their versions.

Access

public

Parameters

Parameter

Type

Required

Description

$opt

array

Optional

An associative array of parameters that can have the following keys:

  • Engine - string - Optional - The cache engine to return.
  • EngineVersion - string - Optional - The cache engine version to return. Example: 1.4.14
  • CacheParameterGroupFamily - string - Optional - The name of a specific Cache Parameter Group family to return details for. Constraints:
    • Must be 1 to 255 alphanumeric characters
    • First character must be a letter
    • Cannot end with a hyphen or contain two consecutive hyphens
  • MaxRecords - integer - Optional - The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a marker is included in the response so that the remaining results may be retrieved.
  • Marker - string - Optional - An optional marker provided in the previous DescribeCacheParameterGroups request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
  • DefaultOnly - boolean - Optional - Indicates that only the default version of the specified engine or engine and major version combination is returned.
  • curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.
  • returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.

Returns

Type

Description

CFResponse

A CFResponse object containing a parsed HTTP response.

Source

Method defined in services/elasticache.class.php | Toggle source view (6 lines) | View on GitHub

public function describe_cache_engine_versions($opt = null)
{
    if (!$opt) $opt = array();
            
    return $this->authenticate('DescribeCacheEngineVersions', $opt);
}

Copyright © 2010–2013 Amazon Web Services, LLC


Feedback