Module Values.SecretValueEntrySource

A structure that contains the secret value and other details for a secret.

Sourcetype nonrec t = {
  1. aRN : SecretARNType.t option;
    (*

    The Amazon Resource Name (ARN) of the secret.

    *)
  2. name : SecretNameType.t option;
    (*

    The friendly name of the secret.

    *)
  3. versionId : SecretVersionIdType.t option;
    (*

    The unique version identifier of this version of the secret.

    *)
  4. 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.

    *)
  5. secretString : SecretStringType.t option;
    (*

    The decrypted secret value, if the secret value was originally provided as a string or through the Secrets Manager console.

    *)
  6. versionStages : SecretVersionStagesType.t option;
    (*

    A list of all of the staging labels currently attached to this version of the secret.

    *)
  7. createdDate : CreatedDateType.t option;
    (*

    The date the secret was created.

    *)
}
Sourceval make : ?aRN:??? -> ?name:??? -> ?versionId:??? -> ?secretBinary:??? -> ?secretString:??? -> ?versionStages:??? -> ?createdDate:??? -> unit -> t
Sourceval 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 ]
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