Table of Contents

Class UpdateOpenZFSVolumeConfiguration

Namespace
Amazon.FSx.Model
Assembly
AWSSDK.FSx.dll

Used to specify changes to the OpenZFS configuration for the volume that you are updating.

public class UpdateOpenZFSVolumeConfiguration
Inheritance
UpdateOpenZFSVolumeConfiguration
Inherited Members

Constructors

UpdateOpenZFSVolumeConfiguration()

public UpdateOpenZFSVolumeConfiguration()

Properties

DataCompressionType

Gets and sets the property DataCompressionType.

Specifies the method used to compress the data on the volume. The compression type is NONE by default.

  • NONE - Doesn't compress the data on the volume. NONE is the default.

  • ZSTD - Compresses the data in the volume using the Zstandard (ZSTD) compression algorithm. Compared to LZ4, Z-Standard provides a better compression ratio to minimize on-disk storage utilization.

  • LZ4 - Compresses the data in the volume using the LZ4 compression algorithm. Compared to Z-Standard, LZ4 is less compute-intensive and delivers higher write throughput speeds.

public OpenZFSDataCompressionType DataCompressionType { get; set; }

Property Value

OpenZFSDataCompressionType

NfsExports

Gets and sets the property NfsExports.

The configuration object for mounting a Network File System (NFS) file system.

public List<OpenZFSNfsExport> NfsExports { get; set; }

Property Value

List<OpenZFSNfsExport>

ReadOnly

Gets and sets the property ReadOnly.

A Boolean value indicating whether the volume is read-only.

public bool ReadOnly { get; set; }

Property Value

bool

RecordSizeKiB

Gets and sets the property RecordSizeKiB.

Specifies the record size of an OpenZFS volume, in kibibytes (KiB). Valid values are 4, 8, 16, 32, 64, 128, 256, 512, or 1024 KiB. The default is 128 KiB. Most workloads should use the default record size. Database workflows can benefit from a smaller record size, while streaming workflows can benefit from a larger record size. For additional guidance on when to set a custom record size, see Tips for maximizing performance in the Amazon FSx for OpenZFS User Guide.

public int RecordSizeKiB { get; set; }

Property Value

int

StorageCapacityQuotaGiB

Gets and sets the property StorageCapacityQuotaGiB.

The maximum amount of storage in gibibytes (GiB) that the volume can use from its parent. You can specify a quota larger than the storage on the parent volume. You can specify a value of -1 to unset a volume's storage capacity quota.

public int StorageCapacityQuotaGiB { get; set; }

Property Value

int

StorageCapacityReservationGiB

Gets and sets the property StorageCapacityReservationGiB.

The amount of storage in gibibytes (GiB) to reserve from the parent volume. You can't reserve more storage than the parent volume has reserved. You can specify a value of -1 to unset a volume's storage capacity reservation.

public int StorageCapacityReservationGiB { get; set; }

Property Value

int

UserAndGroupQuotas

Gets and sets the property UserAndGroupQuotas.

An object specifying how much storage users or groups can use on the volume.

public List<OpenZFSUserOrGroupQuota> UserAndGroupQuotas { get; set; }

Property Value

List<OpenZFSUserOrGroupQuota>