Module Values_0.CACertificateSource

A CA certificate.

Sourcetype nonrec t = {
  1. certificateArn : CertificateArn.t option;
    (*

    The ARN of the CA certificate.

    *)
  2. certificateId : CertificateId.t option;
    (*

    The ID of the CA certificate.

    *)
  3. status : CACertificateStatus.t option;
    (*

    The status of the CA certificate. The status value REGISTER_INACTIVE is deprecated and should not be used.

    *)
  4. creationDate : DateType.t option;
    (*

    The date the CA certificate was created.

    *)
}
Sourceval make : ?certificateArn:??? -> ?certificateId:??? -> ?status:??? -> ?creationDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of CertificateArn.t | `Timestamp of DateType.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