import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeRecommendationFeedbackRequest, DescribeRecommendationFeedbackResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeRecommendationFeedbackCommand}. */ export interface DescribeRecommendationFeedbackCommandInput extends DescribeRecommendationFeedbackRequest { } /** * @public * * The output of {@link DescribeRecommendationFeedbackCommand}. */ export interface DescribeRecommendationFeedbackCommandOutput extends DescribeRecommendationFeedbackResponse, __MetadataBearer { } declare const DescribeRecommendationFeedbackCommand_base: { new (input: DescribeRecommendationFeedbackCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeRecommendationFeedbackCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Describes the customer feedback for a CodeGuru Reviewer recommendation.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CodeGuruReviewerClient, DescribeRecommendationFeedbackCommand } from "@aws-sdk/client-codeguru-reviewer"; // ES Modules import * // const { CodeGuruReviewerClient, DescribeRecommendationFeedbackCommand } = require("@aws-sdk/client-codeguru-reviewer"); // CommonJS import * // import type { CodeGuruReviewerClientConfig } from "@aws-sdk/client-codeguru-reviewer"; * const config = {}; // type is CodeGuruReviewerClientConfig * const client = new CodeGuruReviewerClient(config); * const input = { // DescribeRecommendationFeedbackRequest * CodeReviewArn: "STRING_VALUE", // required * RecommendationId: "STRING_VALUE", // required * UserId: "STRING_VALUE", * }; * const command = new DescribeRecommendationFeedbackCommand(input); * const response = await client.send(command); * // { // DescribeRecommendationFeedbackResponse * // RecommendationFeedback: { // RecommendationFeedback * // CodeReviewArn: "STRING_VALUE", * // RecommendationId: "STRING_VALUE", * // Reactions: [ // Reactions * // "ThumbsUp" || "ThumbsDown", * // ], * // UserId: "STRING_VALUE", * // CreatedTimeStamp: new Date("TIMESTAMP"), * // LastUpdatedTimeStamp: new Date("TIMESTAMP"), * // }, * // }; * * ``` * * @param DescribeRecommendationFeedbackCommandInput - {@link DescribeRecommendationFeedbackCommandInput} * @returns {@link DescribeRecommendationFeedbackCommandOutput} * @see {@link DescribeRecommendationFeedbackCommandInput} for command's `input` shape. * @see {@link DescribeRecommendationFeedbackCommandOutput} for command's `response` shape. * @see {@link CodeGuruReviewerClientResolvedConfig | config} for CodeGuruReviewerClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You do not have sufficient access to perform this action.

* * @throws {@link InternalServerException} (server fault) *

The server encountered an internal error and is unable to complete the request.

* * @throws {@link ResourceNotFoundException} (client fault) *

The resource specified in the request was not found.

* * @throws {@link ThrottlingException} (client fault) *

The request was denied due to request throttling.

* * @throws {@link ValidationException} (client fault) *

The input fails to satisfy the specified constraints.

* * @throws {@link CodeGuruReviewerServiceException} *

Base exception class for all service exceptions from CodeGuruReviewer service.

* * * @public */ export declare class DescribeRecommendationFeedbackCommand extends DescribeRecommendationFeedbackCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeRecommendationFeedbackRequest; output: DescribeRecommendationFeedbackResponse; }; sdk: { input: DescribeRecommendationFeedbackCommandInput; output: DescribeRecommendationFeedbackCommandOutput; }; }; }