import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { UpdateAgentSpaceInput, UpdateAgentSpaceOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link UpdateAgentSpaceCommand}. */ export interface UpdateAgentSpaceCommandInput extends UpdateAgentSpaceInput { } /** * @public * * The output of {@link UpdateAgentSpaceCommand}. */ export interface UpdateAgentSpaceCommandOutput extends UpdateAgentSpaceOutput, __MetadataBearer { } declare const UpdateAgentSpaceCommand_base: { new (input: UpdateAgentSpaceCommandInput): import("@smithy/core/client").CommandImpl; new (input: UpdateAgentSpaceCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Updates the configuration of an existing agent space, including its name, description, AWS resources, target domains, and code review settings.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SecurityAgentClient, UpdateAgentSpaceCommand } from "@aws-sdk/client-securityagent"; // ES Modules import * // const { SecurityAgentClient, UpdateAgentSpaceCommand } = 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 = { // UpdateAgentSpaceInput * agentSpaceId: "STRING_VALUE", // required * name: "STRING_VALUE", * description: "STRING_VALUE", * awsResources: { // AWSResources * vpcs: [ // VpcConfigs * { // VpcConfig * vpcArn: "STRING_VALUE", * securityGroupArns: [ // SecurityGroupArns * "STRING_VALUE", * ], * subnetArns: [ // SubnetArns * "STRING_VALUE", * ], * }, * ], * logGroups: [ // LogGroupArns * "STRING_VALUE", * ], * s3Buckets: [ // S3BucketArns * "STRING_VALUE", * ], * secretArns: [ // SecretArns * "STRING_VALUE", * ], * lambdaFunctionArns: [ // LambdaFunctionArns * "STRING_VALUE", * ], * iamRoles: [ // IamRoles * "STRING_VALUE", * ], * }, * targetDomainIds: [ // TargetDomainIdList * "STRING_VALUE", * ], * codeReviewSettings: { // CodeReviewSettings * controlsScanning: true || false, // required * generalPurposeScanning: true || false, // required * }, * }; * const command = new UpdateAgentSpaceCommand(input); * const response = await client.send(command); * // { // UpdateAgentSpaceOutput * // agentSpaceId: "STRING_VALUE", // required * // name: "STRING_VALUE", // required * // description: "STRING_VALUE", * // awsResources: { // AWSResources * // vpcs: [ // VpcConfigs * // { // VpcConfig * // vpcArn: "STRING_VALUE", * // securityGroupArns: [ // SecurityGroupArns * // "STRING_VALUE", * // ], * // subnetArns: [ // SubnetArns * // "STRING_VALUE", * // ], * // }, * // ], * // logGroups: [ // LogGroupArns * // "STRING_VALUE", * // ], * // s3Buckets: [ // S3BucketArns * // "STRING_VALUE", * // ], * // secretArns: [ // SecretArns * // "STRING_VALUE", * // ], * // lambdaFunctionArns: [ // LambdaFunctionArns * // "STRING_VALUE", * // ], * // iamRoles: [ // IamRoles * // "STRING_VALUE", * // ], * // }, * // targetDomainIds: [ // TargetDomainIdList * // "STRING_VALUE", * // ], * // codeReviewSettings: { // CodeReviewSettings * // controlsScanning: true || false, // required * // generalPurposeScanning: true || false, // required * // }, * // createdAt: new Date("TIMESTAMP"), * // updatedAt: new Date("TIMESTAMP"), * // }; * * ``` * * @param UpdateAgentSpaceCommandInput - {@link UpdateAgentSpaceCommandInput} * @returns {@link UpdateAgentSpaceCommandOutput} * @see {@link UpdateAgentSpaceCommandInput} for command's `input` shape. * @see {@link UpdateAgentSpaceCommandOutput} 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 UpdateAgentSpaceCommand extends UpdateAgentSpaceCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateAgentSpaceInput; output: UpdateAgentSpaceOutput; }; sdk: { input: UpdateAgentSpaceCommandInput; output: UpdateAgentSpaceCommandOutput; }; }; }