Values.NetworkMigrationDeployerJobDetailsSourceDetails about a network migration deployer job.
type nonrec t = {jobID : NetworkMigrationJobID.t option;The unique identifier of the deployer job.
*)networkMigrationExecutionID : NetworkMigrationExecutionID.t option;The unique identifier of the network migration execution.
*)networkMigrationDefinitionID : NetworkMigrationDefinitionID.t option;The unique identifier of the network migration definition.
*)createdAt : Timestamp.t option;The timestamp when the job was created.
*)endedAt : Timestamp.t option;The timestamp when the job completed or failed.
*)status : NetworkMigrationJobStatus.t option;The current status of the deployer job.
*)statusDetails : LargeBoundedString.t option;Detailed status information about the job.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of NetworkMigrationJobID.t
| `Timestamp of Timestamp.t ])
list ]