Module Values.ServerCertificateMetadataSource

Contains information about a server certificate without its certificate body, certificate chain, and private key. This data type is used as a response element in the UploadServerCertificate and ListServerCertificates operations.

Sourcetype nonrec t = {
  1. path : PathType.t option;
    (*

    The path to the server certificate. For more information about paths, see IAM identifiers in the IAM User Guide.

    *)
  2. serverCertificateName : ServerCertificateNameType.t option;
    (*

    The name that identifies the server certificate.

    *)
  3. serverCertificateId : IdType.t option;
    (*

    The stable and unique string identifying the server certificate. For more information about IDs, see IAM identifiers in the IAM User Guide.

    *)
  4. arn : ArnType.t option;
    (*

    The Amazon Resource Name (ARN) specifying the server certificate. For more information about ARNs and how to use them in policies, see IAM identifiers in the IAM User Guide.

    *)
  5. uploadDate : DateType.t option;
    (*

    The date when the server certificate was uploaded.

    *)
  6. expiration : DateType.t option;
    (*

    The date on which the certificate is set to expire.

    *)
}
Sourceval make : ?path:??? -> ?serverCertificateName:??? -> ?serverCertificateId:??? -> ?arn:??? -> ?uploadDate:??? -> ?expiration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PathType.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