Module Values.CreateLoadBalancerTlsCertificateRequestSource

Creates 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.

Sourcetype nonrec t = {
  1. loadBalancerName : ResourceName.t;
    (*

    The load balancer name where you want to create the SSL/TLS certificate.

    *)
  2. 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.

    *)
  3. certificateDomainName : DomainName.t;
    (*

    The domain name (example.com) for your SSL/TLS certificate.

    *)
  4. 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).

    *)
  5. tags : TagList.t option;
    (*

    The tag keys and optional values to add to the resource during create. Use the TagResource action to tag a resource after it's created.

    *)
}
Sourceval context_ : string
Sourceval make : ?certificateAlternativeNames:??? -> ?tags:??? -> loadBalancerName:ResourceName.t -> certificateName:ResourceName.t -> certificateDomainName:DomainName.t -> unit -> t
Sourceval 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 ]
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