Module Values.AccessTokenSource

AWS credentials structure containing temporary access credentials The scoped-down, 15 minute duration AWS credentials. Scoping down will be based on CLI policy (CLI team needs to create it). Similar to cloud shell implementation.

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

    AWS access key ID for temporary credentials

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

    AWS secret access key for temporary credentials

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

    AWS session token for temporary credentials

    *)
}
Sourceval make : ?accessKeyId:??? -> ?secretAccessKey:??? -> ?sessionToken:??? -> 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