Class: Humidifier::DocDB::DBInstance
- Defined in:
- lib/humidifier/magic.rb
Overview
A dynamically-defined class that represents an AWS::DocDB::DBInstance resource
Constant Summary
Constants inherited from Resource
Instance Method Summary collapse
-
#auto_minor_version_upgrade ⇒ Object
returns the AutoMinorVersionUpgrade property.
-
#auto_minor_version_upgrade=(value) ⇒ Object
sets the AutoMinorVersionUpgrade property (Boolean).
-
#availability_zone ⇒ Object
returns the AvailabilityZone property.
-
#availability_zone=(value) ⇒ Object
sets the AvailabilityZone property (String).
-
#db_cluster_identifier ⇒ Object
returns the DBClusterIdentifier property.
-
#db_cluster_identifier=(value) ⇒ Object
sets the DBClusterIdentifier property (String).
-
#db_instance_class ⇒ Object
returns the DBInstanceClass property.
-
#db_instance_class=(value) ⇒ Object
sets the DBInstanceClass property (String).
-
#db_instance_identifier ⇒ Object
returns the DBInstanceIdentifier property.
-
#db_instance_identifier=(value) ⇒ Object
sets the DBInstanceIdentifier property (String).
-
#enable_performance_insights ⇒ Object
returns the EnablePerformanceInsights property.
-
#enable_performance_insights=(value) ⇒ Object
sets the EnablePerformanceInsights property (Boolean).
-
#preferred_maintenance_window ⇒ Object
returns the PreferredMaintenanceWindow property.
-
#preferred_maintenance_window=(value) ⇒ Object
sets the PreferredMaintenanceWindow property (String).
-
#tags ⇒ Object
returns the Tags property.
-
#tags=(value) ⇒ Object
sets the Tags 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
#auto_minor_version_upgrade ⇒ Object
returns the AutoMinorVersionUpgrade property
10 11 12 |
# File 'lib/humidifier/magic.rb', line 10 def auto_minor_version_upgrade properties['auto_minor_version_upgrade'] end |
#auto_minor_version_upgrade=(value) ⇒ Object
sets the AutoMinorVersionUpgrade property (Boolean)
15 16 17 |
# File 'lib/humidifier/magic.rb', line 15 def auto_minor_version_upgrade=(value) update_property('auto_minor_version_upgrade', value) end |
#availability_zone ⇒ Object
returns the AvailabilityZone property
20 21 22 |
# File 'lib/humidifier/magic.rb', line 20 def availability_zone properties['availability_zone'] end |
#availability_zone=(value) ⇒ Object
sets the AvailabilityZone property (String)
25 26 27 |
# File 'lib/humidifier/magic.rb', line 25 def availability_zone=(value) update_property('availability_zone', value) end |
#db_cluster_identifier ⇒ Object
returns the DBClusterIdentifier property
30 31 32 |
# File 'lib/humidifier/magic.rb', line 30 def db_cluster_identifier properties['db_cluster_identifier'] end |
#db_cluster_identifier=(value) ⇒ Object
sets the DBClusterIdentifier property (String)
35 36 37 |
# File 'lib/humidifier/magic.rb', line 35 def db_cluster_identifier=(value) update_property('db_cluster_identifier', value) end |
#db_instance_class ⇒ Object
returns the DBInstanceClass property
40 41 42 |
# File 'lib/humidifier/magic.rb', line 40 def db_instance_class properties['db_instance_class'] end |
#db_instance_class=(value) ⇒ Object
sets the DBInstanceClass property (String)
45 46 47 |
# File 'lib/humidifier/magic.rb', line 45 def db_instance_class=(value) update_property('db_instance_class', value) end |
#db_instance_identifier ⇒ Object
returns the DBInstanceIdentifier property
50 51 52 |
# File 'lib/humidifier/magic.rb', line 50 def db_instance_identifier properties['db_instance_identifier'] end |
#db_instance_identifier=(value) ⇒ Object
sets the DBInstanceIdentifier property (String)
55 56 57 |
# File 'lib/humidifier/magic.rb', line 55 def db_instance_identifier=(value) update_property('db_instance_identifier', value) end |
#enable_performance_insights ⇒ Object
returns the EnablePerformanceInsights property
60 61 62 |
# File 'lib/humidifier/magic.rb', line 60 def enable_performance_insights properties['enable_performance_insights'] end |
#enable_performance_insights=(value) ⇒ Object
sets the EnablePerformanceInsights property (Boolean)
65 66 67 |
# File 'lib/humidifier/magic.rb', line 65 def enable_performance_insights=(value) update_property('enable_performance_insights', value) end |
#preferred_maintenance_window ⇒ Object
returns the PreferredMaintenanceWindow property
70 71 72 |
# File 'lib/humidifier/magic.rb', line 70 def preferred_maintenance_window properties['preferred_maintenance_window'] end |
#preferred_maintenance_window=(value) ⇒ Object
sets the PreferredMaintenanceWindow property (String)
75 76 77 |
# File 'lib/humidifier/magic.rb', line 75 def preferred_maintenance_window=(value) update_property('preferred_maintenance_window', value) end |
#tags ⇒ Object
returns the Tags property
80 81 82 |
# File 'lib/humidifier/magic.rb', line 80 def properties['tags'] end |
#tags=(value) ⇒ Object
sets the Tags property (List)
85 86 87 |
# File 'lib/humidifier/magic.rb', line 85 def (value) update_property('tags', value) end |