IAM.Groupsee http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-group.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group-policy.html
type properties = {group_name : string option;path : string option;managed_policy_arns : string list option;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 ->
propertiesval make_policy :
policy_name:string ->
policy_document:Yojson.Safe.t ->
unit ->
policyval yojson_of_policy : policy -> [> `Assoc of (string * Yojson.Safe.t) list ]val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]val create_attributes : string -> attributes