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

# ChangeEbsVolumeEncryption Object

## Description

Parameters to change EBS volume encryption.

## Properties

### isEncrypt

Indicates whether the EBS volumes should be encrypted.

Type: `boolean`

Required: Yes

### kmsKeyId

ID of the KMS key used to encrypt the EBS volume. Omitting or specifying `null` will use the default EBS volume KMS key.

Type: `string`

Required: No

## Sample JSON

```javascript
{
    "isEncrypt": true,
    "kmsKeyId": null
}
```
