Class: Humidifier::ApiGateway::GatewayResponse
- Defined in:
- lib/humidifier/magic.rb
Overview
A dynamically-defined class that represents an AWS::ApiGateway::GatewayResponse resource
Constant Summary
Constants inherited from Resource
Instance Method Summary collapse
-
#response_parameters ⇒ Object
returns the ResponseParameters property.
-
#response_parameters=(value) ⇒ Object
sets the ResponseParameters property (Map).
-
#response_templates ⇒ Object
returns the ResponseTemplates property.
-
#response_templates=(value) ⇒ Object
sets the ResponseTemplates property (Map).
-
#response_type ⇒ Object
returns the ResponseType property.
-
#response_type=(value) ⇒ Object
sets the ResponseType property (String).
-
#rest_api_id ⇒ Object
returns the RestApiId property.
-
#rest_api_id=(value) ⇒ Object
sets the RestApiId property (String).
-
#status_code ⇒ Object
returns the StatusCode property.
-
#status_code=(value) ⇒ Object
sets the StatusCode 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
#response_parameters ⇒ Object
returns the ResponseParameters property
10 11 12 |
# File 'lib/humidifier/magic.rb', line 10 def response_parameters properties['response_parameters'] end |
#response_parameters=(value) ⇒ Object
sets the ResponseParameters property (Map)
15 16 17 |
# File 'lib/humidifier/magic.rb', line 15 def response_parameters=(value) update_property('response_parameters', value) end |
#response_templates ⇒ Object
returns the ResponseTemplates property
20 21 22 |
# File 'lib/humidifier/magic.rb', line 20 def response_templates properties['response_templates'] end |
#response_templates=(value) ⇒ Object
sets the ResponseTemplates property (Map)
25 26 27 |
# File 'lib/humidifier/magic.rb', line 25 def response_templates=(value) update_property('response_templates', value) end |
#response_type ⇒ Object
returns the ResponseType property
30 31 32 |
# File 'lib/humidifier/magic.rb', line 30 def response_type properties['response_type'] end |
#response_type=(value) ⇒ Object
sets the ResponseType property (String)
35 36 37 |
# File 'lib/humidifier/magic.rb', line 35 def response_type=(value) update_property('response_type', value) end |
#rest_api_id ⇒ Object
returns the RestApiId property
40 41 42 |
# File 'lib/humidifier/magic.rb', line 40 def rest_api_id properties['rest_api_id'] end |
#rest_api_id=(value) ⇒ Object
sets the RestApiId property (String)
45 46 47 |
# File 'lib/humidifier/magic.rb', line 45 def rest_api_id=(value) update_property('rest_api_id', value) end |
#status_code ⇒ Object
returns the StatusCode property
50 51 52 |
# File 'lib/humidifier/magic.rb', line 50 def status_code properties['status_code'] end |
#status_code=(value) ⇒ Object
sets the StatusCode property (String)
55 56 57 |
# File 'lib/humidifier/magic.rb', line 55 def status_code=(value) update_property('status_code', value) end |