Module IoTFleetWise.SignalCatalog

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-signalcatalog.html

type branch = {
  1. description : string option;
  2. fully_qualified_name : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-signalcatalog-branch.html

and node_counts = {
  1. total_actuators : float option;
  2. total_nodes : float option;
  3. total_attributes : float option;
  4. total_branches : float option;
  5. total_sensors : float option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-signalcatalog-nodecounts.html

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

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

and actuator = {
  1. description : string option;
  2. allowed_values : string list option;
  3. min : float option;
  4. max : float option;
  5. fully_qualified_name : string;
  6. assigned_value : string option;
  7. data_type : string;
  8. unit : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-signalcatalog-actuator.html

and sensor = {
  1. description : string option;
  2. allowed_values : string list option;
  3. min : float option;
  4. max : float option;
  5. fully_qualified_name : string;
  6. data_type : string;
  7. unit : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-signalcatalog-sensor.html

and attribute = {
  1. default_value : string option;
  2. description : string option;
  3. allowed_values : string list option;
  4. min : float option;
  5. max : float option;
  6. fully_qualified_name : string;
  7. assigned_value : string option;
  8. data_type : string;
  9. unit : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-signalcatalog-attribute.html

and node = {
  1. attribute : attribute option;
  2. branch : branch option;
  3. sensor : sensor option;
  4. actuator : actuator option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-signalcatalog-node.html

type properties = {
  1. description : string option;
  2. node_counts : node_counts option;
  3. nodes : node list option;
  4. tags : tag list option;
  5. name : string option;
}

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

val make_properties : ?description:string -> ?node_counts:node_counts -> ?nodes:node list -> ?tags:tag list -> ?name:string -> unit -> properties
val make_branch : ?description:string -> fully_qualified_name:string -> unit -> branch
val make_node_counts : ?total_actuators:float -> ?total_nodes:float -> ?total_attributes:float -> ?total_branches:float -> ?total_sensors:float -> unit -> node_counts
val make_tag : value:string -> key:string -> unit -> tag
val make_actuator : ?description:string -> ?allowed_values:string list -> ?min:float -> ?max:float -> fully_qualified_name:string -> ?assigned_value:string -> data_type:string -> ?unit:string -> unit -> actuator
val make_sensor : ?description:string -> ?allowed_values:string list -> ?min:float -> ?max:float -> fully_qualified_name:string -> data_type:string -> ?unit:string -> unit -> sensor
val make_attribute : ?default_value:string -> ?description:string -> ?allowed_values:string list -> ?min:float -> ?max:float -> fully_qualified_name:string -> ?assigned_value:string -> data_type:string -> ?unit:string -> unit -> attribute
val make_node : ?attribute:attribute -> ?branch:branch -> ?sensor:sensor -> ?actuator:actuator -> unit -> node
val yojson_of_branch : branch -> Yojson.Safe.t
val yojson_of_node_counts : node_counts -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_actuator : actuator -> Yojson.Safe.t
val yojson_of_sensor : sensor -> Yojson.Safe.t
val yojson_of_attribute : attribute -> Yojson.Safe.t
val yojson_of_node : node -> [> `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. last_modification_time : string;
  3. node_counts__total_nodes : float;
  4. node_counts__total_sensors : float;
  5. node_counts__total_attributes : float;
  6. node_counts__total_branches : float;
  7. node_counts__total_actuators : float;
  8. creation_time : string;
  9. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string