Class: Aws::Broker::Config
- Inherits:
-
Object
- Object
- Aws::Broker::Config
- Defined in:
- lib/aws/broker/config.rb
Instance Attribute Summary collapse
-
#enabled ⇒ Object
(also: #enabled?)
Returns the value of attribute enabled.
-
#queue_prefix ⇒ Object
Returns the value of attribute queue_prefix.
-
#sns ⇒ Object
Returns the value of attribute sns.
-
#sqs ⇒ Object
Returns the value of attribute sqs.
-
#topic_prefix ⇒ Object
Returns the value of attribute topic_prefix.
Instance Method Summary collapse
-
#initialize ⇒ Config
constructor
A new instance of Config.
Constructor Details
#initialize ⇒ Config
Returns a new instance of Config.
8 9 10 11 12 |
# File 'lib/aws/broker/config.rb', line 8 def initialize self.enabled = true self.queue_prefix = nil self.topic_prefix = nil end |
Instance Attribute Details
#enabled ⇒ Object Also known as: enabled?
Returns the value of attribute enabled.
5 6 7 |
# File 'lib/aws/broker/config.rb', line 5 def enabled @enabled end |
#queue_prefix ⇒ Object
Returns the value of attribute queue_prefix.
5 6 7 |
# File 'lib/aws/broker/config.rb', line 5 def queue_prefix @queue_prefix end |
#sns ⇒ Object
Returns the value of attribute sns.
5 6 7 |
# File 'lib/aws/broker/config.rb', line 5 def sns @sns end |
#sqs ⇒ Object
Returns the value of attribute sqs.
5 6 7 |
# File 'lib/aws/broker/config.rb', line 5 def sqs @sqs end |
#topic_prefix ⇒ Object
Returns the value of attribute topic_prefix.
5 6 7 |
# File 'lib/aws/broker/config.rb', line 5 def topic_prefix @topic_prefix end |