Module IAM.Group

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

type policy = {
  1. policy_name : string;
  2. policy_document : Yojson.Safe.t;
}

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

type properties = {
  1. group_name : string option;
  2. path : string option;
  3. managed_policy_arns : string list option;
  4. policies : policy list option;
}

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

val make_properties : ?group_name:string -> ?path:string -> ?managed_policy_arns:string list -> ?policies:policy list -> unit -> properties
val make_policy : policy_name:string -> policy_document:Yojson.Safe.t -> unit -> policy
val yojson_of_policy : policy -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string