Module Values.AwsCloudFrontDistributionOriginSslProtocolsSource

A complex type that contains information about the SSL/TLS protocols that CloudFront can use when establishing an HTTPS connection with your origin.

Sourcetype nonrec t = {
  1. items : NonEmptyStringList.t option;
    (*

    A list that contains allowed SSL/TLS protocols for this distribution.

    *)
  2. quantity : Integer.t option;
    (*

    The number of SSL/TLS protocols that you want to allow CloudFront to use when establishing an HTTPS connection with this origin.

    *)
}
Sourceval make : ?items:??? -> ?quantity:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `String of NonEmptyString.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