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.
Namespace: Amazon.EC2.Model
Assembly: AWSSDK.EC2.dll
Version: 3.x.y.z
public class ResetInstanceAttributeRequest : AmazonEC2Request IAmazonWebServiceRequest
The ResetInstanceAttributeRequest type exposes the following members
Name | Description | |
---|---|---|
ResetInstanceAttributeRequest() |
Empty constructor used to set properties independently even when a simple constructor is available |
|
ResetInstanceAttributeRequest(string, InstanceAttributeName) |
Instantiates ResetInstanceAttributeRequest with the parameterized properties |
Name | Type | Description | |
---|---|---|---|
Attribute | Amazon.EC2.InstanceAttributeName |
Gets and sets the property Attribute. The attribute to reset.
You can only reset the following attributes: |
|
InstanceId | System.String |
Gets and sets the property InstanceId. The ID of the instance. |
This example resets the sourceDestCheck attribute for the specified instance.
var client = new AmazonEC2Client(); var response = client.ResetInstanceAttribute(new ResetInstanceAttributeRequest { Attribute = "sourceDestCheck", InstanceId = "i-1234567890abcdef0" });
.NET:
Supported in: 8.0 and newer, Core 3.1
.NET Standard:
Supported in: 2.0
.NET Framework:
Supported in: 4.5 and newer, 3.5