Module Values_0.CredentialsSource

The temporary security credentials, which include an access key ID, a secret access key, and a security (or session) token.

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

    The access key ID that identifies the temporary security credentials.

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

    The secret access key that can be used to sign requests.

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

    The token that users must pass to the service API to use the temporary credentials.

    *)
  4. expirationTime : DateTime.t option;
    (*

    The datetime on which the current credentials expire.

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