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 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.

Note:

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

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

Syntax

C#
public virtual ModifyVolumeAttributeResponse ModifyVolumeAttribute(
         ModifyVolumeAttributeRequest request
)

Parameters

request
Type: Amazon.EC2.Model.ModifyVolumeAttributeRequest

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

Return Value


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

Examples

This example sets the ``autoEnableIo`` attribute of the volume with the ID ``vol-1234567890abcdef0`` to ``true``. If the command succeeds, no output is returned.

To modify a volume attribute


var client = new AmazonEC2Client();
var response = client.ModifyVolumeAttribute(new ModifyVolumeAttributeRequest 
{
    AutoEnableIO = jsondata object,
    VolumeId = "vol-1234567890abcdef0"
});


            

Version Information

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

See Also