Module Values.AssociatedAssetsSummarySource

Contains a summary of an associated asset.

Sourcetype nonrec t = {
  1. id : ID.t option;
    (*

    The ID of the asset, in UUID format.

    *)
  2. externalId : ExternalId.t option;
    (*

    The external ID of the asset. For more information, see Using external IDs in the IoT SiteWise User Guide.

    *)
  3. arn : ARN.t option;
    (*

    The ARN of the asset, which has the following format. arn:${Partition}:iotsitewise:${Region}:${Account}:asset/${AssetId}

    *)
  4. name : Name.t option;
    (*

    The name of the asset.

    *)
  5. assetModelId : ID.t option;
    (*

    The ID of the asset model used to create the asset.

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

    The date the asset was created, in Unix epoch time.

    *)
  7. lastUpdateDate : Timestamp.t option;
    (*

    The date the asset was last updated, in Unix epoch time.

    *)
  8. status : AssetStatus.t option;
    (*

    The current status of the asset.

    *)
  9. hierarchies : AssetHierarchies.t option;
    (*

    A list of asset hierarchies that each contain a hierarchyId. A hierarchy specifies allowed parent/child asset relationships.

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

    A description for the asset.

    *)
}
Sourceval make : ?id:??? -> ?externalId:??? -> ?arn:??? -> ?name:??? -> ?assetModelId:??? -> ?creationDate:??? -> ?lastUpdateDate:??? -> ?status:??? -> ?hierarchies:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of ID.t ]) list ] list | `String of ID.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of DetailedErrorMessage.t ]) list ] list | `String of ErrorMessage.t ]) list ]) list | `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