Module Values.RenewalSummarySource

Contains information about the status of ACM's managed renewal for the certificate. This structure exists only when the certificate type is AMAZON_ISSUED.

Sourcetype nonrec t = {
  1. renewalStatus : RenewalStatus.t option;
    (*

    The status of ACM's managed renewal of the certificate.

    *)
  2. domainValidationOptions : DomainValidationList.t option;
    (*

    Contains information about the validation of each domain name in the certificate, as it pertains to ACM's managed renewal. This is different from the initial validation that occurs as a result of the RequestCertificate request. This field exists only when the certificate type is AMAZON_ISSUED.

    *)
  3. renewalStatusReason : FailureReason.t option;
    (*

    The reason that a renewal request was unsuccessful.

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

    The time at which the renewal summary was last updated.

    *)
}
Sourceval make : ?renewalStatus:??? -> ?domainValidationOptions:??? -> ?renewalStatusReason:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of DomainNameString.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list ]) list ] list | `Timestamp of TStamp.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