Module Values.AwsOpenSearchServiceDomainDomainEndpointOptionsDetailsSource

Information about additional options for the domain endpoint.

Sourcetype nonrec t = {
  1. customEndpointCertificateArn : NonEmptyString.t option;
    (*

    The ARN for the security certificate. The certificate is managed in ACM.

    *)
  2. customEndpointEnabled : Boolean.t option;
    (*

    Whether to enable a custom endpoint for the domain.

    *)
  3. enforceHTTPS : Boolean.t option;
    (*

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

    *)
  4. customEndpoint : NonEmptyString.t option;
    (*

    The fully qualified URL for the custom endpoint.

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

    The TLS security policy to apply to the HTTPS endpoint of the OpenSearch domain.

    *)
}
Sourceval make : ?customEndpointCertificateArn:??? -> ?customEndpointEnabled:??? -> ?enforceHTTPS:??? -> ?customEndpoint:??? -> ?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