Module Values.CertificateAssociationSummarySource

Describes a summary of a certificate association.

Sourcetype nonrec t = {
  1. acmCertificateArn : AcmCertificateArn.t option;
    (*

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

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

    The status of the certificate association.

    *)
  3. associatedAt : Timestamp.t option;
    (*

    The timestamp of when the certificate was associated.

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

    The timestamp of when the certificate association was last updated.

    *)
}
Sourceval make : ?acmCertificateArn:??? -> ?status:??? -> ?associatedAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AcmCertificateArn.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