Module Values.RoleSource

The wrapper that contains the Audit Manager role information of the current user. This includes the role type and IAM Amazon Resource Name (ARN).

Sourcetype nonrec t = {
  1. roleType : RoleType.t;
    (*

    The type of customer persona. In CreateAssessment, roleType can only be PROCESS_OWNER. In UpdateSettings, roleType can only be PROCESS_OWNER. In BatchCreateDelegationByAssessment, roleType can only be RESOURCE_OWNER.

    *)
  2. roleArn : IamArn.t;
    (*

    The Amazon Resource Name (ARN) of the IAM role.

    *)
}
Sourceval context_ : string
Sourceval make : roleType:RoleType.t -> roleArn:IamArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of IamArn.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t