Module Values.ConnectionCredentialsSource

The credentials of a connection.

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

    The access key ID of a connection.

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

    The secret access key of a connection.

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

    The session token of a connection credentials.

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

    The expiration of the connection credentials.

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