Module Values.GetAccessTokenRequestSource

Gets a temporary access token to use with AssumeRoleWithWebIdentity. Access tokens are valid for one hour.

Sourcetype nonrec t = {
  1. token : TokenString.t;
    (*

    Refresh token, encoded as a JWT token.

    *)
  2. tokenProperties : MaxSize3StringList.t option;
    (*

    Token properties to validate against those present in the JWT token.

    *)
}
Sourceval context_ : string
Sourceval make : ?tokenProperties:??? -> token:TokenString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of TokenString.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