Module Values.CreateCodeReviewInputSource

Input for creating a new code review.

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

    The title of the code review.

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

    The unique identifier of the agent space to create the code review in.

    *)
  3. assets : Assets.t;
    (*

    The assets to include in the code review, such as documents and source code.

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

    The IAM service role to use for the code review.

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

    The CloudWatch Logs configuration for the code review.

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

    The code remediation strategy for the code review. Valid values are AUTOMATIC and DISABLED.

    *)
}
Sourceval context_ : string
Sourceval make : ?serviceRole:??? -> ?logConfig:??? -> ?codeRemediationStrategy:??? -> title:String_.t -> agentSpaceId:String_.t -> assets:Assets.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