Class: Humidifier::Lambda::EventInvokeConfig
- Defined in:
- lib/humidifier/magic.rb
Overview
A dynamically-defined class that represents an AWS::Lambda::EventInvokeConfig resource
Constant Summary
Constants inherited from Resource
Instance Method Summary collapse
-
#destination_config ⇒ Object
returns the DestinationConfig property.
-
#destination_config=(value) ⇒ Object
sets the DestinationConfig property (Structure).
-
#function_name ⇒ Object
returns the FunctionName property.
-
#function_name=(value) ⇒ Object
sets the FunctionName property (String).
-
#maximum_event_age_in_seconds ⇒ Object
returns the MaximumEventAgeInSeconds property.
-
#maximum_event_age_in_seconds=(value) ⇒ Object
sets the MaximumEventAgeInSeconds property (Integer).
-
#maximum_retry_attempts ⇒ Object
returns the MaximumRetryAttempts property.
-
#maximum_retry_attempts=(value) ⇒ Object
sets the MaximumRetryAttempts property (Integer).
-
#qualifier ⇒ Object
returns the Qualifier property.
-
#qualifier=(value) ⇒ Object
sets the Qualifier property (String).
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
#destination_config ⇒ Object
returns the DestinationConfig property
10 11 12 |
# File 'lib/humidifier/magic.rb', line 10 def destination_config properties['destination_config'] end |
#destination_config=(value) ⇒ Object
sets the DestinationConfig property (Structure)
15 16 17 |
# File 'lib/humidifier/magic.rb', line 15 def destination_config=(value) update_property('destination_config', value) end |
#function_name ⇒ Object
returns the FunctionName property
20 21 22 |
# File 'lib/humidifier/magic.rb', line 20 def function_name properties['function_name'] end |
#function_name=(value) ⇒ Object
sets the FunctionName property (String)
25 26 27 |
# File 'lib/humidifier/magic.rb', line 25 def function_name=(value) update_property('function_name', value) end |
#maximum_event_age_in_seconds ⇒ Object
returns the MaximumEventAgeInSeconds property
30 31 32 |
# File 'lib/humidifier/magic.rb', line 30 def maximum_event_age_in_seconds properties['maximum_event_age_in_seconds'] end |
#maximum_event_age_in_seconds=(value) ⇒ Object
sets the MaximumEventAgeInSeconds property (Integer)
35 36 37 |
# File 'lib/humidifier/magic.rb', line 35 def maximum_event_age_in_seconds=(value) update_property('maximum_event_age_in_seconds', value) end |
#maximum_retry_attempts ⇒ Object
returns the MaximumRetryAttempts property
40 41 42 |
# File 'lib/humidifier/magic.rb', line 40 def maximum_retry_attempts properties['maximum_retry_attempts'] end |
#maximum_retry_attempts=(value) ⇒ Object
sets the MaximumRetryAttempts property (Integer)
45 46 47 |
# File 'lib/humidifier/magic.rb', line 45 def maximum_retry_attempts=(value) update_property('maximum_retry_attempts', value) end |
#qualifier ⇒ Object
returns the Qualifier property
50 51 52 |
# File 'lib/humidifier/magic.rb', line 50 def qualifier properties['qualifier'] end |
#qualifier=(value) ⇒ Object
sets the Qualifier property (String)
55 56 57 |
# File 'lib/humidifier/magic.rb', line 55 def qualifier=(value) update_property('qualifier', value) end |