Module Values.CredentialsSource

The Amazon Web Services Signature Version 4 type of temporary credentials.

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

    The token that applications inside the pods must pass to any service API to use the temporary credentials.

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

    The secret access key that applications inside the pods use to sign requests.

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

    The access key ID that identifies the temporary security credentials.

    *)
  4. expiration : Timestamp.t option;
    (*

    The Unix epoch timestamp in seconds when the current credentials expire.

    *)
}
Sourceval make : ?sessionToken:??? -> ?secretAccessKey:??? -> ?accessKeyId:??? -> ?expiration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Timestamp of Timestamp.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