Values_0.OpenSearchActionSourceDescribes an action that writes data to an Amazon OpenSearch Service domain.
type nonrec t = {roleArn : AwsArn.t;The IAM role ARN that has access to OpenSearch.
*)endpoint : ElasticsearchEndpoint.t;The endpoint of your OpenSearch domain.
*)index : ElasticsearchIndex.t;The OpenSearch index where you want to store your data.
*)type_ : ElasticsearchType.t;The type of document you are storing.
*)id : ElasticsearchId.t;The unique identifier for the document you are storing.
*)}val make :
roleArn:AwsArn.t ->
endpoint:ElasticsearchEndpoint.t ->
index:ElasticsearchIndex.t ->
type_:ElasticsearchType.t ->
id:ElasticsearchId.t ->
unit ->
t