Class: DrawCloud::SNSTopic

Inherits:
Base
  • Object
show all
Defined in:
lib/draw_cloud/sns_topic.rb

Instance Attribute Summary collapse

Attributes inherited from Base

#as_groups, #as_launch_configurations, #deletion_policy, #depends_on, #ec2_instances, #elastic_ips, #gateways, #iam_access_keys, #iam_policies, #iam_users, #mappings, #metadata, #network_acls, #network_interfaces, #outputs, #parameters, #parent, #rdses, #resources, #route_tables, #security_groups, #sns_topics, #subnets, #vpcs, #wait_handles

Instance Method Summary collapse

Methods inherited from Base

#[], #accessor, #add_standard_properties, #create_as_group, #create_as_launch_configuration, #create_ec2_instance, #create_ec2_instance_template, #create_elastic_ip, #create_iam_access_key, #create_iam_policy, #create_iam_user, #create_mapping, #create_network_acl, #create_network_interface, #create_output, #create_parameter, #create_rds, #create_route_table, #create_security_group, #create_service, #create_sns_topic, #create_subnet, #create_vpc, #create_wait_handle, #ref

Methods included from Locations

#arn_s3

Methods included from Utilities

#desplice, #fnbase64, #fngetatt, #fnjoin, #hash_to_tag_array, #region, #resource_style, #splice, #stack_name

Constructor Details

#initialize(name, options = {}, &block) ⇒ SNSTopic

Returns a new instance of SNSTopic.



24
25
26
27
28
# File 'lib/draw_cloud/sns_topic.rb', line 24

def initialize(name, options={}, &block)
  @name = name
  @subscriptions = options.fetch(:subscriptions, [])
  super(options, &block)
end

Instance Attribute Details

#display_nameObject

Returns the value of attribute display_name.



21
22
23
# File 'lib/draw_cloud/sns_topic.rb', line 21

def display_name
  @display_name
end

#nameObject

Returns the value of attribute name.



21
22
23
# File 'lib/draw_cloud/sns_topic.rb', line 21

def name
  @name
end

#subscriptionsObject

Returns the value of attribute subscriptions.



21
22
23
# File 'lib/draw_cloud/sns_topic.rb', line 21

def subscriptions
  @subscriptions
end

Instance Method Details

#add_subscription(endpoint, protocol) ⇒ Object



30
31
32
# File 'lib/draw_cloud/sns_topic.rb', line 30

def add_subscription(endpoint, protocol)
  subscriptions << {:endpoint => endpoint, :protocol => protocol}
end

#load_into_config(config) ⇒ Object



38
39
40
41
# File 'lib/draw_cloud/sns_topic.rb', line 38

def load_into_config(config)
  config.cf_add_resource resource_name, self
  super(config)
end

#resource_nameObject



43
44
45
# File 'lib/draw_cloud/sns_topic.rb', line 43

def resource_name
  resource_style(name) + "SNSTopic"
end

#sns_topicObject



34
35
36
# File 'lib/draw_cloud/sns_topic.rb', line 34

def sns_topic
  self
end

#to_hObject



47
48
49
50
51
52
53
54
55
56
# File 'lib/draw_cloud/sns_topic.rb', line 47

def to_h
  h = {
    "Type" => "AWS::SNS::Topic",
    "Properties" => {
      "Subscription" => subscriptions.collect {|s| {"Endpoint" => DrawCloud.ref(s[:endpoint]), "Protocol" => DrawCloud.ref(s[:protocol])} }
    }
  }
  h["Properties"]["DisplayName"] = DrawCloud.ref(display_name) if display_name
  h
end