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 { UnassignPrivateIpAddressesRequest } from "../models/models_7"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link UnassignPrivateIpAddressesCommand}. */ export interface UnassignPrivateIpAddressesCommandInput extends UnassignPrivateIpAddressesRequest { } /** * @public * * The output of {@link UnassignPrivateIpAddressesCommand}. */ export interface UnassignPrivateIpAddressesCommandOutput extends __MetadataBearer { } declare const UnassignPrivateIpAddressesCommand_base: { new (input: UnassignPrivateIpAddressesCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: UnassignPrivateIpAddressesCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Unassigns the specified secondary private IP addresses or IPv4 Prefix Delegation * prefixes from a network interface.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { EC2Client, UnassignPrivateIpAddressesCommand } from "@aws-sdk/client-ec2"; // ES Modules import * // const { EC2Client, UnassignPrivateIpAddressesCommand } = 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 = { // UnassignPrivateIpAddressesRequest * Ipv4Prefixes: [ // IpPrefixList * "STRING_VALUE", * ], * NetworkInterfaceId: "STRING_VALUE", // required * PrivateIpAddresses: [ // PrivateIpAddressStringList * "STRING_VALUE", * ], * }; * const command = new UnassignPrivateIpAddressesCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param UnassignPrivateIpAddressesCommandInput - {@link UnassignPrivateIpAddressesCommandInput} * @returns {@link UnassignPrivateIpAddressesCommandOutput} * @see {@link UnassignPrivateIpAddressesCommandInput} for command's `input` shape. * @see {@link UnassignPrivateIpAddressesCommandOutput} 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.

* * * @example To unassign a secondary private IP address from a network interface * ```javascript * // This example unassigns the specified private IP address from the specified network interface. * const input = { * NetworkInterfaceId: "eni-e5aa89a3", * PrivateIpAddresses: [ * "10.0.0.82" * ] * }; * const command = new UnassignPrivateIpAddressesCommand(input); * const response = await client.send(command); * /* response is * { /* metadata only *\/ } * *\/ * ``` * * @public */ export declare class UnassignPrivateIpAddressesCommand extends UnassignPrivateIpAddressesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UnassignPrivateIpAddressesRequest; output: {}; }; sdk: { input: UnassignPrivateIpAddressesCommandInput; output: UnassignPrivateIpAddressesCommandOutput; }; }; }