Method: Fog::AWS::Elasticache::Real#describe_cache_security_groups
- Defined in:
 - lib/fog/aws/requests/elasticache/describe_cache_security_groups.rb
 
#describe_cache_security_groups(name = nil, options = {}) ⇒ Object
Returns a list of CacheSecurityGroup descriptions
Parameters (optional)
- 
name <~String> - The name of an existing cache security group
 - 
options <~Hash> (optional):
 - 
:marker <~String> - marker provided in the previous request
 - 
:max_records <~Integer> - the maximum number of records to include
 
      15 16 17 18 19 20 21 22 23  | 
    
      # File 'lib/fog/aws/requests/elasticache/describe_cache_security_groups.rb', line 15 def describe_cache_security_groups(name = nil, = {}) request({ 'Action' => 'DescribeCacheSecurityGroups', 'CacheSecurityGroupName' => name, 'Marker' => [:marker], 'MaxRecords' => [:max_records], :parser => Fog::Parsers::AWS::Elasticache::DescribeSecurityGroups.new }.merge()) end  |