Class: AWS::IAM::ManagedPolicy

Inherits:
ModelElement show all
Defined in:
lib/cfn-model/model/iam_managed_policy.rb

Instance Attribute Summary collapse

Attributes inherited from ModelElement

#logical_resource_id, #metadata, #resource_type

Instance Method Summary collapse

Methods inherited from ModelElement

#==, #to_s

Constructor Details

#initialize(cfn_model) ⇒ ManagedPolicy

Returns a new instance of ManagedPolicy.



8
9
10
11
12
13
14
# File 'lib/cfn-model/model/iam_managed_policy.rb', line 8

def initialize(cfn_model)
  super
  @groups = []
  @roles = []
  @users = []
  @resource_type = 'AWS::IAM::ManagedPolicy'
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class ModelElement

Instance Attribute Details

#policy_documentObject

Returns the value of attribute policy_document.



6
7
8
# File 'lib/cfn-model/model/iam_managed_policy.rb', line 6

def policy_document
  @policy_document
end