Module Values.SessionMappingDetailSource

Details for an Amazon EMR Studio session mapping including creation time, user or group ID, Studio ID, and so on.

Sourcetype nonrec t = {
  1. studioId : XmlStringMaxLen256.t option;
    (*

    The ID of the Amazon EMR Studio.

    *)
  2. identityId : XmlStringMaxLen256.t option;
    (*

    The globally unique identifier (GUID) of the user or group.

    *)
  3. identityName : XmlStringMaxLen256.t option;
    (*

    The name of the user or group. For more information, see UserName and DisplayName in the IAM Identity Center Identity Store API Reference.

    *)
  4. identityType : IdentityType.t option;
    (*

    Specifies whether the identity mapped to the Amazon EMR Studio is a user or a group.

    *)
  5. sessionPolicyArn : XmlStringMaxLen256.t option;
    (*

    The Amazon Resource Name (ARN) of the session policy associated with the user or group.

    *)
  6. creationTime : Date.t option;
    (*

    The time the session mapping was created.

    *)
  7. lastModifiedTime : Date.t option;
    (*

    The time the session mapping was last modified.

    *)
}
Sourceval make : ?studioId:??? -> ?identityId:??? -> ?identityName:??? -> ?identityType:??? -> ?sessionPolicyArn:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of XmlStringMaxLen256.t | `Timestamp of Date.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