Class: Humidifier::RDS::GlobalCluster
- Inherits:
-
Humidifier::Resource
- Object
- Humidifier::Resource
- Humidifier::RDS::GlobalCluster
- Defined in:
- lib/humidifier/magic.rb
Overview
A dynamically-defined class that represents an AWS::RDS::GlobalCluster resource
Constant Summary
Constants inherited from Humidifier::Resource
Humidifier::Resource::COMMON_ATTRIBUTES
Instance Method Summary collapse
-
#deletion_protection ⇒ Object
returns the DeletionProtection property.
-
#deletion_protection=(value) ⇒ Object
sets the DeletionProtection property (Boolean).
-
#engine ⇒ Object
returns the Engine property.
-
#engine=(value) ⇒ Object
sets the Engine property (String).
-
#engine_version ⇒ Object
returns the EngineVersion property.
-
#engine_version=(value) ⇒ Object
sets the EngineVersion property (String).
-
#global_cluster_identifier ⇒ Object
returns the GlobalClusterIdentifier property.
-
#global_cluster_identifier=(value) ⇒ Object
sets the GlobalClusterIdentifier property (String).
-
#source_db_cluster_identifier ⇒ Object
returns the SourceDBClusterIdentifier property.
-
#source_db_cluster_identifier=(value) ⇒ Object
sets the SourceDBClusterIdentifier property (String).
-
#storage_encrypted ⇒ Object
returns the StorageEncrypted property.
-
#storage_encrypted=(value) ⇒ Object
sets the StorageEncrypted property (Boolean).
Methods inherited from Humidifier::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
#deletion_protection ⇒ Object
returns the DeletionProtection property
10 11 12 |
# File 'lib/humidifier/magic.rb', line 10 def deletion_protection properties['deletion_protection'] end |
#deletion_protection=(value) ⇒ Object
sets the DeletionProtection property (Boolean)
15 16 17 |
# File 'lib/humidifier/magic.rb', line 15 def deletion_protection=(value) update_property('deletion_protection', value) end |
#engine ⇒ Object
returns the Engine property
20 21 22 |
# File 'lib/humidifier/magic.rb', line 20 def engine properties['engine'] end |
#engine=(value) ⇒ Object
sets the Engine property (String)
25 26 27 |
# File 'lib/humidifier/magic.rb', line 25 def engine=(value) update_property('engine', value) end |
#engine_version ⇒ Object
returns the EngineVersion property
30 31 32 |
# File 'lib/humidifier/magic.rb', line 30 def engine_version properties['engine_version'] end |
#engine_version=(value) ⇒ Object
sets the EngineVersion property (String)
35 36 37 |
# File 'lib/humidifier/magic.rb', line 35 def engine_version=(value) update_property('engine_version', value) end |
#global_cluster_identifier ⇒ Object
returns the GlobalClusterIdentifier property
40 41 42 |
# File 'lib/humidifier/magic.rb', line 40 def global_cluster_identifier properties['global_cluster_identifier'] end |
#global_cluster_identifier=(value) ⇒ Object
sets the GlobalClusterIdentifier property (String)
45 46 47 |
# File 'lib/humidifier/magic.rb', line 45 def global_cluster_identifier=(value) update_property('global_cluster_identifier', value) end |
#source_db_cluster_identifier ⇒ Object
returns the SourceDBClusterIdentifier property
50 51 52 |
# File 'lib/humidifier/magic.rb', line 50 def source_db_cluster_identifier properties['source_db_cluster_identifier'] end |
#source_db_cluster_identifier=(value) ⇒ Object
sets the SourceDBClusterIdentifier property (String)
55 56 57 |
# File 'lib/humidifier/magic.rb', line 55 def source_db_cluster_identifier=(value) update_property('source_db_cluster_identifier', value) end |
#storage_encrypted ⇒ Object
returns the StorageEncrypted property
60 61 62 |
# File 'lib/humidifier/magic.rb', line 60 def storage_encrypted properties['storage_encrypted'] end |
#storage_encrypted=(value) ⇒ Object
sets the StorageEncrypted property (Boolean)
65 66 67 |
# File 'lib/humidifier/magic.rb', line 65 def storage_encrypted=(value) update_property('storage_encrypted', value) end |