AWS SDK Version 3 for .NET
API Reference

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.

Note:

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

Syntax

C#
public virtual ModifyInstanceAttributeResponse ModifyInstanceAttribute(
         ModifyInstanceAttributeRequest request
)

Parameters

request
Type: Amazon.EC2.Model.ModifyInstanceAttributeRequest

Container for the necessary parameters to execute the ModifyInstanceAttribute service method.

Return Value


The response from the ModifyInstanceAttribute service method, as returned by EC2.

Examples

This example modifies the instance type of the specified stopped instance.

To modify the instance type


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.

To enable enhanced networking


var client = new AmazonEC2Client();
var response = client.ModifyInstanceAttribute(new ModifyInstanceAttributeRequest 
{
    EnaSupport = jsondata object,
    InstanceId = "i-1234567890abcdef0"
});


            

Version Information

.NET Framework:
Supported in: 4.5 and newer, 3.5

See Also