Module Values.OpenSearchCollectionSource

This structure contains information about the OpenSearch Service collection used for this integration. An OpenSearch Service collection is a logical grouping of one or more indexes that represent an analytics workload. For more information, see Creating and managing OpenSearch Service Serverless collections.

Sourcetype nonrec t = {
  1. collectionEndpoint : OpenSearchCollectionEndpoint.t option;
    (*

    The endpoint of the collection.

    *)
  2. collectionArn : Arn.t option;
    (*

    The ARN of the collection.

    *)
  3. status : OpenSearchResourceStatus.t option;
    (*

    This structure contains information about the status of this OpenSearch Service resource.

    *)
}
Sourceval make : ?collectionEndpoint:??? -> ?collectionArn:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of OpenSearchCollectionEndpoint.t | `Structure of (string * [> `Enum of string | `String of IntegrationStatusMessage.t ]) 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