Values.SecretValueEntrySourceA structure that contains the secret value and other details for a secret.
type nonrec t = {aRN : SecretARNType.t option;The Amazon Resource Name (ARN) of the secret.
*)name : SecretNameType.t option;The friendly name of the secret.
*)versionId : SecretVersionIdType.t option;The unique version identifier of this version of the secret.
*)secretBinary : SecretBinaryType.t option;The decrypted secret value, if the secret value was originally provided as binary data in the form of a byte array. The parameter represents the binary data as a base64-encoded string.
*)secretString : SecretStringType.t option;The decrypted secret value, if the secret value was originally provided as a string or through the Secrets Manager console.
*)versionStages : SecretVersionStagesType.t option;A list of all of the staging labels currently attached to this version of the secret.
*)createdDate : CreatedDateType.t option;The date the secret was created.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Blob of SecretBinaryType.t
| `List of [> `String of SecretVersionStageType.t ] list
| `String of SecretARNType.t
| `Timestamp of CreatedDateType.t ])
list ]