Values.ServiceDeploymentBriefSourceThe service deployment properties that are retured when you call ListServiceDeployments. This provides a high-level overview of the service deployment.
type nonrec t = {serviceDeploymentArn : String_.t option;The ARN of the service deployment.
*)serviceArn : String_.t option;The ARN of the service for this service deployment.
*)clusterArn : String_.t option;The ARN of the cluster that hosts the service.
*)startedAt : Timestamp.t option;The time that the service deployment statred. The format is yyyy-MM-dd HH:mm:ss.SSSSSS.
*)createdAt : Timestamp.t option;The time that the service deployment was created. The format is yyyy-MM-dd HH:mm:ss.SSSSSS.
*)finishedAt : Timestamp.t option;The time that the service deployment completed. The format is yyyy-MM-dd HH:mm:ss.SSSSSS.
*)targetServiceRevisionArn : String_.t option;The ARN of the service revision being deplyed.
*)status : ServiceDeploymentStatus.t option;The status of the service deployment
*)statusReason : String_.t option;Information about why the service deployment is in the current status. For example, the circuit breaker detected a deployment failure.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of String_.t
| `Timestamp of Timestamp.t ])
list ]