Module Values.SystemInstanceSummarySource

An object that contains summary information about a system instance.

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

    The ID of the system instance.

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

    The ARN of the system instance.

    *)
  3. status : SystemInstanceDeploymentStatus.t option;
    (*

    The status of the system instance.

    *)
  4. target : DeploymentTarget.t option;
    (*

    The target of the system instance.

    *)
  5. greengrassGroupName : GroupName.t option;
    (*

    The ID of the Greengrass group where the system instance is deployed.

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

    The date when the system instance was created.

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

    The date and time when the system instance was last updated.

    *)
  8. greengrassGroupId : GreengrassGroupId.t option;
    (*

    The ID of the Greengrass group where the system instance is deployed.

    *)
  9. greengrassGroupVersionId : GreengrassGroupVersionId.t option;
    (*

    The version of the Greengrass group where the system instance is deployed.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?status:??? -> ?target:??? -> ?greengrassGroupName:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?greengrassGroupId:??? -> ?greengrassGroupVersionId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Urn.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