Module Values.DataProviderSource

Provides information that defines a data provider.

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

    The name of the data provider.

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

    The Amazon Resource Name (ARN) string that uniquely identifies the data provider.

    *)
  3. dataProviderCreationTime : Iso8601DateTime.t option;
    (*

    The time the data provider was created.

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

    A description of the data provider. Descriptions can have up to 31 characters. A description can contain only ASCII letters, digits, and hyphens ('-'). Also, it can't end with a hyphen or contain two consecutive hyphens, and can only begin with a letter.

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

    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.

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

    Indicates whether the data provider is virtual.

    *)
  7. settings : DataProviderSettings.t option;
    (*

    The settings in JSON format for a data provider.

    *)
}
Sourceval make : ?dataProviderName:??? -> ?dataProviderArn:??? -> ?dataProviderCreationTime:??? -> ?description:??? -> ?engine:??? -> ?virtual_:??? -> ?settings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.t | `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 | `Timestamp of Iso8601DateTime.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