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.

Resets an attribute of an instance to its default value. To reset the kernel or ramdisk, the instance must be in a stopped state. To reset the sourceDestCheck, the instance can be either running or stopped.

The sourceDestCheck attribute controls whether source/destination checking is enabled. The default value is true, which means checking is enabled. This value must be false for a NAT instance to perform NAT. For more information, see NAT Instances in the Amazon VPC User Guide.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to ResetInstanceAttributeAsync.

Namespace: Amazon.EC2
Assembly: AWSSDK.EC2.dll
Version: 3.x.y.z

Syntax

C#
public virtual ResetInstanceAttributeResponse ResetInstanceAttribute(
         ResetInstanceAttributeRequest request
)

Parameters

request
Type: Amazon.EC2.Model.ResetInstanceAttributeRequest

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

Return Value


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

Examples

This example resets the sourceDestCheck attribute for the specified instance.

To reset the sourceDestCheck attribute


var client = new AmazonEC2Client();
var response = client.ResetInstanceAttribute(new ResetInstanceAttributeRequest 
{
    Attribute = "sourceDestCheck",
    InstanceId = "i-1234567890abcdef0"
});


            

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

See Also