Module Values.UpdateFileSystemOpenZFSConfigurationSource

The configuration updates for an Amazon FSx for OpenZFS file system.

Sourcetype nonrec t = {
  1. automaticBackupRetentionDays : AutomaticBackupRetentionDays.t option;
  2. copyTagsToBackups : Flag.t option;
    (*

    A Boolean value indicating whether tags for the file system should be copied to backups. This value defaults to false. If it's set to true, all tags for the file system are copied to all automatic and user-initiated backups where the user doesn't specify tags. If this value is true and you specify one or more tags, only the specified tags are copied to backups. If you specify one or more tags when creating a user-initiated backup, no tags are copied from the file system, regardless of this value.

    *)
  3. copyTagsToVolumes : Flag.t option;
    (*

    A Boolean value indicating whether tags for the volume should be copied to snapshots. This value defaults to false. If it's set to true, all tags for the volume are copied to snapshots where the user doesn't specify tags. If this value is true and you specify one or more tags, only the specified tags are copied to snapshots. If you specify one or more tags when creating the snapshot, no tags are copied from the volume, regardless of this value.

    *)
  4. dailyAutomaticBackupStartTime : DailyTime.t option;
  5. throughputCapacity : MegabytesPerSecond.t option;
    (*

    The throughput of an Amazon FSx for OpenZFS file system, measured in megabytes per second
 (MB/s). Valid values depend on the DeploymentType you choose, as follows: For MULTI_AZ_1 and SINGLE_AZ_2, valid values are 160, 320, 640, 1280, 2560, 3840, 5120, 7680, or 10240 MB/s. For SINGLE_AZ_1, valid values are 64, 128, 256, 512, 1024, 2048, 3072, or 4096 MB/s.

    *)
  6. weeklyMaintenanceStartTime : WeeklyTime.t option;
  7. diskIopsConfiguration : DiskIopsConfiguration.t option;
  8. addRouteTableIds : RouteTableIds.t option;
    (*

    (Multi-AZ only) A list of IDs of new virtual private cloud (VPC) route tables to associate (add) with your Amazon FSx for OpenZFS file system.

    *)
  9. removeRouteTableIds : RouteTableIds.t option;
    (*

    (Multi-AZ only) A list of IDs of existing virtual private cloud (VPC) route tables to disassociate (remove) from your Amazon FSx for OpenZFS file system. You can use the API operation to retrieve the list of VPC route table IDs for a file system.

    *)
  10. readCacheConfiguration : OpenZFSReadCacheConfiguration.t option;
    (*

    The configuration for the optional provisioned SSD read cache on file systems that use the Intelligent-Tiering storage class.

    *)
  11. endpointIpv6AddressRange : Ipv6AddressRange.t option;
    (*

    (Multi-AZ only) Specifies the IPv6 address range in which the endpoints to access your file system will be created. By default in the Amazon FSx API and Amazon FSx console, Amazon FSx selects an available /118 IP address range for you from one of the VPC's CIDR ranges. You can have overlapping endpoint IP addresses for file systems deployed in the same VPC/route tables, as long as they don't overlap with any subnet.

    *)
}
Sourceval make : ?automaticBackupRetentionDays:??? -> ?copyTagsToBackups:??? -> ?copyTagsToVolumes:??? -> ?dailyAutomaticBackupStartTime:??? -> ?throughputCapacity:??? -> ?weeklyMaintenanceStartTime:??? -> ?diskIopsConfiguration:??? -> ?addRouteTableIds:??? -> ?removeRouteTableIds:??? -> ?readCacheConfiguration:??? -> ?endpointIpv6AddressRange:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Flag.t | `Integer of AutomaticBackupRetentionDays.t | `List of [> `String of RouteTableId.t ] list | `String of DailyTime.t | `Structure of (string * [> `Enum of string | `Integer of StorageCapacity.t | `Long of Iops.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t