Module Values.CreateCertificateRequestSource

Creates an SSL/TLS certificate for an Amazon Lightsail content delivery network (CDN) distribution and a container service. After the certificate is valid, use the AttachCertificateToDistribution action to use the certificate and its domains with your distribution. Or use the UpdateContainerService action to use the certificate and its domains with your container service. Only certificates created in the us-east-1 Amazon Web Services Region can be attached to Lightsail distributions. Lightsail distributions are global resources that can reference an origin in any Amazon Web Services Region, and distribute its content globally. However, all distributions are located in the us-east-1 Region.

Sourcetype nonrec t = {
  1. certificateName : CertificateName.t;
    (*

    The name for the certificate.

    *)
  2. domainName : DomainName.t;
    (*

    The domain name (example.com) for the certificate.

    *)
  3. subjectAlternativeNames : SubjectAlternativeNameList.t option;
    (*

    An array of strings that specify the alternate domains (example2.com) and subdomains (blog.example.com) for the certificate. You can specify a maximum of nine alternate domains (in addition to the primary domain name). Wildcard domain entries (*.example.com) are not supported.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?subjectAlternativeNames:??? -> ?tags:??? -> certificateName:CertificateName.t -> domainName: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 CertificateName.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