Module Values.AwsCredentialsSource

The credentials required to access the external Dataview from the S3 location.

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

    The unique identifier for the security credentials.

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

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

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

    The token that users must pass to use the credentials.

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

    The Epoch time when the current credentials expire.

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