Module RolesAnywhere.Profile

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-profile.html

type tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

type properties = {
  1. managed_policy_arns : string list option;
  2. require_instance_properties : bool option;
  3. role_arns : string list;
  4. session_policy : string option;
  5. enabled : bool option;
  6. duration_seconds : float option;
  7. tags : tag list option;
  8. name : string;
}

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

val make_properties : ?managed_policy_arns:string list -> ?require_instance_properties:bool -> role_arns:string list -> ?session_policy:string -> ?enabled:bool -> ?duration_seconds:float -> ?tags:tag list -> name:string -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_tag : tag -> [> `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. profile_id : string;
  3. profile_arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string