Values.DeploymentSummarySourceSummary data of the deployment.
type nonrec t = {arn : DeploymentArn.t option;The Amazon Resource Name (ARN) of the deployment.
*)completedAt : Timestamp.t option;The date and time the deployment was completed.
*)componentName : ResourceName.t option;The name of the component associated with the deployment.
*)createdAt : Timestamp.t option;The date and time the deployment was created.
*)deploymentStatus : DeploymentStatus.t option;The current status of the deployment.
*)environmentName : ResourceName.t option;The name of the environment associated with the deployment.
*)id : DeploymentId.t option;The ID of the deployment.
*)lastAttemptedDeploymentId : DeploymentId.t option;The ID of the last attempted deployment.
*)lastModifiedAt : Timestamp.t option;The date and time the deployment was last modified.
*)lastSucceededDeploymentId : DeploymentId.t option;The ID of the last successful deployment.
*)serviceInstanceName : ResourceName.t option;The name of the service instance associated with the deployment.
*)serviceName : ResourceName.t option;The name of the service associated with the deployment.
*)targetArn : Arn.t option;The Amazon Resource Name (ARN) of the target of the deployment.
*)targetResourceCreatedAt : Timestamp.t option;The date and time the target resource was created.
*)targetResourceType : DeploymentTargetResourceType.t option;The resource type of the deployment target. It can be an environment, service, service instance, or component.
*)}val make :
?arn:??? ->
?completedAt:??? ->
?componentName:??? ->
?createdAt:??? ->
?deploymentStatus:??? ->
?environmentName:??? ->
?id:??? ->
?lastAttemptedDeploymentId:??? ->
?lastModifiedAt:??? ->
?lastSucceededDeploymentId:??? ->
?serviceInstanceName:??? ->
?serviceName:??? ->
?targetArn:??? ->
?targetResourceCreatedAt:??? ->
?targetResourceType:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of DeploymentArn.t
| `Timestamp of Timestamp.t ])
list ]