Class: Aws::ElastiCache::Types::CacheParameterGroup
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ElastiCache::Types::CacheParameterGroup
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-elasticache/types.rb
 
Overview
Represents the output of a ‘CreateCacheParameterGroup` operation.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ARN (Amazon Resource Name) of the cache parameter group.
 - 
  
    
      #cache_parameter_group_family  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the cache parameter group family that this cache parameter group is compatible with.
 - 
  
    
      #cache_parameter_group_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the cache parameter group.
 - 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The description for this cache parameter group.
 - 
  
    
      #is_global  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether the parameter group is associated with a Global datastore.
 
Instance Attribute Details
#arn ⇒ String
The ARN (Amazon Resource Name) of the cache parameter group.
      1037 1038 1039 1040 1041 1042 1043 1044 1045  | 
    
      # File 'lib/aws-sdk-elasticache/types.rb', line 1037 class CacheParameterGroup < Struct.new( :cache_parameter_group_name, :cache_parameter_group_family, :description, :is_global, :arn) SENSITIVE = [] include Aws::Structure end  | 
  
#cache_parameter_group_family ⇒ String
The name of the cache parameter group family that this cache parameter group is compatible with.
Valid values are: ‘memcached1.4` | `memcached1.5` | `memcached1.6` | `redis2.6` | `redis2.8` | `redis3.2` | `redis4.0` | `redis5.0` | `redis6.x` | `redis7`
      1037 1038 1039 1040 1041 1042 1043 1044 1045  | 
    
      # File 'lib/aws-sdk-elasticache/types.rb', line 1037 class CacheParameterGroup < Struct.new( :cache_parameter_group_name, :cache_parameter_group_family, :description, :is_global, :arn) SENSITIVE = [] include Aws::Structure end  | 
  
#cache_parameter_group_name ⇒ String
The name of the cache parameter group.
      1037 1038 1039 1040 1041 1042 1043 1044 1045  | 
    
      # File 'lib/aws-sdk-elasticache/types.rb', line 1037 class CacheParameterGroup < Struct.new( :cache_parameter_group_name, :cache_parameter_group_family, :description, :is_global, :arn) SENSITIVE = [] include Aws::Structure end  | 
  
#description ⇒ String
The description for this cache parameter group.
      1037 1038 1039 1040 1041 1042 1043 1044 1045  | 
    
      # File 'lib/aws-sdk-elasticache/types.rb', line 1037 class CacheParameterGroup < Struct.new( :cache_parameter_group_name, :cache_parameter_group_family, :description, :is_global, :arn) SENSITIVE = [] include Aws::Structure end  | 
  
#is_global ⇒ Boolean
Indicates whether the parameter group is associated with a Global datastore
      1037 1038 1039 1040 1041 1042 1043 1044 1045  | 
    
      # File 'lib/aws-sdk-elasticache/types.rb', line 1037 class CacheParameterGroup < Struct.new( :cache_parameter_group_name, :cache_parameter_group_family, :description, :is_global, :arn) SENSITIVE = [] include Aws::Structure end  |