Module Values.AwsElasticsearchDomainDomainEndpointOptionsSource

Additional options for the domain endpoint, such as whether to require HTTPS for all traffic.

Sourcetype nonrec t = {
  1. enforceHTTPS : Boolean.t option;
    (*

    Whether to require that all traffic to the domain arrive over HTTPS.

    *)
  2. tLSSecurityPolicy : NonEmptyString.t option;
    (*

    The TLS security policy to apply to the HTTPS endpoint of the OpenSearch domain. Valid values: Policy-Min-TLS-1-0-2019-07, which supports TLSv1.0 and higher Policy-Min-TLS-1-2-2019-07, which only supports TLSv1.2

    *)
}
Sourceval make : ?enforceHTTPS:??? -> ?tLSSecurityPolicy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of NonEmptyString.t ]) 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