Module IoTWireless.WirelessGateway

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-wirelessgateway.html

type lo_ra_wan_gateway = {
  1. rf_region : string;
  2. gateway_eui : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotwireless-wirelessgateway-lorawangateway.html

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

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

type properties = {
  1. description : string option;
  2. lo_ra_wan : lo_ra_wan_gateway;
  3. thing_arn : string option;
  4. thing_name : string option;
  5. tags : tag list option;
  6. name : string option;
}

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

val make_properties : ?last_uplink_received_at:string -> ?description:string -> lo_ra_wan:lo_ra_wan_gateway -> ?thing_arn:string -> ?thing_name:string -> ?tags:tag list -> ?name:string -> unit -> properties
val make_lo_ra_wan_gateway : rf_region:string -> gateway_eui:string -> unit -> lo_ra_wan_gateway
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_lo_ra_wan_gateway : lo_ra_wan_gateway -> [> `Assoc of (string * Yojson.Safe.t) list ]
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. id : string;
  3. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string