Module Values.MutualAuthenticationAttributesSource

Information about the mutual authentication attributes of a listener.

Sourcetype nonrec t = {
  1. mode : Mode.t option;
    (*

    The client certificate handling method. Options are off, passthrough or verify. The default value is off.

    *)
  2. trustStoreArn : TrustStoreArn.t option;
    (*

    The Amazon Resource Name (ARN) of the trust store.

    *)
  3. ignoreClientCertificateExpiry : IgnoreClientCertificateExpiry.t option;
    (*

    Indicates whether expired client certificates are ignored.

    *)
  4. trustStoreAssociationStatus : TrustStoreAssociationStatusEnum.t option;
    (*

    Indicates a shared trust stores association status.

    *)
  5. advertiseTrustStoreCaNames : AdvertiseTrustStoreCaNamesEnum.t option;
    (*

    Indicates whether trust store CA certificate names are advertised.

    *)
}
Sourceval make : ?mode:??? -> ?trustStoreArn:??? -> ?ignoreClientCertificateExpiry:??? -> ?trustStoreAssociationStatus:??? -> ?advertiseTrustStoreCaNames:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of IgnoreClientCertificateExpiry.t | `Enum of string | `String of Mode.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