Module Values.CredentialsSource

Credentials for the provided identity ID.

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

    The Access Key portion of the credentials.

    *)
  2. secretKey : SecretKeyString.t option;
    (*

    The Secret Access Key portion of the credentials

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

    The Session Token portion of the credentials

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

    The date at which these credentials will expire.

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