Class: Humidifier::Greengrass::FunctionDefinitionVersion
- Defined in:
- lib/humidifier/magic.rb
Overview
A dynamically-defined class that represents an AWS::Greengrass::FunctionDefinitionVersion resource
Constant Summary
Constants inherited from Resource
Instance Method Summary collapse
-
#default_config ⇒ Object
returns the DefaultConfig property.
-
#default_config=(value) ⇒ Object
sets the DefaultConfig property (Structure).
-
#function_definition_id ⇒ Object
returns the FunctionDefinitionId property.
-
#function_definition_id=(value) ⇒ Object
sets the FunctionDefinitionId property (String).
-
#functions ⇒ Object
returns the Functions property.
-
#functions=(value) ⇒ Object
sets the Functions 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
#default_config ⇒ Object
returns the DefaultConfig property
10 11 12 |
# File 'lib/humidifier/magic.rb', line 10 def default_config properties['default_config'] end |
#default_config=(value) ⇒ Object
sets the DefaultConfig property (Structure)
15 16 17 |
# File 'lib/humidifier/magic.rb', line 15 def default_config=(value) update_property('default_config', value) end |
#function_definition_id ⇒ Object
returns the FunctionDefinitionId property
20 21 22 |
# File 'lib/humidifier/magic.rb', line 20 def function_definition_id properties['function_definition_id'] end |
#function_definition_id=(value) ⇒ Object
sets the FunctionDefinitionId property (String)
25 26 27 |
# File 'lib/humidifier/magic.rb', line 25 def function_definition_id=(value) update_property('function_definition_id', value) end |
#functions ⇒ Object
returns the Functions property
30 31 32 |
# File 'lib/humidifier/magic.rb', line 30 def functions properties['functions'] end |
#functions=(value) ⇒ Object
sets the Functions property (List)
35 36 37 |
# File 'lib/humidifier/magic.rb', line 35 def functions=(value) update_property('functions', value) end |