Class: AWS::SNS::Policy
- Inherits:
-
Core::Policy
- Object
- Core::Policy
- AWS::SNS::Policy
- Defined in:
- lib/aws/sns/policy.rb
Overview
Represents an access policy for AWS operations and resources. For example:
policy = Policy.new
policy.allow(
:actions => ['s3:PutObject'],
:resources => "arn:aws:s3:::mybucket/mykey/*",
:principals => :any
).where(:acl).is("public-read")
policy.to_json # => '{ "Version":"2008-10-17", ...'
Defined Under Namespace
Classes: Statement
Instance Attribute Summary
Attributes inherited from Core::Policy
Method Summary
Methods inherited from Core::Policy
#==, #allow, #deny, from_json, #initialize, #to_h, #to_json
Constructor Details
This class inherits a constructor from AWS::Core::Policy