Module IoT.Authorizer

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

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

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

type properties = {
  1. status : string option;
  2. token_key_name : string option;
  3. enable_caching_for_http : bool option;
  4. authorizer_name : string option;
  5. token_signing_public_keys : string Stdlib__Map.Make(Stdlib.String).t option;
  6. signing_disabled : bool option;
  7. tags : tag list option;
  8. authorizer_function_arn : string;
}

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

val make_properties : ?status:string -> ?token_key_name:string -> ?enable_caching_for_http:bool -> ?authorizer_name:string -> ?token_signing_public_keys:string Stdlib__Map.Make(Stdlib.String).t -> ?signing_disabled:bool -> ?tags:tag list -> authorizer_function_arn:string -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_tag : tag -> [> `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. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string