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.

Container for the parameters to the ResetInstanceAttribute operation. 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.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.EC2.AmazonEC2Request
      Amazon.EC2.Model.ResetInstanceAttributeRequest

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

Syntax

C#
public class ResetInstanceAttributeRequest : AmazonEC2Request
         IAmazonWebServiceRequest

The ResetInstanceAttributeRequest type exposes the following members

Constructors

NameDescription
Public Method ResetInstanceAttributeRequest()

Empty constructor used to set properties independently even when a simple constructor is available

Public Method ResetInstanceAttributeRequest(string, InstanceAttributeName)

Instantiates ResetInstanceAttributeRequest with the parameterized properties

Properties

NameTypeDescription
Public Property Attribute Amazon.EC2.InstanceAttributeName

Gets and sets the property Attribute.

The attribute to reset.

You can only reset the following attributes: kernel | ramdisk | sourceDestCheck.

Public Property InstanceId System.String

Gets and sets the property InstanceId.

The ID of the instance.

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 Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

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