Module Values.CreateDataProviderMessageSource

Creates a data provider using the provided settings. A data provider stores a data store type and location information about your database.

Sourcetype nonrec t = {
  1. dataProviderName : String_.t option;
    (*

    A user-friendly name for the data provider.

    *)
  2. description : String_.t option;
    (*

    A user-friendly description of the data provider.

    *)
  3. engine : String_.t;
    (*

    The type of database engine for the data provider. Valid values include "aurora", "aurora-postgresql", "mysql", "oracle", "postgres", "sqlserver", redshift, mariadb, mongodb, db2, db2-zos, docdb, and sybase. A value of "aurora" represents Amazon Aurora MySQL-Compatible Edition.

    *)
  4. virtual_ : BooleanOptional.t option;
    (*

    Indicates whether the data provider is virtual.

    *)
  5. settings : DataProviderSettings.t;
    (*

    The settings in JSON format for a data provider.

    *)
  6. tags : TagList.t option;
    (*

    One or more tags to be assigned to the data provider.

    *)
}
Sourceval context_ : string
Sourceval make : ?dataProviderName:??? -> ?description:??? -> ?virtual_:??? -> ?tags:??? -> engine:String_.t -> settings:DataProviderSettings.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.t | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Structure of (string * [> `Boolean of BooleanOptional.t | `Enum of string | `Integer of IntegerOptional.t | `String of String_.t ]) list ]) list ]) 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