import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { BatchGetCodeReviewsInput, BatchGetCodeReviewsOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link BatchGetCodeReviewsCommand}. */ export interface BatchGetCodeReviewsCommandInput extends BatchGetCodeReviewsInput { } /** * @public * * The output of {@link BatchGetCodeReviewsCommand}. */ export interface BatchGetCodeReviewsCommandOutput extends BatchGetCodeReviewsOutput, __MetadataBearer { } declare const BatchGetCodeReviewsCommand_base: { new (input: BatchGetCodeReviewsCommandInput): import("@smithy/core/client").CommandImpl; new (input: BatchGetCodeReviewsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Retrieves information about one or more code reviews in an agent space.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SecurityAgentClient, BatchGetCodeReviewsCommand } from "@aws-sdk/client-securityagent"; // ES Modules import * // const { SecurityAgentClient, BatchGetCodeReviewsCommand } = require("@aws-sdk/client-securityagent"); // CommonJS import * // import type { SecurityAgentClientConfig } from "@aws-sdk/client-securityagent"; * const config = {}; // type is SecurityAgentClientConfig * const client = new SecurityAgentClient(config); * const input = { // BatchGetCodeReviewsInput * codeReviewIds: [ // CodeReviewIdList // required * "STRING_VALUE", * ], * agentSpaceId: "STRING_VALUE", // required * }; * const command = new BatchGetCodeReviewsCommand(input); * const response = await client.send(command); * // { // BatchGetCodeReviewsOutput * // codeReviews: [ // CodeReviewList * // { // CodeReview * // codeReviewId: "STRING_VALUE", // required * // agentSpaceId: "STRING_VALUE", // required * // title: "STRING_VALUE", // required * // assets: { // Assets * // endpoints: [ // EndpointList * // { // Endpoint * // uri: "STRING_VALUE", * // }, * // ], * // actors: [ // ActorList * // { // Actor * // identifier: "STRING_VALUE", * // uris: [ // UriList * // "STRING_VALUE", * // ], * // authentication: { // Authentication * // providerType: "SECRETS_MANAGER" || "AWS_LAMBDA" || "AWS_IAM_ROLE" || "AWS_INTERNAL", * // value: "STRING_VALUE", * // }, * // description: "STRING_VALUE", * // enableEmailMfa: true || false, * // mfaForwardingAddress: "STRING_VALUE", * // }, * // ], * // documents: [ // DocumentList * // { // DocumentInfo * // s3Location: "STRING_VALUE", * // artifactId: "STRING_VALUE", * // integratedDocument: { // IntegratedDocument * // integrationId: "STRING_VALUE", // required * // resourceId: "STRING_VALUE", // required * // }, * // }, * // ], * // sourceCode: [ // SourceCodeRepositoryList * // { // SourceCodeRepository * // s3Location: "STRING_VALUE", * // }, * // ], * // integratedRepositories: [ // IntegratedRepositoryList * // { // IntegratedRepository * // integrationId: "STRING_VALUE", // required * // providerResourceId: "STRING_VALUE", // required * // branch: "STRING_VALUE", * // }, * // ], * // trustedCaCertificates: [ // TrustedCaCertificateList * // { // TrustedCaCertificate * // source: { // CaCertificateSource Union: only one key present * // inlinePem: "STRING_VALUE", * // artifactId: "STRING_VALUE", * // s3Location: "STRING_VALUE", * // }, * // }, * // ], * // }, * // serviceRole: "STRING_VALUE", * // logConfig: { // CloudWatchLog * // logGroup: "STRING_VALUE", * // logStream: "STRING_VALUE", * // }, * // codeRemediationStrategy: "AUTOMATIC" || "DISABLED", * // validationMode: "DISABLED" || "SIMULATED", * // maxTaskHours: Number("double"), * // createdAt: new Date("TIMESTAMP"), * // updatedAt: new Date("TIMESTAMP"), * // }, * // ], * // notFound: [ // CodeReviewIdList * // "STRING_VALUE", * // ], * // }; * * ``` * * @param BatchGetCodeReviewsCommandInput - {@link BatchGetCodeReviewsCommandInput} * @returns {@link BatchGetCodeReviewsCommandOutput} * @see {@link BatchGetCodeReviewsCommandInput} for command's `input` shape. * @see {@link BatchGetCodeReviewsCommandOutput} for command's `response` shape. * @see {@link SecurityAgentClientResolvedConfig | config} for SecurityAgentClient's `config` shape. * * @throws {@link SecurityAgentServiceException} *

Base exception class for all service exceptions from SecurityAgent service.

* * * @public */ export declare class BatchGetCodeReviewsCommand extends BatchGetCodeReviewsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: BatchGetCodeReviewsInput; output: BatchGetCodeReviewsOutput; }; sdk: { input: BatchGetCodeReviewsCommandInput; output: BatchGetCodeReviewsCommandOutput; }; }; }