Module Values.ManagedCertificateSource

The ACM certificate associated with the HTTPS domain created for the Express service.

Sourcetype nonrec t = {
  1. arn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the ACM certificate.

    *)
  2. status : ManagedResourceStatus.t option;
    (*

    The status of the ACM; certificate.

    *)
  3. statusReason : String_.t option;
    (*

    Information about why the ACM certificate is in the current status.

    *)
  4. updatedAt : Timestamp.t option;
    (*

    The Unix timestamp for when the ACM certificate was last updated

    *)
  5. domainName : String_.t option;
    (*

    The fully qualified domain name (FQDN) that is secured with this ACM certificate.

    *)
}
Sourceval make : ?arn:??? -> ?status:??? -> ?statusReason:??? -> ?updatedAt:??? -> ?domainName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Timestamp.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