You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::EC2::Types::ModifyVolumeRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ModifyVolumeRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  dry_run: false,
  volume_id: "VolumeId", # required
  size: 1,
  volume_type: "standard", # accepts standard, io1, io2, gp2, sc1, st1
  iops: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#dry_runBoolean

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 DryRunOperation. Otherwise, it is UnauthorizedOperation.

Returns:

  • (Boolean)

    Checks whether you have the required permissions for the action, without actually making the request, and provides an error response.

#iopsInteger

The target IOPS rate of the volume.

This is only valid for Provisioned IOPS SSD (io1 and io2) volumes. For moreinformation, see Provisioned IOPS SSD (io1 and io2) volumes.

Default: If no IOPS value is specified, the existing value is retained.

Returns:

  • (Integer)

    The target IOPS rate of the volume.

#sizeInteger

The target size of the volume, in GiB. The target volume size must be greater than or equal to than the existing size of the volume. For information about available EBS volume sizes, see Amazon EBS Volume Types.

Default: If no size is specified, the existing size is retained.

Returns:

  • (Integer)

    The target size of the volume, in GiB.

#volume_idString

The ID of the volume.

Returns:

  • (String)

    The ID of the volume.

#volume_typeString

The target EBS volume type of the volume.

Default: If no type is specified, the existing type is retained.

Possible values:

  • standard
  • io1
  • io2
  • gp2
  • sc1
  • st1

Returns:

  • (String)

    The target EBS volume type of the volume.