Class: Aws::ElastiCache::Types::CreateCacheParameterGroupMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElastiCache::Types::CreateCacheParameterGroupMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticache/types.rb
Overview
Represents the input of a ‘CreateCacheParameterGroup` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cache_parameter_group_family ⇒ String
The name of the cache parameter group family that the cache parameter group can be used with.
-
#cache_parameter_group_name ⇒ String
A user-specified name for the cache parameter group.
-
#description ⇒ String
A user-specified description for the cache parameter group.
-
#tags ⇒ Array<Types::Tag>
A list of tags to be added to this resource.
Instance Attribute Details
#cache_parameter_group_family ⇒ String
The name of the cache parameter group family that the cache parameter group can be used with.
Valid values are: ‘memcached1.4` | `memcached1.5` | `memcached1.6` | `redis2.6` | `redis2.8` | `redis3.2` | `redis4.0` | `redis5.0` | `redis6.x` | `redis7`
2103 2104 2105 2106 2107 2108 2109 2110 |
# File 'lib/aws-sdk-elasticache/types.rb', line 2103 class CreateCacheParameterGroupMessage < Struct.new( :cache_parameter_group_name, :cache_parameter_group_family, :description, :tags) SENSITIVE = [] include Aws::Structure end |
#cache_parameter_group_name ⇒ String
A user-specified name for the cache parameter group.
2103 2104 2105 2106 2107 2108 2109 2110 |
# File 'lib/aws-sdk-elasticache/types.rb', line 2103 class CreateCacheParameterGroupMessage < Struct.new( :cache_parameter_group_name, :cache_parameter_group_family, :description, :tags) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A user-specified description for the cache parameter group.
2103 2104 2105 2106 2107 2108 2109 2110 |
# File 'lib/aws-sdk-elasticache/types.rb', line 2103 class CreateCacheParameterGroupMessage < Struct.new( :cache_parameter_group_name, :cache_parameter_group_family, :description, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.
2103 2104 2105 2106 2107 2108 2109 2110 |
# File 'lib/aws-sdk-elasticache/types.rb', line 2103 class CreateCacheParameterGroupMessage < Struct.new( :cache_parameter_group_name, :cache_parameter_group_family, :description, :tags) SENSITIVE = [] include Aws::Structure end |