Values.CreateLoadBalancerTlsCertificateRequestSourceCreates an SSL/TLS certificate for an Amazon Lightsail load balancer. TLS is just an updated, more secure version of Secure Socket Layer (SSL). The CreateLoadBalancerTlsCertificate operation supports tag-based access control via resource tags applied to the resource identified by load balancer name. For more information, see the Amazon Lightsail Developer Guide.
type nonrec t = {loadBalancerName : ResourceName.t;The load balancer name where you want to create the SSL/TLS certificate.
*)certificateName : ResourceName.t;The SSL/TLS certificate name. You can have up to 10 certificates in your account at one time. Each Lightsail load balancer can have up to 2 certificates associated with it at one time. There is also an overall limit to the number of certificates that can be issue in a 365-day period. For more information, see Limits.
*)certificateDomainName : DomainName.t;The domain name (example.com) for your SSL/TLS certificate.
*)certificateAlternativeNames : DomainNameList.t option;An array of strings listing alternative domains and subdomains for your SSL/TLS certificate. Lightsail will de-dupe the names for you. You can have a maximum of 9 alternative names (in addition to the 1 primary domain). We do not support wildcards (*.example.com).
*)}val make :
?certificateAlternativeNames:??? ->
?tags:??? ->
loadBalancerName:ResourceName.t ->
certificateName:ResourceName.t ->
certificateDomainName:DomainName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of
[> `String of DomainName.t
| `Structure of (string * [> `String of TagKey.t ]) list ]
list
| `String of ResourceName.t ])
list ]