Module Values.UpdateCodeReviewInputSource

Input for updating an existing code review.

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

    The unique identifier of the code review to update.

    *)
  2. agentSpaceId : String_.t;
    (*

    The unique identifier of the agent space that contains the code review.

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

    The updated title of the code review.

    *)
  4. assets : Assets.t option;
    (*

    The updated assets for the code review.

    *)
  5. serviceRole : ServiceRole.t option;
    (*

    The updated IAM service role for the code review.

    *)
  6. logConfig : CloudWatchLog.t option;
    (*

    The updated CloudWatch Logs configuration for the code review.

    *)
  7. codeRemediationStrategy : CodeRemediationStrategy.t option;
    (*

    The updated code remediation strategy for the code review.

    *)
}
Sourceval context_ : string
Sourceval make : ?title:??? -> ?assets:??? -> ?serviceRole:??? -> ?logConfig:??? -> ?codeRemediationStrategy:??? -> codeReviewId:String_.t -> agentSpaceId:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list ]) list ] list | `String of String_.t ]) list ]) 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