Class: Convection::Model::Template::Resource::SNSTopicPolicy

Inherits:
Convection::Model::Template::Resource show all
Extended by:
Forwardable
Defined in:
lib/convection/model/template/resource/aws_sns_topic_policy.rb

Overview

Examples:

sns_topic_policy 'TopicPolicy' do
  topic "my-sns-topic"
  allow do
    principal :Service => 's3.amazonaws.com'
    sns_resource my_region, , "my-sns-topic"
    action 'sns:Publish'
    condition :ArnLike => { "AWS:SourceArn" => "arn:aws:s3:......." }
  end
end

See Also:

Instance Attribute Summary collapse

Attributes inherited from Convection::Model::Template::Resource

#exist, #name, #parent, #properties, #resource_attributes, #template

Instance Method Summary collapse

Methods inherited from Convection::Model::Template::Resource

#as_attribute, attach_method, #deletion_policy, #depends_on, properties, #property, property, #reference, type, #type, #with_output

Methods included from Mixin::Conditional

#condition, #render_condition

Methods included from DSL::Template::Resource

attach_resource

Methods included from DSL::Helpers

#camel_case, included, method_name, #screaming_snake_case, #snake_case

Methods included from DSL::IntrinsicFunctions

#base64, #find_in_map, #fn_and, #fn_equals, #fn_if, #fn_not, #fn_or, #fn_ref, #get_att, #get_azs, #join, #select

Constructor Details

#initialize(*args) ⇒ SNSTopicPolicy

Returns a new instance of SNSTopicPolicy



28
29
30
31
# File 'lib/convection/model/template/resource/aws_sns_topic_policy.rb', line 28

def initialize(*args)
  super
  @document = Model::Mixin::Policy.new(:name => false, :template => @template)
end

Instance Attribute Details

#documentObject (readonly)

Returns the value of attribute document



23
24
25
# File 'lib/convection/model/template/resource/aws_sns_topic_policy.rb', line 23

def document
  @document
end

Instance Method Details

#renderObject



33
34
35
36
37
# File 'lib/convection/model/template/resource/aws_sns_topic_policy.rb', line 33

def render
  super.tap do |r|
    document.render(r['Properties'])
  end
end

#topicObject #topic(value) ⇒ Object

Overloads:

  • #topicObject

    Returns the value of the 'Topics' CloudFormation property.

  • #topic(value) ⇒ Object

    Sets the 'Topics' CloudFormation property.

    Parameters:

    • value

      the value to set the 'Topics' CloudFormation property to.



22
# File 'lib/convection/model/template/resource/aws_sns_topic_policy.rb', line 22

property :topic, 'Topics', :type => :list