# ChangeEbsVolumeType Object

## Description

Parameters to change an EBS volume's type.

## Properties

### iops

Indicates the new IOPS value for the volume. Required when `volumeType` is `provisioned-iops`. Ignored otherwise.

Type: `integer`

Required: Conditional

### volumeType

Indicates the new volume type for the EBS volume.

Type: `string`

Valid Values:

* `magnetic`
* `ssd-gp2`
* `ssd-gp3`
* `provisioned-iops`
* `throughput-optimized`
* `cold`

Required: Yes

## Sample JSON

```javascript
{
    "volumeType": "ssd-gp3",
    "iops": null
}
```
