import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import type { ModifyVpcTenancyRequest, ModifyVpcTenancyResult } from "../models/models_7"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ModifyVpcTenancyCommand}. */ export interface ModifyVpcTenancyCommandInput extends ModifyVpcTenancyRequest { } /** * @public * * The output of {@link ModifyVpcTenancyCommand}. */ export interface ModifyVpcTenancyCommandOutput extends ModifyVpcTenancyResult, __MetadataBearer { } declare const ModifyVpcTenancyCommand_base: { new (input: ModifyVpcTenancyCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: ModifyVpcTenancyCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Modifies the instance tenancy attribute of the specified VPC. You can change the * instance tenancy attribute of a VPC to default only. You cannot change the * instance tenancy attribute to dedicated.

*

After you modify the tenancy of the VPC, any new instances that you launch into the * VPC have a tenancy of default, unless you specify otherwise during launch. * The tenancy of any existing instances in the VPC is not affected.

*

For more information, see Dedicated Instances in the * Amazon EC2 User Guide.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { EC2Client, ModifyVpcTenancyCommand } from "@aws-sdk/client-ec2"; // ES Modules import * // const { EC2Client, ModifyVpcTenancyCommand } = require("@aws-sdk/client-ec2"); // CommonJS import * // import type { EC2ClientConfig } from "@aws-sdk/client-ec2"; * const config = {}; // type is EC2ClientConfig * const client = new EC2Client(config); * const input = { // ModifyVpcTenancyRequest * VpcId: "STRING_VALUE", // required * InstanceTenancy: "default", // required * DryRun: true || false, * }; * const command = new ModifyVpcTenancyCommand(input); * const response = await client.send(command); * // { // ModifyVpcTenancyResult * // ReturnValue: true || false, * // }; * * ``` * * @param ModifyVpcTenancyCommandInput - {@link ModifyVpcTenancyCommandInput} * @returns {@link ModifyVpcTenancyCommandOutput} * @see {@link ModifyVpcTenancyCommandInput} for command's `input` shape. * @see {@link ModifyVpcTenancyCommandOutput} for command's `response` shape. * @see {@link EC2ClientResolvedConfig | config} for EC2Client's `config` shape. * * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* * * @public */ export declare class ModifyVpcTenancyCommand extends ModifyVpcTenancyCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ModifyVpcTenancyRequest; output: ModifyVpcTenancyResult; }; sdk: { input: ModifyVpcTenancyCommandInput; output: ModifyVpcTenancyCommandOutput; }; }; }