Module IoT.CACertificate

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

type tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

and registration_config = {
  1. template_name : string option;
  2. template_body : string option;
  3. role_arn : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-cacertificate-registrationconfig.html

type properties = {
  1. status : string;
  2. ca_certificate_pem : string;
  3. certificate_mode : string option;
  4. auto_registration_status : string option;
  5. remove_auto_registration : bool option;
  6. registration_config : registration_config option;
  7. verification_certificate_pem : string option;
  8. tags : tag list option;
}

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

val make_properties : status:string -> ca_certificate_pem:string -> ?certificate_mode:string -> ?auto_registration_status:string -> ?remove_auto_registration:bool -> ?registration_config:registration_config -> ?verification_certificate_pem:string -> ?tags:tag list -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_registration_config : ?template_name:string -> ?template_body:string -> ?role_arn:string -> unit -> registration_config
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_registration_config : registration_config -> [> `Assoc of (string * Yojson.Safe.t) list ]
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