Values_0.ElasticsearchActionSourceDescribes an action that writes data to an Amazon OpenSearch Service domain. The Elasticsearch action can only be used by existing rule actions. To create a new rule action or to update an existing rule action, use the OpenSearch rule action instead. For more information, see OpenSearchAction.
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 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