Module Values.AwsCloudFrontDistributionOriginCustomOriginConfigSource

A custom origin. A custom origin is any origin that is not an Amazon S3 bucket, with one exception. An Amazon S3 bucket that is configured with static website hosting is a custom origin.

Sourcetype nonrec t = {
  1. httpPort : Integer.t option;
    (*

    The HTTP port that CloudFront uses to connect to the origin.

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

    The HTTPS port that CloudFront uses to connect to the origin.

    *)
  3. originKeepaliveTimeout : Integer.t option;
    (*

    Specifies how long, in seconds, CloudFront persists its connection to the origin.

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

    Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the origin.

    *)
  5. originReadTimeout : Integer.t option;
    (*

    Specifies how long, in seconds, CloudFront waits for a response from the origin.

    *)
  6. originSslProtocols : AwsCloudFrontDistributionOriginSslProtocols.t option;
    (*

    Specifies the minimum SSL/TLS protocol that CloudFront uses when connecting to your origin over HTTPS.

    *)
}
Sourceval make : ?httpPort:??? -> ?httpsPort:??? -> ?originKeepaliveTimeout:??? -> ?originProtocolPolicy:??? -> ?originReadTimeout:??? -> ?originSslProtocols:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of NonEmptyString.t | `Structure of (string * [> `Integer of Integer.t | `List of [> `String of NonEmptyString.t ] list ]) 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