Class: Humidifier::Route53::HostedZone
- Inherits:
-
Humidifier::Resource
- Object
- Humidifier::Resource
- Humidifier::Route53::HostedZone
- Defined in:
- lib/humidifier/magic.rb
Overview
A dynamically-defined class that represents an AWS::Route53::HostedZone resource
Constant Summary
Constants inherited from Humidifier::Resource
Humidifier::Resource::COMMON_ATTRIBUTES
Instance Method Summary collapse
-
#hosted_zone_config ⇒ Object
returns the HostedZoneConfig property.
-
#hosted_zone_config=(value) ⇒ Object
sets the HostedZoneConfig property (Structure).
-
#hosted_zone_tags ⇒ Object
returns the HostedZoneTags property.
-
#hosted_zone_tags=(value) ⇒ Object
sets the HostedZoneTags property (List).
-
#name ⇒ Object
returns the Name property.
-
#name=(value) ⇒ Object
sets the Name property (String).
-
#query_logging_config ⇒ Object
returns the QueryLoggingConfig property.
-
#query_logging_config=(value) ⇒ Object
sets the QueryLoggingConfig property (Structure).
-
#vpcs ⇒ Object
returns the VPCs property.
-
#vpcs=(value) ⇒ Object
sets the VPCs property (List).
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
#hosted_zone_config ⇒ Object
returns the HostedZoneConfig property
10 11 12 |
# File 'lib/humidifier/magic.rb', line 10 def hosted_zone_config properties['hosted_zone_config'] end |
#hosted_zone_config=(value) ⇒ Object
sets the HostedZoneConfig property (Structure)
15 16 17 |
# File 'lib/humidifier/magic.rb', line 15 def hosted_zone_config=(value) update_property('hosted_zone_config', value) end |
#hosted_zone_tags ⇒ Object
returns the HostedZoneTags property
20 21 22 |
# File 'lib/humidifier/magic.rb', line 20 def properties['hosted_zone_tags'] end |
#hosted_zone_tags=(value) ⇒ Object
sets the HostedZoneTags property (List)
25 26 27 |
# File 'lib/humidifier/magic.rb', line 25 def (value) update_property('hosted_zone_tags', value) end |
#name ⇒ Object
returns the Name property
30 31 32 |
# File 'lib/humidifier/magic.rb', line 30 def name properties['name'] end |
#name=(value) ⇒ Object
sets the Name property (String)
35 36 37 |
# File 'lib/humidifier/magic.rb', line 35 def name=(value) update_property('name', value) end |
#query_logging_config ⇒ Object
returns the QueryLoggingConfig property
40 41 42 |
# File 'lib/humidifier/magic.rb', line 40 def query_logging_config properties['query_logging_config'] end |
#query_logging_config=(value) ⇒ Object
sets the QueryLoggingConfig property (Structure)
45 46 47 |
# File 'lib/humidifier/magic.rb', line 45 def query_logging_config=(value) update_property('query_logging_config', value) end |
#vpcs ⇒ Object
returns the VPCs property
50 51 52 |
# File 'lib/humidifier/magic.rb', line 50 def vpcs properties['vpcs'] end |
#vpcs=(value) ⇒ Object
sets the VPCs property (List)
55 56 57 |
# File 'lib/humidifier/magic.rb', line 55 def vpcs=(value) update_property('vpcs', value) end |