Module Values_1.RegisterCertificateRequestSource

The input to the RegisterCertificate operation.

Sourcetype nonrec t = {
  1. certificatePem : Values_0.CertificatePem.t;
    (*

    The certificate data, in PEM format.

    *)
  2. caCertificatePem : Values_0.CertificatePem.t option;
    (*

    The CA certificate used to sign the device certificate being registered.

    *)
  3. setAsActive : Values_0.SetAsActiveFlag.t option;
    (*

    A boolean value that specifies if the certificate is set to active. Valid values: ACTIVE | INACTIVE

    *)
  4. status : Values_0.CertificateStatus.t option;
    (*

    The status of the register certificate request. Valid values that you can use include ACTIVE, INACTIVE, and REVOKED.

    *)
}
Sourceval context_ : string
Sourceval make : ?caCertificatePem:??? -> ?setAsActive:??? -> ?status:??? -> certificatePem:Values_0.CertificatePem.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.SetAsActiveFlag.t | `Enum of string | `String of Values_0.CertificatePem.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