Class: Humidifier::ElastiCache::UserGroup
- Defined in:
- lib/humidifier/magic.rb
Overview
A dynamically-defined class that represents an AWS::ElastiCache::UserGroup resource
Constant Summary
Constants inherited from Resource
Instance Method Summary collapse
-
#engine ⇒ Object
returns the Engine property.
-
#engine=(value) ⇒ Object
sets the Engine property (String).
-
#user_group_id ⇒ Object
returns the UserGroupId property.
-
#user_group_id=(value) ⇒ Object
sets the UserGroupId property (String).
-
#user_ids ⇒ Object
returns the UserIds property.
-
#user_ids=(value) ⇒ Object
sets the UserIds property (List).
Methods inherited from Resource
#initialize, #method_missing, prop?, #respond_to_missing?, #to_cf, #update, #update_attributes, #update_property
Constructor Details
This class inherits a constructor from Humidifier::Resource
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Humidifier::Resource
Instance Method Details
#engine ⇒ Object
returns the Engine property
10 11 12 |
# File 'lib/humidifier/magic.rb', line 10 def engine properties['engine'] end |
#engine=(value) ⇒ Object
sets the Engine property (String)
15 16 17 |
# File 'lib/humidifier/magic.rb', line 15 def engine=(value) update_property('engine', value) end |
#user_group_id ⇒ Object
returns the UserGroupId property
20 21 22 |
# File 'lib/humidifier/magic.rb', line 20 def user_group_id properties['user_group_id'] end |
#user_group_id=(value) ⇒ Object
sets the UserGroupId property (String)
25 26 27 |
# File 'lib/humidifier/magic.rb', line 25 def user_group_id=(value) update_property('user_group_id', value) end |
#user_ids ⇒ Object
returns the UserIds property
30 31 32 |
# File 'lib/humidifier/magic.rb', line 30 def user_ids properties['user_ids'] end |
#user_ids=(value) ⇒ Object
sets the UserIds property (List)
35 36 37 |
# File 'lib/humidifier/magic.rb', line 35 def user_ids=(value) update_property('user_ids', value) end |