Module Values.DatabaseSource

The SAP HANA database of the application registered with AWS Systems Manager for SAP.

Sourcetype nonrec t = {
  1. applicationId : ApplicationId.t option;
    (*

    The ID of the application.

    *)
  2. componentId : ComponentId.t option;
    (*

    The ID of the component.

    *)
  3. credentials : ApplicationCredentialList.t option;
    (*

    The credentials of the database.

    *)
  4. databaseId : DatabaseId.t option;
    (*

    The ID of the SAP HANA database.

    *)
  5. databaseName : String_.t option;
    (*

    The name of the database.

    *)
  6. databaseType : DatabaseType.t option;
    (*

    The type of the database.

    *)
  7. arn : SsmSapArn.t option;
    (*

    The Amazon Resource Name (ARN) of the database.

    *)
  8. status : DatabaseStatus.t option;
    (*

    The status of the database.

    *)
  9. primaryHost : String_.t option;
    (*

    The primary host of the database.

    *)
  10. sQLPort : Integer.t option;
    (*

    The SQL port of the database.

    *)
  11. lastUpdated : Timestamp.t option;
    (*

    The time at which the database was last updated.

    *)
  12. connectedComponentArns : ComponentArnList.t option;
    (*

    The Amazon Resource Names of the connected AWS Systems Manager for SAP components.

    *)
}
Sourceval make : ?applicationId:??? -> ?componentId:??? -> ?credentials:??? -> ?databaseId:??? -> ?databaseName:??? -> ?databaseType:??? -> ?arn:??? -> ?status:??? -> ?primaryHost:??? -> ?sQLPort:??? -> ?lastUpdated:??? -> ?connectedComponentArns:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `List of [> `String of SsmSapArn.t | `Structure of (string * [> `Enum of string | `String of DatabaseName.t ]) list ] list | `String of ApplicationId.t | `Timestamp of Timestamp.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