Module Values.AwsIamAccessKeySessionContextSessionIssuerSource

Information about the entity that created the session.

Sourcetype nonrec t = {
  1. type_ : NonEmptyString.t option;
    (*

    The type of principal (user, role, or group) that created the session.

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

    The principal ID of the principal (user, role, or group) that created the session.

    *)
  3. arn : NonEmptyString.t option;
    (*

    The ARN of the session.

    *)
  4. accountId : NonEmptyString.t option;
    (*

    The identifier of the Amazon Web Services account that created the session.

    *)
  5. userName : NonEmptyString.t option;
    (*

    The name of the principal that created the session.

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