> For the complete documentation index, see [llms.txt](https://docs.skeddly.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.skeddly.com/data-types/changeebsvolumetype-object.md).

# 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
}
```
