Module Values.CertificateSearchResultSource

Contains information about a certificate returned by the SearchCertificates action. This structure includes the certificate ARN, X.509 attributes, and ACM metadata.

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

    The Amazon Resource Name (ARN) of the certificate.

    *)
  2. x509Attributes : X509Attributes.t option;
    (*

    X.509 certificate attributes such as subject, issuer, and validity period.

    *)
  3. certificateMetadata : CertificateMetadata.t option;
    (*

    ACM-specific metadata about the certificate.

    *)
}
Sourceval make : ?certificateArn:??? -> ?x509Attributes:??? -> ?certificateMetadata:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Arn.t | `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `Structure of (string * [> `String of String_.t | `Structure of (string * [> `List of [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t ]) list ]) list ] list | `String of SerialNumber.t | `Structure of (string * [> `Boolean of NullableBoolean.t | `Enum of string | `List of [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t | `Timestamp of TStamp.t ]) list | `Timestamp of TStamp.t ]) list ]) 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