Module Values.CertificateSource

Information about an SSL server certificate.

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

    The Amazon Resource Name (ARN) of the certificate.

    *)
  2. isDefault : Default.t option;
    (*

    Indicates whether the certificate is the default certificate. Do not set this value when specifying a certificate as an input. This value is not included in the output when describing a listener, but is included when describing listener certificates.

    *)
}
Sourceval make : ?certificateArn:??? -> ?isDefault:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Default.t | `String of CertificateArn.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