AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.
Modifies the specified attribute of the specified instance. You can specify only one attribute at a time.
Note: Using this action to change the security groups associated with an elastic network interface (ENI) attached to an instance can result in an error if the instance has more than one ENI. To change the security groups associated with an ENI attached to an instance that has multiple ENIs, we recommend that you use the ModifyNetworkInterfaceAttribute action.
To modify some attributes, the instance must be stopped. For more information, see Modify a stopped instance in the Amazon EC2 User Guide.
For .NET Core this operation is only available in asynchronous form. Please refer to ModifyInstanceAttributeAsync.
Namespace: Amazon.EC2
Assembly: AWSSDK.EC2.dll
Version: 3.x.y.z
public virtual ModifyInstanceAttributeResponse ModifyInstanceAttribute( ModifyInstanceAttributeRequest request )
Container for the necessary parameters to execute the ModifyInstanceAttribute service method.
This example modifies the instance type of the specified stopped instance.
var client = new AmazonEC2Client(); var response = client.ModifyInstanceAttribute(new ModifyInstanceAttributeRequest { InstanceId = "i-1234567890abcdef0", InstanceType = <data> });
This example enables enhanced networking for the specified stopped instance.
var client = new AmazonEC2Client(); var response = client.ModifyInstanceAttribute(new ModifyInstanceAttributeRequest { EnaSupport = jsondata object, InstanceId = "i-1234567890abcdef0" });
.NET Framework:
Supported in: 4.5 and newer, 3.5