Module Values.DirectQueryDataSourceSource

The configuration details for a data source that can be directly queried.

Sourcetype nonrec t = {
  1. dataSourceName : DirectQueryDataSourceName.t option;
    (*

    A unique, user-defined label to identify the data source within your OpenSearch Service environment.

    *)
  2. dataSourceType : DirectQueryDataSourceType.t option;
    (*

    The supported Amazon Web Services service that is used as the source for direct queries in OpenSearch Service.

    *)
  3. description : DirectQueryDataSourceDescription.t option;
    (*

    A description that provides additional context and details about the data source.

    *)
  4. openSearchArns : DirectQueryOpenSearchARNList.t option;
    (*

    A list of Amazon Resource Names (ARNs) for the OpenSearch collections that are associated with the direct query data source.

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

    The unique, system-generated identifier that represents the data source.

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

    A list of tags attached to a direct query data source.

    *)
}
Sourceval make : ?dataSourceName:??? -> ?dataSourceType:??? -> ?description:??? -> ?openSearchArns:??? -> ?dataSourceArn:??? -> ?tagList:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of ARN.t | `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of DirectQueryDataSourceName.t | `Structure of (string * [> `Structure of (string * [> `String of DirectQueryDataSourceRoleArn.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