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.
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.
Use a bare-bones client and the command you need to make an API call.
import { EC2Client, ModifyNetworkInterfaceAttributeCommand } from "@aws-sdk/client-ec2"; // ES Modules import // const { EC2Client, ModifyNetworkInterfaceAttributeCommand } = require("@aws-sdk/client-ec2"); // CommonJS import const client = new EC2Client(config); const command = new ModifyNetworkInterfaceAttributeCommand(input); const response = await client.send(command);
ModifyNetworkInterfaceAttributeCommandInput for command's
input
shape.ModifyNetworkInterfaceAttributeCommandOutput for command's
response
shape.config for EC2Client's
config
shape.