Values.InputOriginSourceDescribes the origin resource of an Amazon Lightsail content delivery network (CDN) distribution. An origin can be a Lightsail instance, bucket, container service, or load balancer. A distribution pulls content from an origin, caches it, and serves it to viewers via a worldwide network of edge servers.
type nonrec t = {name : ResourceName.t option;The name of the origin resource.
*)regionName : RegionName.t option;The AWS Region name of the origin resource.
*)protocolPolicy : OriginProtocolPolicyEnum.t option;The protocol that your Amazon Lightsail distribution uses when establishing a connection with your origin to pull content.
*)responseTimeout : Integer.t option;The amount of time, in seconds, that the distribution waits for a response after forwarding a request to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds.
*)ipAddressType : OriginIpAddressTypeEnum.t option;The IP address type that the distribution uses when connecting to the origin. The possible values are ipv4 for IPv4 only, ipv6 for IPv6 only, and dualstack for IPv4 and IPv6.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of Integer.t
| `String of ResourceName.t ])
list ]