Module Values.ApplicationCredentialSource

The credentials of your SAP application.

Sourcetype nonrec t = {
  1. databaseName : DatabaseName.t;
    (*

    The name of the SAP HANA database.

    *)
  2. credentialType : CredentialType.t;
    (*

    The type of the application credentials.

    *)
  3. secretId : SecretId.t;
    (*

    The secret ID created in AWS Secrets Manager to store the credentials of the SAP application.

    *)
}
Sourceval context_ : string
Sourceval make : databaseName:DatabaseName.t -> credentialType:CredentialType.t -> secretId:SecretId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DatabaseName.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