Values.ElasticsearchSettingsSourceProvides information that defines an OpenSearch endpoint.
type nonrec t = {serviceAccessRoleArn : String_.t;The Amazon Resource Name (ARN) used by the service to access the IAM role. The role must allow the iam:PassRole action.
*)endpointUri : String_.t;The endpoint for the OpenSearch cluster. DMS uses HTTPS if a transport protocol (http/https) is not specified.
*)fullLoadErrorPercentage : IntegerOptional.t option;The maximum percentage of records that can fail to be written before a full load operation stops. To avoid early failure, this counter is only effective after 1000 records are transferred. OpenSearch also has the concept of error monitoring during the last 10 minutes of an Observation Window. If transfer of all records fail in the last 10 minutes, the full load operation stops.
*)errorRetryDuration : IntegerOptional.t option;The maximum number of seconds for which DMS retries failed API requests to the OpenSearch cluster.
*)useNewMappingType : BooleanOptional.t option;Set this option to true for DMS to migrate documentation using the documentation type _doc. OpenSearch and an Elasticsearch cluster only support the _doc documentation type in versions 7. x and later. The default value is false.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of BooleanOptional.t
| `Integer of IntegerOptional.t
| `String of String_.t ])
list ]