Module Values.IamUserProfileDetailsSource

The details of the IAM user profile.

Sourcetype nonrec t = {
  1. arn : String_.t option;
    (*

    The ARN of the IAM user.

    *)
  2. principalId : String_.t option;
    (*

    The principal ID as part of the IAM user profile details.

    *)
  3. sessionName : String_.t option;
    (*

    The session name for IAM role sessions.

    *)
  4. groupProfileId : String_.t option;
    (*

    The identifier of the group profile associated with the IAM user profile. This links the user to a specific group profile within the Amazon DataZone domain.

    *)
}
Sourceval make : ?arn:??? -> ?principalId:??? -> ?sessionName:??? -> ?groupProfileId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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