Module Values.StartCodeRemediationInputSource

Input for the StartCodeRemediation operation.

Sourcetype nonrec t = {
  1. agentSpaceId : String_.t;
    (*

    The unique identifier of the agent space.

    *)
  2. pentestJobId : String_.t option;
    (*

    The unique identifier of the pentest job that produced the findings. Mutually exclusive with codeReviewJobId.

    *)
  3. codeReviewJobId : String_.t option;
    (*

    The unique identifier of the code review job that produced the findings. Mutually exclusive with pentestJobId.

    *)
  4. findingIds : FindingIdList.t;
    (*

    The list of finding identifiers to initiate code remediation for.

    *)
}
Sourceval context_ : string
Sourceval make : ?pentestJobId:??? -> ?codeReviewJobId:??? -> agentSpaceId:String_.t -> findingIds:FindingIdList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.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