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 ModifyVolumeAttribute operation. Modifies a volume attribute.
By default, all I/O operations for the volume are suspended when the data on the volume is determined to be potentially inconsistent, to prevent undetectable, latent data corruption. The I/O access to the volume can be resumed by first enabling I/O access and then checking the data consistency on your volume.
You can change the default behavior to resume I/O operations. We recommend that you change this only for boot volumes or for volumes that are stateless or disposable.
Namespace: Amazon.EC2.Model
Assembly: AWSSDK.EC2.dll
Version: 3.x.y.z
public class ModifyVolumeAttributeRequest : AmazonEC2Request IAmazonWebServiceRequest
The ModifyVolumeAttributeRequest type exposes the following members
Name | Description | |
---|---|---|
![]() |
ModifyVolumeAttributeRequest() |
Name | Type | Description | |
---|---|---|---|
![]() |
AutoEnableIO | System.Nullable<System.Boolean> |
Gets and sets the property AutoEnableIO. Indicates whether the volume should be auto-enabled for I/O operations. |
![]() |
DryRun | System.Nullable<System.Boolean> |
Gets and sets the property DryRun.
Checks whether you have the required permissions for the action, without actually
making the request, and provides an error response. If you have the required permissions,
the error response is |
![]() |
VolumeId | System.String |
Gets and sets the property VolumeId. The ID of the volume. |
This example sets the ``autoEnableIo`` attribute of the volume with the ID ``vol-1234567890abcdef0`` to ``true``. If the command succeeds, no output is returned.
var client = new AmazonEC2Client(); var response = client.ModifyVolumeAttribute(new ModifyVolumeAttributeRequest { AutoEnableIO = jsondata object, DryRun = true, VolumeId = "vol-1234567890abcdef0" });
.NET:
Supported in: 8.0 and newer, Core 3.1
.NET Standard:
Supported in: 2.0
.NET Framework:
Supported in: 4.7.2 and newer