Values.DeleteAutomatedReasoningPolicyTestCaseRequestSourceDeletes an Automated Reasoning policy test. This operation is idempotent; if you delete a test more than once, each call succeeds.
type nonrec t = {policyArn : AutomatedReasoningPolicyArn.t;The Amazon Resource Name (ARN) of the Automated Reasoning policy that contains the test.
*)testCaseId : AutomatedReasoningPolicyTestCaseId.t;The unique identifier of the test to delete.
*)lastUpdatedAt : Timestamp.t;The timestamp when the test was last updated. This is used as a concurrency token to prevent conflicting modifications.
*)}val make :
policyArn:AutomatedReasoningPolicyArn.t ->
testCaseId:AutomatedReasoningPolicyTestCaseId.t ->
lastUpdatedAt:Timestamp.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `String of AutomatedReasoningPolicyArn.t
| `Timestamp of Timestamp.t ])
list ]