> 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/changeebsvolumesize-object.md).

# ChangeEbsVolumeSize Object

## Description

Parameters to change an EBS volume's size.

## Properties

### sizeType

Indicates how the volume should be resized.

Type: `string`

Valid Values:

* `final-size-gb`
* `gb-to-add`
* `percent-to-add`

Required: Yes

### sizeValue

Indicates the amount the volume should be resized.

Type: `integer`

Required: Yes

## Sample JSON

```javascript
{
    "sizeType": "gb-to-add",
    "sizeValue": 100
}
```
