Values.DeploymentSourceContains information about a deployment.
type nonrec t = {targetArn : TargetARN.t option;The ARN of the target IoT thing or thing group. When creating a subdeployment, the targetARN can only be a thing group.
*)revisionId : NonEmptyString.t option;The revision number of the deployment.
*)deploymentId : NonEmptyString.t option;The ID of the deployment.
*)deploymentName : NonEmptyString.t option;The name of the deployment.
*)creationTimestamp : Timestamp.t option;The time at which the deployment was created, expressed in ISO 8601 format.
*)deploymentStatus : DeploymentStatus.t option;The status of the deployment.
*)isLatestForTarget : IsLatestForTarget.t option;Whether or not the deployment is the latest revision for its target.
*)parentTargetArn : ThingGroupARN.t option;The parent deployment's target ARN within a subdeployment.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of IsLatestForTarget.t
| `Enum of string
| `String of TargetARN.t
| `Timestamp of Timestamp.t ])
list ]