Values.RoleCredentialsSourceProvides information about the role credentials that are assigned to the user.
type nonrec t = {accessKeyId : AccessKeyType.t option;The identifier used for the temporary security credentials. For more information, see Using Temporary Security Credentials to Request Access to AWS Resources in the AWS IAM User Guide.
*)secretAccessKey : SecretAccessKeyType.t option;The key that is used to sign the request. For more information, see Using Temporary Security Credentials to Request Access to AWS Resources in the AWS IAM User Guide.
*)sessionToken : SessionTokenType.t option;The token used for temporary credentials. For more information, see Using Temporary Security Credentials to Request Access to AWS Resources in the AWS IAM User Guide.
*)expiration : ExpirationTimestampType.t option;The date on which temporary security credentials expire.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Long of ExpirationTimestampType.t | `String of AccessKeyType.t ])
list ]