Values.DeploymentSummarySourceInformation about the deployment.
type nonrec t = {deploymentNumber : Integer.t option;The sequence number of the deployment.
*)configurationName : Name.t option;The name of the configuration.
*)configurationVersion : Version.t option;The version of the configuration.
*)deploymentDurationInMinutes : MinutesBetween0And24Hours.t option;Total amount of time the deployment lasted.
*)growthType : GrowthType.t option;The algorithm used to define how percentage grows over time.
*)growthFactor : Percentage.t option;The percentage of targets to receive a deployed configuration during each interval.
*)finalBakeTimeInMinutes : MinutesBetween0And24Hours.t option;The amount of time that AppConfig monitors for alarms before considering the deployment to be complete and no longer eligible for automatic rollback.
*)state : DeploymentState.t option;The state of the deployment.
*)percentageComplete : Percentage.t option;The percentage of targets for which the deployment is available.
*)startedAt : Iso8601DateTime.t option;Time the deployment started.
*)completedAt : Iso8601DateTime.t option;Time the deployment completed.
*)versionLabel : VersionLabel.t option;A user-defined label for an AppConfig hosted configuration version.
*)}val make :
?deploymentNumber:??? ->
?configurationName:??? ->
?configurationVersion:??? ->
?deploymentDurationInMinutes:??? ->
?growthType:??? ->
?growthFactor:??? ->
?finalBakeTimeInMinutes:??? ->
?state:??? ->
?percentageComplete:??? ->
?startedAt:??? ->
?completedAt:??? ->
?versionLabel:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Float of Percentage.t
| `Integer of Integer.t
| `String of Name.t
| `Timestamp of Iso8601DateTime.t ])
list ]