Class: Aws::ElastiCache::Types::CacheParameterGroupsMessage
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::ElastiCache::Types::CacheParameterGroupsMessage
 
- Defined in:
- gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb
Overview
Represents the output of a DescribeCacheParameterGroups operation.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #cache_parameter_groups  ⇒ Array<Types::CacheParameterGroup> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of cache parameter groups. 
- 
  
    
      #marker  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Provides an identifier to allow retrieval of paginated results. 
Instance Attribute Details
#cache_parameter_groups ⇒ Array<Types::CacheParameterGroup>
A list of cache parameter groups. Each element in the list contains detailed information about one cache parameter group.
| 1150 1151 1152 1153 1154 1155 | # File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 1150 class CacheParameterGroupsMessage < Struct.new( :marker, :cache_parameter_groups) SENSITIVE = [] include Aws::Structure end | 
#marker ⇒ String
Provides an identifier to allow retrieval of paginated results.
| 1150 1151 1152 1153 1154 1155 | # File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 1150 class CacheParameterGroupsMessage < Struct.new( :marker, :cache_parameter_groups) SENSITIVE = [] include Aws::Structure end |