Class: Fog::AWS::Elasticache::ParameterGroup
- Inherits:
-
Model
- Object
- Model
- Fog::AWS::Elasticache::ParameterGroup
- Defined in:
- lib/fog/aws/models/elasticache/parameter_group.rb
Instance Method Summary collapse
Instance Method Details
#destroy ⇒ Object
11 12 13 14 15 |
# File 'lib/fog/aws/models/elasticache/parameter_group.rb', line 11 def destroy requires :id service.delete_cache_parameter_group(id) true end |
#save ⇒ Object
17 18 19 20 21 22 23 24 |
# File 'lib/fog/aws/models/elasticache/parameter_group.rb', line 17 def save requires :id service.create_cache_parameter_group( id, description = id, family = 'memcached1.4' ) end |