Module Values.DeleteAutomatedReasoningPolicyBuildWorkflowRequestSource

Deletes an Automated Reasoning policy build workflow and its associated artifacts. This permanently removes the workflow history and any generated assets.

Sourcetype nonrec t = {
  1. policyArn : AutomatedReasoningPolicyArn.t;
    (*

    The Amazon Resource Name (ARN) of the Automated Reasoning policy whose build workflow you want to delete.

    *)
  2. buildWorkflowId : AutomatedReasoningPolicyBuildWorkflowId.t;
    (*

    The unique identifier of the build workflow to delete.

    *)
  3. 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.

    *)
}
Sourceval context_ : string
Sourceval make : policyArn:AutomatedReasoningPolicyArn.t -> buildWorkflowId:AutomatedReasoningPolicyBuildWorkflowId.t -> lastUpdatedAt:Timestamp.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AutomatedReasoningPolicyArn.t | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t