Module Values.VirtualGatewayTlsValidationContextTrustSource

An object that represents a Transport Layer Security (TLS) validation context trust.

Sourcetype nonrec t = {
  1. acm : VirtualGatewayTlsValidationContextAcmTrust.t option;
    (*

    A reference to an object that represents a Transport Layer Security (TLS) validation context trust for an Certificate Manager certificate.

    *)
  2. file : VirtualGatewayTlsValidationContextFileTrust.t option;
    (*

    An object that represents a Transport Layer Security (TLS) validation context trust for a local file.

    *)
  3. sds : VirtualGatewayTlsValidationContextSdsTrust.t option;
    (*

    A reference to an object that represents a virtual gateway's Transport Layer Security (TLS) Secret Discovery Service validation context trust.

    *)
}
Sourceval make : ?acm:??? -> ?file:??? -> ?sds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `List of [> `String of Arn.t ] list | `String of FilePath.t ]) list ]) 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