Class: Humidifier::DMS::ReplicationInstance
- Defined in:
- lib/humidifier/magic.rb
Overview
A dynamically-defined class that represents an AWS::DMS::ReplicationInstance resource
Constant Summary
Constants inherited from Resource
Instance Method Summary collapse
-
#allocated_storage ⇒ Object
returns the AllocatedStorage property.
-
#allocated_storage=(value) ⇒ Object
sets the AllocatedStorage property (Integer).
-
#allow_major_version_upgrade ⇒ Object
returns the AllowMajorVersionUpgrade property.
-
#allow_major_version_upgrade=(value) ⇒ Object
sets the AllowMajorVersionUpgrade property (Boolean).
-
#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).
-
#engine_version ⇒ Object
returns the EngineVersion property.
-
#engine_version=(value) ⇒ Object
sets the EngineVersion property (String).
-
#kms_key_id ⇒ Object
returns the KmsKeyId property.
-
#kms_key_id=(value) ⇒ Object
sets the KmsKeyId property (String).
-
#multi_az ⇒ Object
returns the MultiAZ property.
-
#multi_az=(value) ⇒ Object
sets the MultiAZ property (Boolean).
-
#preferred_maintenance_window ⇒ Object
returns the PreferredMaintenanceWindow property.
-
#preferred_maintenance_window=(value) ⇒ Object
sets the PreferredMaintenanceWindow property (String).
-
#publicly_accessible ⇒ Object
returns the PubliclyAccessible property.
-
#publicly_accessible=(value) ⇒ Object
sets the PubliclyAccessible property (Boolean).
-
#replication_instance_class ⇒ Object
returns the ReplicationInstanceClass property.
-
#replication_instance_class=(value) ⇒ Object
sets the ReplicationInstanceClass property (String).
-
#replication_instance_identifier ⇒ Object
returns the ReplicationInstanceIdentifier property.
-
#replication_instance_identifier=(value) ⇒ Object
sets the ReplicationInstanceIdentifier property (String).
-
#replication_subnet_group_identifier ⇒ Object
returns the ReplicationSubnetGroupIdentifier property.
-
#replication_subnet_group_identifier=(value) ⇒ Object
sets the ReplicationSubnetGroupIdentifier property (String).
-
#resource_identifier ⇒ Object
returns the ResourceIdentifier property.
-
#resource_identifier=(value) ⇒ Object
sets the ResourceIdentifier property (String).
-
#tags ⇒ Object
returns the Tags property.
-
#tags=(value) ⇒ Object
sets the Tags property (List).
-
#vpc_security_group_ids ⇒ Object
returns the VpcSecurityGroupIds property.
-
#vpc_security_group_ids=(value) ⇒ Object
sets the VpcSecurityGroupIds 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
#allocated_storage ⇒ Object
returns the AllocatedStorage property
10 11 12 |
# File 'lib/humidifier/magic.rb', line 10 def allocated_storage properties['allocated_storage'] end |
#allocated_storage=(value) ⇒ Object
sets the AllocatedStorage property (Integer)
15 16 17 |
# File 'lib/humidifier/magic.rb', line 15 def allocated_storage=(value) update_property('allocated_storage', value) end |
#allow_major_version_upgrade ⇒ Object
returns the AllowMajorVersionUpgrade property
20 21 22 |
# File 'lib/humidifier/magic.rb', line 20 def allow_major_version_upgrade properties['allow_major_version_upgrade'] end |
#allow_major_version_upgrade=(value) ⇒ Object
sets the AllowMajorVersionUpgrade property (Boolean)
25 26 27 |
# File 'lib/humidifier/magic.rb', line 25 def allow_major_version_upgrade=(value) update_property('allow_major_version_upgrade', value) end |
#auto_minor_version_upgrade ⇒ Object
returns the AutoMinorVersionUpgrade property
30 31 32 |
# File 'lib/humidifier/magic.rb', line 30 def auto_minor_version_upgrade properties['auto_minor_version_upgrade'] end |
#auto_minor_version_upgrade=(value) ⇒ Object
sets the AutoMinorVersionUpgrade property (Boolean)
35 36 37 |
# File 'lib/humidifier/magic.rb', line 35 def auto_minor_version_upgrade=(value) update_property('auto_minor_version_upgrade', value) end |
#availability_zone ⇒ Object
returns the AvailabilityZone property
40 41 42 |
# File 'lib/humidifier/magic.rb', line 40 def availability_zone properties['availability_zone'] end |
#availability_zone=(value) ⇒ Object
sets the AvailabilityZone property (String)
45 46 47 |
# File 'lib/humidifier/magic.rb', line 45 def availability_zone=(value) update_property('availability_zone', value) end |
#engine_version ⇒ Object
returns the EngineVersion property
50 51 52 |
# File 'lib/humidifier/magic.rb', line 50 def engine_version properties['engine_version'] end |
#engine_version=(value) ⇒ Object
sets the EngineVersion property (String)
55 56 57 |
# File 'lib/humidifier/magic.rb', line 55 def engine_version=(value) update_property('engine_version', value) end |
#kms_key_id ⇒ Object
returns the KmsKeyId property
60 61 62 |
# File 'lib/humidifier/magic.rb', line 60 def kms_key_id properties['kms_key_id'] end |
#kms_key_id=(value) ⇒ Object
sets the KmsKeyId property (String)
65 66 67 |
# File 'lib/humidifier/magic.rb', line 65 def kms_key_id=(value) update_property('kms_key_id', value) end |
#multi_az ⇒ Object
returns the MultiAZ property
70 71 72 |
# File 'lib/humidifier/magic.rb', line 70 def multi_az properties['multi_az'] end |
#multi_az=(value) ⇒ Object
sets the MultiAZ property (Boolean)
75 76 77 |
# File 'lib/humidifier/magic.rb', line 75 def multi_az=(value) update_property('multi_az', value) end |
#preferred_maintenance_window ⇒ Object
returns the PreferredMaintenanceWindow property
80 81 82 |
# File 'lib/humidifier/magic.rb', line 80 def preferred_maintenance_window properties['preferred_maintenance_window'] end |
#preferred_maintenance_window=(value) ⇒ Object
sets the PreferredMaintenanceWindow property (String)
85 86 87 |
# File 'lib/humidifier/magic.rb', line 85 def preferred_maintenance_window=(value) update_property('preferred_maintenance_window', value) end |
#publicly_accessible ⇒ Object
returns the PubliclyAccessible property
90 91 92 |
# File 'lib/humidifier/magic.rb', line 90 def publicly_accessible properties['publicly_accessible'] end |
#publicly_accessible=(value) ⇒ Object
sets the PubliclyAccessible property (Boolean)
95 96 97 |
# File 'lib/humidifier/magic.rb', line 95 def publicly_accessible=(value) update_property('publicly_accessible', value) end |
#replication_instance_class ⇒ Object
returns the ReplicationInstanceClass property
100 101 102 |
# File 'lib/humidifier/magic.rb', line 100 def replication_instance_class properties['replication_instance_class'] end |
#replication_instance_class=(value) ⇒ Object
sets the ReplicationInstanceClass property (String)
105 106 107 |
# File 'lib/humidifier/magic.rb', line 105 def replication_instance_class=(value) update_property('replication_instance_class', value) end |
#replication_instance_identifier ⇒ Object
returns the ReplicationInstanceIdentifier property
110 111 112 |
# File 'lib/humidifier/magic.rb', line 110 def replication_instance_identifier properties['replication_instance_identifier'] end |
#replication_instance_identifier=(value) ⇒ Object
sets the ReplicationInstanceIdentifier property (String)
115 116 117 |
# File 'lib/humidifier/magic.rb', line 115 def replication_instance_identifier=(value) update_property('replication_instance_identifier', value) end |
#replication_subnet_group_identifier ⇒ Object
returns the ReplicationSubnetGroupIdentifier property
120 121 122 |
# File 'lib/humidifier/magic.rb', line 120 def replication_subnet_group_identifier properties['replication_subnet_group_identifier'] end |
#replication_subnet_group_identifier=(value) ⇒ Object
sets the ReplicationSubnetGroupIdentifier property (String)
125 126 127 |
# File 'lib/humidifier/magic.rb', line 125 def replication_subnet_group_identifier=(value) update_property('replication_subnet_group_identifier', value) end |
#resource_identifier ⇒ Object
returns the ResourceIdentifier property
130 131 132 |
# File 'lib/humidifier/magic.rb', line 130 def resource_identifier properties['resource_identifier'] end |
#resource_identifier=(value) ⇒ Object
sets the ResourceIdentifier property (String)
135 136 137 |
# File 'lib/humidifier/magic.rb', line 135 def resource_identifier=(value) update_property('resource_identifier', value) end |
#tags ⇒ Object
returns the Tags property
140 141 142 |
# File 'lib/humidifier/magic.rb', line 140 def properties['tags'] end |
#tags=(value) ⇒ Object
sets the Tags property (List)
145 146 147 |
# File 'lib/humidifier/magic.rb', line 145 def (value) update_property('tags', value) end |
#vpc_security_group_ids ⇒ Object
returns the VpcSecurityGroupIds property
150 151 152 |
# File 'lib/humidifier/magic.rb', line 150 def vpc_security_group_ids properties['vpc_security_group_ids'] end |
#vpc_security_group_ids=(value) ⇒ Object
sets the VpcSecurityGroupIds property (List)
155 156 157 |
# File 'lib/humidifier/magic.rb', line 155 def vpc_security_group_ids=(value) update_property('vpc_security_group_ids', value) end |