Module Values.SessionIssuerSource

Provides information about the source and type of temporary security credentials that were issued to an entity.

Sourcetype nonrec t = {
  1. accountId : string option;
    (*

    The unique identifier for the Amazon Web Services account that owns the entity that was used to get the credentials.

    *)
  2. arn : string option;
    (*

    The Amazon Resource Name (ARN) of the source account, Identity and Access Management (IAM) user, or role that was used to get the credentials.

    *)
  3. principalId : string option;
    (*

    The unique identifier for the entity that was used to get the credentials.

    *)
  4. type_ : string option;
    (*

    The source of the temporary security credentials, such as Root, IAMUser, or Role.

    *)
  5. userName : string option;
    (*

    The name or alias of the user or role that issued the session. This value is null if the credentials were obtained from a root account that doesn't have an alias.

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