Module Values.DataSourceSource

A data source in an Amazon Q Business application.

Sourcetype nonrec t = {
  1. displayName : DataSourceName.t option;
    (*

    The name of the Amazon Q Business data source.

    *)
  2. dataSourceId : DataSourceId.t option;
    (*

    The identifier of the Amazon Q Business data source.

    *)
  3. type_ : String_.t option;
    (*

    The type of the Amazon Q Business data source.

    *)
  4. createdAt : Timestamp.t option;
    (*

    The Unix timestamp when the Amazon Q Business data source was created.

    *)
  5. updatedAt : Timestamp.t option;
    (*

    The Unix timestamp when the Amazon Q Business data source was last updated.

    *)
  6. status : DataSourceStatus.t option;
    (*

    The status of the Amazon Q Business data source.

    *)
}
Sourceval make : ?displayName:??? -> ?dataSourceId:??? -> ?type_:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DataSourceName.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