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 { ModifyNetworkInterfaceAttributeRequest } from "../models/models_6"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ModifyNetworkInterfaceAttributeCommand}. */ export interface ModifyNetworkInterfaceAttributeCommandInput extends ModifyNetworkInterfaceAttributeRequest { } /** * @public * * The output of {@link ModifyNetworkInterfaceAttributeCommand}. */ export interface ModifyNetworkInterfaceAttributeCommandOutput extends __MetadataBearer { } declare const ModifyNetworkInterfaceAttributeCommand_base: { new (input: ModifyNetworkInterfaceAttributeCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: ModifyNetworkInterfaceAttributeCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Modifies the specified network interface attribute. You can specify only one attribute * at a time. You can use this action to attach and detach security groups from an existing * EC2 instance.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { EC2Client, ModifyNetworkInterfaceAttributeCommand } from "@aws-sdk/client-ec2"; // ES Modules import * // const { EC2Client, ModifyNetworkInterfaceAttributeCommand } = 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 = { // ModifyNetworkInterfaceAttributeRequest * EnaSrdSpecification: { // EnaSrdSpecification * EnaSrdEnabled: true || false, * EnaSrdUdpSpecification: { // EnaSrdUdpSpecification * EnaSrdUdpEnabled: true || false, * }, * }, * EnablePrimaryIpv6: true || false, * ConnectionTrackingSpecification: { // ConnectionTrackingSpecificationRequest * TcpEstablishedTimeout: Number("int"), * UdpStreamTimeout: Number("int"), * UdpTimeout: Number("int"), * }, * AssociatePublicIpAddress: true || false, * AssociatedSubnetIds: [ // SubnetIdList * "STRING_VALUE", * ], * DryRun: true || false, * NetworkInterfaceId: "STRING_VALUE", // required * Description: { // AttributeValue * Value: "STRING_VALUE", * }, * SourceDestCheck: { // AttributeBooleanValue * Value: true || false, * }, * Groups: [ // SecurityGroupIdStringList * "STRING_VALUE", * ], * Attachment: { // NetworkInterfaceAttachmentChanges * DefaultEnaQueueCount: true || false, * EnaQueueCount: Number("int"), * AttachmentId: "STRING_VALUE", * DeleteOnTermination: true || false, * }, * }; * const command = new ModifyNetworkInterfaceAttributeCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param ModifyNetworkInterfaceAttributeCommandInput - {@link ModifyNetworkInterfaceAttributeCommandInput} * @returns {@link ModifyNetworkInterfaceAttributeCommandOutput} * @see {@link ModifyNetworkInterfaceAttributeCommandInput} for command's `input` shape. * @see {@link ModifyNetworkInterfaceAttributeCommandOutput} 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 modify the attachment attribute of a network interface * ```javascript * // This example modifies the attachment attribute of the specified network interface. * const input = { * Attachment: { * AttachmentId: "eni-attach-43348162", * DeleteOnTermination: false * }, * NetworkInterfaceId: "eni-686ea200" * }; * const command = new ModifyNetworkInterfaceAttributeCommand(input); * const response = await client.send(command); * /* response is * { /* metadata only *\/ } * *\/ * ``` * * @example To modify the description attribute of a network interface * ```javascript * // This example modifies the description attribute of the specified network interface. * const input = { * Description: { * Value: "My description" * }, * NetworkInterfaceId: "eni-686ea200" * }; * const command = new ModifyNetworkInterfaceAttributeCommand(input); * const response = await client.send(command); * /* response is * { /* metadata only *\/ } * *\/ * ``` * * @example To modify the groupSet attribute of a network interface * ```javascript * // This example command modifies the groupSet attribute of the specified network interface. * const input = { * Groups: [ * "sg-903004f8", * "sg-1a2b3c4d" * ], * NetworkInterfaceId: "eni-686ea200" * }; * const command = new ModifyNetworkInterfaceAttributeCommand(input); * const response = await client.send(command); * /* response is * { /* metadata only *\/ } * *\/ * ``` * * @example To modify the sourceDestCheck attribute of a network interface * ```javascript * // This example command modifies the sourceDestCheck attribute of the specified network interface. * const input = { * NetworkInterfaceId: "eni-686ea200", * SourceDestCheck: { * Value: false * } * }; * const command = new ModifyNetworkInterfaceAttributeCommand(input); * const response = await client.send(command); * /* response is * { /* metadata only *\/ } * *\/ * ``` * * @public */ export declare class ModifyNetworkInterfaceAttributeCommand extends ModifyNetworkInterfaceAttributeCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ModifyNetworkInterfaceAttributeRequest; output: {}; }; sdk: { input: ModifyNetworkInterfaceAttributeCommandInput; output: ModifyNetworkInterfaceAttributeCommandOutput; }; }; }