Values.DeleteAutomatedReasoningPolicyBuildWorkflowRequestSourceDeletes an Automated Reasoning policy build workflow and its associated artifacts. This permanently removes the workflow history and any generated assets.
type nonrec t = {policyArn : AutomatedReasoningPolicyArn.t;The Amazon Resource Name (ARN) of the Automated Reasoning policy whose build workflow you want to delete.
*)buildWorkflowId : AutomatedReasoningPolicyBuildWorkflowId.t;The unique identifier of the build workflow to delete.
*)lastUpdatedAt : Timestamp.t;The timestamp when the build workflow was last updated. This is used for optimistic concurrency control to prevent accidental deletion of workflows that have been modified.
*)}val make :
policyArn:AutomatedReasoningPolicyArn.t ->
buildWorkflowId:AutomatedReasoningPolicyBuildWorkflowId.t ->
lastUpdatedAt:Timestamp.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `String of AutomatedReasoningPolicyArn.t
| `Timestamp of Timestamp.t ])
list ]