Values_0.CredentialsSourceThe temporary security credentials, which include an access key ID, a secret access key, and a security (or session) token.
type nonrec t = {accessKeyId : AccessKeyIdType.t option;The access key ID that identifies the temporary security credentials.
*)secretAccessKey : AccessKeySecretType.t option;The secret access key that can be used to sign requests.
*)sessionToken : SessionTokenType.t option;The token that users must pass to the service API to use the temporary credentials.
*)expirationTime : DateTime.t option;The datetime on which the current credentials expire.
*)}val to_value :
t ->
[> `Structure of
(string * [> `String of AccessKeyIdType.t | `Timestamp of DateTime.t ])
list ]