Values.ServicePipelineSourceDetailed data of an Proton service instance pipeline resource.
type nonrec t = {arn : Arn.t option;The Amazon Resource Name (ARN) of the service pipeline.
*)createdAt : Timestamp.t option;The time when the service pipeline was created.
*)deploymentStatus : DeploymentStatus.t option;The deployment status of the service pipeline.
*)deploymentStatusMessage : StatusMessage.t option;A service pipeline deployment status message.
*)lastAttemptedDeploymentId : DeploymentId.t option;The ID of the last attempted deployment of this service pipeline.
*)lastDeploymentAttemptedAt : Timestamp.t option;The time when a deployment of the service pipeline was last attempted.
*)lastDeploymentSucceededAt : Timestamp.t option;The time when the service pipeline was last deployed successfully.
*)lastSucceededDeploymentId : DeploymentId.t option;The ID of the last successful deployment of this service pipeline.
*)spec : SpecContents.t option;The service spec that was used to create the service pipeline.
*)templateMajorVersion : TemplateVersionPart.t option;The major version of the service template that was used to create the service pipeline.
*)templateMinorVersion : TemplateVersionPart.t option;The minor version of the service template that was used to create the service pipeline.
*)templateName : ResourceName.t option;The name of the service template that was used to create the service pipeline.
*)}val make :
?arn:??? ->
?createdAt:??? ->
?deploymentStatus:??? ->
?deploymentStatusMessage:??? ->
?lastAttemptedDeploymentId:??? ->
?lastDeploymentAttemptedAt:??? ->
?lastDeploymentSucceededAt:??? ->
?lastSucceededDeploymentId:??? ->
?spec:??? ->
?templateMajorVersion:??? ->
?templateMinorVersion:??? ->
?templateName:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string | `String of Arn.t | `Timestamp of Timestamp.t ])
list ]