Values.CreditCodeSourceRepresents an AWS credit code that can be applied to an AWS account for billing purposes.
type nonrec t = {awsAccountId : String_.t option;The AWS account ID that the credit code is associated with or can be applied to.
*)value : MonetaryValue.t option;The monetary value of the credit code.
*)awsCreditCode : String_.t option;The actual credit code string that can be redeemed in the AWS billing console.
*)status : BenefitAllocationStatus.t option;The current status of the credit code (e.g., active, redeemed, expired).
*)issuedAt : Timestamp.t option;The timestamp when the credit code was issued.
*)expiresAt : Timestamp.t option;The timestamp when the credit code expires and can no longer be redeemed.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of String_.t
| `Structure of
(string * [> `Enum of string | `String of String_.t ]) list
| `Timestamp of Timestamp.t ])
list ]