Module Values.DescribeBotAnalyzerRecommendationRequestSource

Retrieves the analysis results and recommendations for bot optimization. The analysis must be in Available status before recommendations can be retrieved. Recommendations are returned with pagination support. Each recommendation includes the issue location, priority level, detailed description, and proposed fix.

Sourcetype nonrec t = {
  1. botId : Id.t;
    (*

    The unique identifier of the bot.

    *)
  2. botAnalyzerRequestId : UUID.t;
    (*

    The unique identifier of the analysis request.

    *)
  3. nextToken : NextToken.t option;
    (*

    If the response from a previous request was truncated, the nextToken value is used to retrieve the next page of recommendations.

    *)
  4. maxResults : MaxResults.t option;
    (*

    The maximum number of recommendations to return in the response. The default is 5.

    *)
}
Sourceval context_ : string
Sourceval make : ?nextToken:??? -> ?maxResults:??? -> botId:Id.t -> botAnalyzerRequestId:UUID.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `String of Id.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