Class: Humidifier::IoT::Authorizer
- Defined in:
- lib/humidifier/magic.rb
Overview
A dynamically-defined class that represents an AWS::IoT::Authorizer resource
Constant Summary
Constants inherited from Resource
Instance Method Summary collapse
-
#authorizer_function_arn ⇒ Object
returns the AuthorizerFunctionArn property.
-
#authorizer_function_arn=(value) ⇒ Object
sets the AuthorizerFunctionArn property (String).
-
#authorizer_name ⇒ Object
returns the AuthorizerName property.
-
#authorizer_name=(value) ⇒ Object
sets the AuthorizerName property (String).
-
#enable_caching_for_http ⇒ Object
returns the EnableCachingForHttp property.
-
#enable_caching_for_http=(value) ⇒ Object
sets the EnableCachingForHttp property (Boolean).
-
#signing_disabled ⇒ Object
returns the SigningDisabled property.
-
#signing_disabled=(value) ⇒ Object
sets the SigningDisabled property (Boolean).
-
#status ⇒ Object
returns the Status property.
-
#status=(value) ⇒ Object
sets the Status property (String).
-
#tags ⇒ Object
returns the Tags property.
-
#tags=(value) ⇒ Object
sets the Tags property (List).
-
#token_key_name ⇒ Object
returns the TokenKeyName property.
-
#token_key_name=(value) ⇒ Object
sets the TokenKeyName property (String).
-
#token_signing_public_keys ⇒ Object
returns the TokenSigningPublicKeys property.
-
#token_signing_public_keys=(value) ⇒ Object
sets the TokenSigningPublicKeys property (Map).
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
#authorizer_function_arn ⇒ Object
returns the AuthorizerFunctionArn property
10 11 12 |
# File 'lib/humidifier/magic.rb', line 10 def properties['authorizer_function_arn'] end |
#authorizer_function_arn=(value) ⇒ Object
sets the AuthorizerFunctionArn property (String)
15 16 17 |
# File 'lib/humidifier/magic.rb', line 15 def (value) update_property('authorizer_function_arn', value) end |
#authorizer_name ⇒ Object
returns the AuthorizerName property
20 21 22 |
# File 'lib/humidifier/magic.rb', line 20 def properties['authorizer_name'] end |
#authorizer_name=(value) ⇒ Object
sets the AuthorizerName property (String)
25 26 27 |
# File 'lib/humidifier/magic.rb', line 25 def (value) update_property('authorizer_name', value) end |
#enable_caching_for_http ⇒ Object
returns the EnableCachingForHttp property
30 31 32 |
# File 'lib/humidifier/magic.rb', line 30 def enable_caching_for_http properties['enable_caching_for_http'] end |
#enable_caching_for_http=(value) ⇒ Object
sets the EnableCachingForHttp property (Boolean)
35 36 37 |
# File 'lib/humidifier/magic.rb', line 35 def enable_caching_for_http=(value) update_property('enable_caching_for_http', value) end |
#signing_disabled ⇒ Object
returns the SigningDisabled property
40 41 42 |
# File 'lib/humidifier/magic.rb', line 40 def signing_disabled properties['signing_disabled'] end |
#signing_disabled=(value) ⇒ Object
sets the SigningDisabled property (Boolean)
45 46 47 |
# File 'lib/humidifier/magic.rb', line 45 def signing_disabled=(value) update_property('signing_disabled', value) end |
#status ⇒ Object
returns the Status property
50 51 52 |
# File 'lib/humidifier/magic.rb', line 50 def status properties['status'] end |
#status=(value) ⇒ Object
sets the Status property (String)
55 56 57 |
# File 'lib/humidifier/magic.rb', line 55 def status=(value) update_property('status', value) end |
#tags ⇒ Object
returns the Tags property
60 61 62 |
# File 'lib/humidifier/magic.rb', line 60 def properties['tags'] end |
#tags=(value) ⇒ Object
sets the Tags property (List)
65 66 67 |
# File 'lib/humidifier/magic.rb', line 65 def (value) update_property('tags', value) end |
#token_key_name ⇒ Object
returns the TokenKeyName property
70 71 72 |
# File 'lib/humidifier/magic.rb', line 70 def token_key_name properties['token_key_name'] end |
#token_key_name=(value) ⇒ Object
sets the TokenKeyName property (String)
75 76 77 |
# File 'lib/humidifier/magic.rb', line 75 def token_key_name=(value) update_property('token_key_name', value) end |
#token_signing_public_keys ⇒ Object
returns the TokenSigningPublicKeys property
80 81 82 |
# File 'lib/humidifier/magic.rb', line 80 def token_signing_public_keys properties['token_signing_public_keys'] end |
#token_signing_public_keys=(value) ⇒ Object
sets the TokenSigningPublicKeys property (Map)
85 86 87 |
# File 'lib/humidifier/magic.rb', line 85 def token_signing_public_keys=(value) update_property('token_signing_public_keys', value) end |