Module IAM.Policy

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html

type properties = {
  1. groups : string list option;
  2. policy_name : string;
  3. policy_document : Yojson.Safe.t;
  4. roles : string list option;
  5. users : string list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html;

val make_properties : ?groups:string list -> policy_name:string -> policy_document:Yojson.Safe.t -> ?roles:string list -> ?users:string list -> unit -> properties
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string