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