Module Values.AwsCredentialsSource

The Identity and Access Management credentials.

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

    The IAM access key ID.

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

    The IAM secret access key.

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

    The IAM session token

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

    The expiration date and time of the IAM credentials.

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