Module IoT.Certificate

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html

type properties = {
  1. status : string;
  2. ca_certificate_pem : string option;
  3. certificate_mode : string option;
  4. certificate_signing_request : string option;
  5. certificate_pem : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html;

val make_properties : status:string -> ?ca_certificate_pem:string -> ?certificate_mode:string -> ?certificate_signing_request:string -> ?certificate_pem:string -> unit -> properties
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. id : string;
  3. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string