Module Values.ServerCertificateSource

Contains information about a server certificate. This data type is used as a response element in the GetServerCertificate operation.

Sourcetype nonrec t = {
  1. serverCertificateMetadata : ServerCertificateMetadata.t option;
    (*

    The meta information of the server certificate, such as its name, path, ID, and ARN.

    *)
  2. certificateBody : CertificateBodyType.t option;
    (*

    The contents of the public key certificate.

    *)
  3. certificateChain : CertificateChainType.t option;
    (*

    The contents of the public key certificate chain.

    *)
  4. tags : TagListType.t option;
    (*

    A list of tags that are attached to the server certificate. For more information about tagging, see Tagging IAM resources in the IAM User Guide.

    *)
}
Sourceval make : ?serverCertificateMetadata:??? -> ?certificateBody:??? -> ?certificateChain:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKeyType.t ]) list ] list | `String of CertificateBodyType.t | `Structure of (string * [> `String of PathType.t | `Timestamp of DateType.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