Class: Humidifier::Lex::Bot
- Defined in:
- lib/humidifier/magic.rb
Overview
A dynamically-defined class that represents an AWS::Lex::Bot resource
Constant Summary
Constants inherited from Resource
Instance Method Summary collapse
-
#auto_build_bot_locales ⇒ Object
returns the AutoBuildBotLocales property.
-
#auto_build_bot_locales=(value) ⇒ Object
sets the AutoBuildBotLocales property (Boolean).
-
#bot_file_s3_location ⇒ Object
returns the BotFileS3Location property.
-
#bot_file_s3_location=(value) ⇒ Object
sets the BotFileS3Location property (Structure).
-
#bot_locales ⇒ Object
returns the BotLocales property.
-
#bot_locales=(value) ⇒ Object
sets the BotLocales property (List).
-
#bot_tags ⇒ Object
returns the BotTags property.
-
#bot_tags=(value) ⇒ Object
sets the BotTags property (List).
-
#data_privacy ⇒ Object
returns the DataPrivacy property.
-
#data_privacy=(value) ⇒ Object
sets the DataPrivacy property (Json).
-
#description ⇒ Object
returns the Description property.
-
#description=(value) ⇒ Object
sets the Description property (String).
-
#idle_session_ttl_in_seconds ⇒ Object
returns the IdleSessionTTLInSeconds property.
-
#idle_session_ttl_in_seconds=(value) ⇒ Object
sets the IdleSessionTTLInSeconds property (Integer).
-
#name ⇒ Object
returns the Name property.
-
#name=(value) ⇒ Object
sets the Name property (String).
-
#role_arn ⇒ Object
returns the RoleArn property.
-
#role_arn=(value) ⇒ Object
sets the RoleArn property (String).
-
#test_bot_alias_settings ⇒ Object
returns the TestBotAliasSettings property.
-
#test_bot_alias_settings=(value) ⇒ Object
sets the TestBotAliasSettings property (Structure).
-
#test_bot_alias_tags ⇒ Object
returns the TestBotAliasTags property.
-
#test_bot_alias_tags=(value) ⇒ Object
sets the TestBotAliasTags 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
#auto_build_bot_locales ⇒ Object
returns the AutoBuildBotLocales property
10 11 12 |
# File 'lib/humidifier/magic.rb', line 10 def auto_build_bot_locales properties['auto_build_bot_locales'] end |
#auto_build_bot_locales=(value) ⇒ Object
sets the AutoBuildBotLocales property (Boolean)
15 16 17 |
# File 'lib/humidifier/magic.rb', line 15 def auto_build_bot_locales=(value) update_property('auto_build_bot_locales', value) end |
#bot_file_s3_location ⇒ Object
returns the BotFileS3Location property
20 21 22 |
# File 'lib/humidifier/magic.rb', line 20 def bot_file_s3_location properties['bot_file_s3_location'] end |
#bot_file_s3_location=(value) ⇒ Object
sets the BotFileS3Location property (Structure)
25 26 27 |
# File 'lib/humidifier/magic.rb', line 25 def bot_file_s3_location=(value) update_property('bot_file_s3_location', value) end |
#bot_locales ⇒ Object
returns the BotLocales property
30 31 32 |
# File 'lib/humidifier/magic.rb', line 30 def bot_locales properties['bot_locales'] end |
#bot_locales=(value) ⇒ Object
sets the BotLocales property (List)
35 36 37 |
# File 'lib/humidifier/magic.rb', line 35 def bot_locales=(value) update_property('bot_locales', value) end |
#bot_tags ⇒ Object
returns the BotTags property
40 41 42 |
# File 'lib/humidifier/magic.rb', line 40 def properties['bot_tags'] end |
#bot_tags=(value) ⇒ Object
sets the BotTags property (List)
45 46 47 |
# File 'lib/humidifier/magic.rb', line 45 def (value) update_property('bot_tags', value) end |
#data_privacy ⇒ Object
returns the DataPrivacy property
50 51 52 |
# File 'lib/humidifier/magic.rb', line 50 def data_privacy properties['data_privacy'] end |
#data_privacy=(value) ⇒ Object
sets the DataPrivacy property (Json)
55 56 57 |
# File 'lib/humidifier/magic.rb', line 55 def data_privacy=(value) update_property('data_privacy', value) end |
#description ⇒ Object
returns the Description property
60 61 62 |
# File 'lib/humidifier/magic.rb', line 60 def description properties['description'] end |
#description=(value) ⇒ Object
sets the Description property (String)
65 66 67 |
# File 'lib/humidifier/magic.rb', line 65 def description=(value) update_property('description', value) end |
#idle_session_ttl_in_seconds ⇒ Object
returns the IdleSessionTTLInSeconds property
70 71 72 |
# File 'lib/humidifier/magic.rb', line 70 def idle_session_ttl_in_seconds properties['idle_session_ttl_in_seconds'] end |
#idle_session_ttl_in_seconds=(value) ⇒ Object
sets the IdleSessionTTLInSeconds property (Integer)
75 76 77 |
# File 'lib/humidifier/magic.rb', line 75 def idle_session_ttl_in_seconds=(value) update_property('idle_session_ttl_in_seconds', value) end |
#name ⇒ Object
returns the Name property
80 81 82 |
# File 'lib/humidifier/magic.rb', line 80 def name properties['name'] end |
#name=(value) ⇒ Object
sets the Name property (String)
85 86 87 |
# File 'lib/humidifier/magic.rb', line 85 def name=(value) update_property('name', value) end |
#role_arn ⇒ Object
returns the RoleArn property
90 91 92 |
# File 'lib/humidifier/magic.rb', line 90 def role_arn properties['role_arn'] end |
#role_arn=(value) ⇒ Object
sets the RoleArn property (String)
95 96 97 |
# File 'lib/humidifier/magic.rb', line 95 def role_arn=(value) update_property('role_arn', value) end |
#test_bot_alias_settings ⇒ Object
returns the TestBotAliasSettings property
100 101 102 |
# File 'lib/humidifier/magic.rb', line 100 def test_bot_alias_settings properties['test_bot_alias_settings'] end |
#test_bot_alias_settings=(value) ⇒ Object
sets the TestBotAliasSettings property (Structure)
105 106 107 |
# File 'lib/humidifier/magic.rb', line 105 def test_bot_alias_settings=(value) update_property('test_bot_alias_settings', value) end |
#test_bot_alias_tags ⇒ Object
returns the TestBotAliasTags property
110 111 112 |
# File 'lib/humidifier/magic.rb', line 110 def properties['test_bot_alias_tags'] end |
#test_bot_alias_tags=(value) ⇒ Object
sets the TestBotAliasTags property (List)
115 116 117 |
# File 'lib/humidifier/magic.rb', line 115 def (value) update_property('test_bot_alias_tags', value) end |