Module Values.StateTemplateSummarySource

Information about a state template. Access to certain Amazon Web Services IoT FleetWise features is currently gated. For more information, see Amazon Web Services Region and feature availability in the Amazon Web Services IoT FleetWise Developer Guide.

Sourcetype nonrec t = {
  1. name : ResourceName.t option;
    (*

    The name of the state template.

    *)
  2. arn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the state template.

    *)
  3. signalCatalogArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the signal catalog associated with the state template.

    *)
  4. description : Description.t option;
    (*

    A brief description of the state template.

    *)
  5. creationTime : Timestamp.t option;
    (*

    The time the state template was created, in seconds since epoch (January 1, 1970 at midnight UTC time).

    *)
  6. lastModificationTime : Timestamp.t option;
    (*

    The time the state template was last updated, in seconds since epoch (January 1, 1970 at midnight UTC time).

    *)
  7. id : ResourceUniqueId.t option;
    (*

    The unique ID of the state template.

    *)
}
Sourceval make : ?name:??? -> ?arn:??? -> ?signalCatalogArn:??? -> ?description:??? -> ?creationTime:??? -> ?lastModificationTime:??? -> ?id:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ResourceName.t | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t